using System; using System.Collections; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Security; using System.Security.Cryptography; using System.Security.Permissions; using System.Text; using System.Text.Json; using System.Text.Json.Serialization; using System.Text.RegularExpressions; using System.Threading; using BepInEx; using BepInEx.Configuration; using BepInEx.Core.Logging.Interpolation; using BepInEx.Logging; using BepInEx.Unity.IL2CPP; using BepInEx.Unity.IL2CPP.Utils.Collections; using Bloodcraft.Commands; using Bloodcraft.Interfaces; using Bloodcraft.Patches; using Bloodcraft.Resources; using Bloodcraft.Services; using Bloodcraft.Systems; using Bloodcraft.Systems.Expertise; using Bloodcraft.Systems.Familiars; using Bloodcraft.Systems.Legacies; using Bloodcraft.Systems.Leveling; using Bloodcraft.Systems.Professions; using Bloodcraft.Systems.Quests; using Bloodcraft.Utilities; using BloodcraftEclipseBridge.Messages; using HarmonyLib; using Il2CppInterop.Runtime; using Il2CppInterop.Runtime.Injection; using Il2CppInterop.Runtime.InteropTypes.Arrays; using Il2CppSystem; using Il2CppSystem.Collections.Generic; using Il2CppSystem.Text; using Microsoft.CodeAnalysis; using ProjectM; using ProjectM.AimPreviewSplines.Component; using ProjectM.Audio; using ProjectM.Behaviours; using ProjectM.CastleBuilding; using ProjectM.CastleBuilding.AssetSwapping; using ProjectM.CastleBuilding.Items; using ProjectM.CastleBuilding.Placement; using ProjectM.CastleBuilding.Rebuilding; using ProjectM.Community; using ProjectM.Debugging; using ProjectM.Gameplay; using ProjectM.Gameplay.Clan; using ProjectM.Gameplay.Scripting; using ProjectM.Gameplay.Systems; using ProjectM.Gameplay.WarEvents; using ProjectM.HUD; using ProjectM.Haptics; using ProjectM.Hybrid; using ProjectM.LightningStorm; using ProjectM.Network; using ProjectM.Pathfinding; using ProjectM.Physics; using ProjectM.Presentation; using ProjectM.Replays; using ProjectM.Roofs; using ProjectM.Scripting; using ProjectM.Sequencer; using ProjectM.Sequencer.Debugging; using ProjectM.Shared; using ProjectM.Shared.Systems; using ProjectM.Shared.WarEvents; using ProjectM.Shared.WorldEvents; using ProjectM.SunBlocker; using ProjectM.Terrain; using ProjectM.Terrain.Editor; using ProjectM.Tiles; using ProjectM.Transmog; using ProjectM.UI; using ProjectM.Wind; using ScarletRCON.Shared; using Stunlock.Core; using Stunlock.Core.Authoring; using Stunlock.Network; using Stunlock.Sequencer; using Terrain.Systems; using Tests; using Unity.Collections; using Unity.Deformations; using Unity.Entities; using Unity.Entities.Graphics; using Unity.Entities.Graphics.Extension; using Unity.Entities.Hybrid.Baking; using Unity.Entities.Serialization; using Unity.Jobs; using Unity.Mathematics; using Unity.Physics; using Unity.Physics.Authoring; using Unity.Physics.GraphicsIntegration; using Unity.Physics.Systems; using Unity.Rendering; using Unity.Scenes; using Unity.Transforms; using UnityEngine; using VampireCommandFramework; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] [assembly: AssemblyCompany("Bloodcraft")] [assembly: AssemblyConfiguration("Release")] [assembly: AssemblyFileVersion("1.13.22.0")] [assembly: AssemblyInformationalVersion("1.13.22+cc34b357e6c3c88e5feadb9b0f7e11ab8d0c904f")] [assembly: AssemblyProduct("Bloodcraft")] [assembly: AssemblyTitle("Bloodcraft")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.13.22.0")] [module: UnverifiableCode] [module: RefSafetyRules(11)] namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class IsUnmanagedAttribute : Attribute { } [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; } } [CompilerGenerated] [Microsoft.CodeAnalysis.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 Bloodcraft { [HarmonyPatch(typeof(WarEventRegistrySystem), "RegisterWarEventEntities")] internal static class Bootstrap { private static ManualLogSource _logSource; private static bool _initialized; internal static void Initialize(Harmony harmony, ManualLogSource logSource) { _logSource = logSource; harmony.CreateClassProcessor(typeof(Bootstrap)).Patch(); } [HarmonyPostfix] private static void Postfix() { //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Expected O, but got Unknown //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Expected O, but got Unknown if (_initialized) { return; } _initialized = true; bool flag = default(bool); try { Core.OnInitialize(); StartupStateService.Mark(StartupState.BootstrapFired); ManualLogSource logSource = _logSource; BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(14, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Initialized ["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.13.22"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("]"); } logSource.LogInfo(val); } catch (Exception ex) { ManualLogSource logSource2 = _logSource; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } logSource2.LogError(val2); } } } internal static class Core { private static World _server; private static bool _serverNotReadyLogged; private static MonoBehaviour _monoBehaviour; private static readonly List _returnBuffs = new List(13) { PrefabGUIDs.Buff_Shared_Return, PrefabGUIDs.Buff_Shared_Return_NoInvulernable, PrefabGUIDs.Buff_Vampire_BloodKnight_Return, PrefabGUIDs.Buff_Vampire_Dracula_Return, PrefabGUIDs.Buff_Dracula_Return, PrefabGUIDs.Buff_WerewolfChieftain_Return, PrefabGUIDs.Buff_Werewolf_Return, PrefabGUIDs.Buff_Monster_Return, PrefabGUIDs.Buff_Purifier_Return, PrefabGUIDs.Buff_Blackfang_Morgana_Return, PrefabGUIDs.Buff_ChurchOfLight_Paladin_Return, PrefabGUIDs.Buff_Gloomrot_Voltage_Return, PrefabGUIDs.Buff_Militia_Fabian_Return }; private static readonly List _bearFormBuffs = new List(2) { PrefabGUIDs.AB_Shapeshift_Bear_Buff, PrefabGUIDs.AB_Shapeshift_Bear_Skin01_Buff }; private static readonly List _shardBearerDropTables = new List(5) { PrefabGUIDs.DT_Unit_Relic_Manticore_Unique, PrefabGUIDs.DT_Unit_Relic_Paladin_Unique, PrefabGUIDs.DT_Unit_Relic_Monster_Unique, PrefabGUIDs.DT_Unit_Relic_Dracula_Unique, PrefabGUIDs.DT_Unit_Relic_Morgana_Unique }; private static readonly ComponentType[] _nightmareUnitAllComponents = (ComponentType[])(object)new ComponentType[6] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static EntityQueries.QueryDesc _nightmareUnitQueryDesc; private static HashSet _bleedingEdge = new HashSet(); private static HashSet _disabledProfessions = new HashSet(); private const int SECONDARY_SKILL_SLOT = 4; private const int BLEED_STACKS = 3; private const float NIGHTMARE_HEALTH_MULTIPLIER = 5f; private const float NIGHTMARE_POWER_MULTIPLIER = 1.5f; private const float NIGHTMARE_MOVE_SPEED_MULTIPLIER = 1.25f; private static bool _initialized; private static readonly HashSet _shardBearers = new HashSet { PrefabGUIDs.CHAR_Manticore_VBlood, PrefabGUIDs.CHAR_ChurchOfLight_Paladin_VBlood, PrefabGUIDs.CHAR_Gloomrot_Monster_VBlood, PrefabGUIDs.CHAR_Vampire_Dracula_VBlood, PrefabGUIDs.CHAR_Blackfang_Morgana_VBlood }; private static World Server { get { World server = _server; if (server != null && server.IsCreated) { return _server; } _server = WorldUtility.FindServerWorld(true); World server2 = _server; if (server2 == null || !server2.IsCreated) { if (!_serverNotReadyLogged) { _serverNotReadyLogged = true; Log.LogWarning((object)"Server world requested before it is ready."); } throw new InvalidOperationException("Server world is not ready yet."); } _serverNotReadyLogged = false; return _server; } } public static EntityManager EntityManager => Server.EntityManager; public static ServerGameManager ServerGameManager => SystemService.ServerScriptMapper.GetServerGameManager(); public static SystemService SystemService { get; set; } public static ServerGameBalanceSettings ServerGameBalanceSettings { get; set; } public static bool IsPvP => (int)ServerGameBalanceSettings.GameModeType == 1; public static double ServerTime => ServerGameManager.ServerTime; public static double DeltaTime => ServerGameManager.DeltaTime; public static ManualLogSource Log => Plugin.MiniBehaviour.LogSource; private static bool ShouldResetShardBearers => ConfigService.EliteShardBearers; private static bool ShouldApplyBonusStats { get { if (!ConfigService.LegacySystem && !ConfigService.ExpertiseSystem && !ConfigService.ClassSystem) { return ConfigService.FamiliarSystem; } return true; } } public static bool Eclipsed { get { if (!ConfigService.LevelingSystem && !ConfigService.LegacySystem && !ConfigService.ExpertiseSystem && !ConfigService.ClassSystem) { return ConfigService.FamiliarSystem; } return true; } } public static IReadOnlySet BleedingEdge => _bleedingEdge; public static IReadOnlySet DisabledProfessions => _disabledProfessions; public static byte[] NEW_SHARED_KEY { get; set; } public static bool IsReady => _initialized; internal static void OnInitialize() { //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Expected O, but got Unknown //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) if (_initialized) { return; } NEW_SHARED_KEY = Convert.FromBase64String(SecretManager.GetNewSharedKey()); SystemService = new SystemService(Server); if (!ComponentRegistry._initialized) { ComponentRegistry.Initialize(); } new PlayerService(); new LocalizationService(); if (Eclipsed) { EmberglassEclipseBridge.Initialize(); new EclipseService(); } if (ConfigService.ExtraRecipes) { Recipes.ModifyRecipes(); } if (ConfigService.StarterKit) { Configuration.GetStarterKitItems(); } if (ConfigService.PrestigeSystem) { Buffs.GetPrestigeBuffs(); } if (ConfigService.ClassSystem) { Configuration.GetClassSpellCooldowns(); Classes.GetAbilityJewels(); } if (ConfigService.LevelingSystem) { DeathEventListenerSystemPatch.OnDeathEventHandler += LevelingSystem.OnUpdate; } if (ConfigService.ExpertiseSystem) { DeathEventListenerSystemPatch.OnDeathEventHandler += WeaponSystem.OnUpdate; } if (ConfigService.QuestSystem) { new QuestService(); DeathEventListenerSystemPatch.OnDeathEventHandler += QuestSystem.OnUpdate; } if (ConfigService.FamiliarSystem) { Configuration.GetExcludedFamiliars(); if (!ConfigService.LevelingSystem) { DeathEventListenerSystemPatch.OnDeathEventHandler += FamiliarLevelingSystem.OnUpdate; } DeathEventListenerSystemPatch.OnDeathEventHandler += FamiliarUnlockSystem.OnUpdate; new BattleService(); new FamiliarService(); } if (ConfigService.ProfessionSystem) { GetDisabledProfessions(); } GetBleedingEdgeWeapons(); ModifyPrefabs(); Buffs.GetStackableBuffs(); try { ServerGameBalanceSettings = ServerGameBalanceSettings.Get(SystemService.ServerGameSettingsSystem._ServerBalanceSettings); Progression.GetAttributeCaps(); } catch (Exception ex) { ManualLogSource log = Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(35, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error getting attribute soft caps: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } if (ShouldResetShardBearers) { ResetShardBearers(); } _initialized = true; StartupStateService.Mark(StartupState.CoreInitialized); } private static MonoBehaviour GetOrCreateMonoBehaviour() { return _monoBehaviour ?? (_monoBehaviour = CreateMonoBehaviour()); } private static MonoBehaviour CreateMonoBehaviour() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) IgnorePhysicsDebugSystem obj = new GameObject("Bloodcraft").AddComponent(); Object.DontDestroyOnLoad((Object)(object)((Component)obj).gameObject); return (MonoBehaviour)(object)obj; } public static Coroutine StartCoroutine(IEnumerator routine) { return GetOrCreateMonoBehaviour().StartCoroutine(CollectionExtensions.WrapToIl2Cpp(routine)); } public static void StopCoroutine(Coroutine routine) { GetOrCreateMonoBehaviour().StopCoroutine(routine); } public static void Delayed(Action action, float delay = 0.25f) { RunDelayed(delay, action).Run(); } private static IEnumerator RunDelayed(float delay, Action action) { yield return (object)new WaitForSeconds(delay); action?.Invoke(); } public static AddItemSettings GetAddItemSettings() { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0038: Unknown result type (might be due to invalid IL or missing references) AddItemSettings result = default(AddItemSettings); result.EntityManager = EntityManager; result.DropRemainder = true; ServerGameManager serverGameManager = ServerGameManager; result.ItemDataMap = ((ServerGameManager)(ref serverGameManager)).ItemLookupMap; result.EquipIfPossible = true; return result; } private static void GetBleedingEdgeWeapons() { HashSet hashSet = new HashSet(); foreach (WeaponType item in Configuration.ParseEnumsFromString(ConfigService.BleedingEdge)) { hashSet.Add(item); } _bleedingEdge = hashSet; } public static void GetDisabledProfessions() { HashSet hashSet = new HashSet(); foreach (Profession item in Configuration.ParseEnumsFromString(ConfigService.DisabledProfessions)) { hashSet.Add(item); } _disabledProfessions = hashSet; } private static void ModifyPrefabs() { //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Expected O, but got Unknown //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_03ea: Unknown result type (might be due to invalid IL or missing references) //IL_03ef: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_02b5: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0400: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_0329: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_033f: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_0350: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_01da: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) if (ConfigService.LevelingSystem) { Entity entity = default(Entity); if (SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(PrefabGUIDs.Item_EquipBuff_Shared_General, ref entity)) { entity.Add(); } if (SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(PrefabGUIDs.Item_EquipBuff_MagicSource_BloodKey_T01, ref entity)) { entity.Add(); } } if (ConfigService.FamiliarSystem) { Entity @null = Entity.Null; foreach (PrefabGUID returnBuff in _returnBuffs) { if (SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(returnBuff, ref @null) && @null.TryGetBuffer(out DynamicBuffer dynamicBuffer)) { HealOnGameplayEvent val = dynamicBuffer[0]; val.showSCT = false; dynamicBuffer[0] = val; } } } Entity entity2 = default(Entity); if (ShouldApplyBonusStats && SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(Buffs.BonusStatsBuff, ref entity2)) { entity2.Add(); if (entity2.TryGetBuffer(out DynamicBuffer dynamicBuffer2)) { dynamicBuffer2.Clear(); } } if (ConfigService.BearFormDash) { Entity entity3 = default(Entity); foreach (PrefabGUID bearFormBuff in _bearFormBuffs) { if (SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(bearFormBuff, ref entity3) && entity3.TryGetBuffer(out DynamicBuffer dynamicBuffer3)) { ReplaceAbilityOnSlotBuff val2 = dynamicBuffer3[4]; val2.NewGroupId = PrefabGUIDs.AB_Shapeshift_Bear_Dash_Group; dynamicBuffer3[4] = val2; } } } if (ConfigService.EliteShardBearers && !IsPvP) { Entity entity4 = default(Entity); foreach (PrefabGUID shardBearerDropTable in _shardBearerDropTables) { if (SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(shardBearerDropTable, ref entity4) && entity4.TryGetBuffer(out DynamicBuffer dynamicBuffer4) && !dynamicBuffer4.IsEmpty) { DropTableDataBuffer val3 = dynamicBuffer4[0]; val3.DropRate = 0.6f; dynamicBuffer4.Add(val3); val3.DropRate = 0.45f; dynamicBuffer4.Add(val3); val3.DropRate = 0.3f; dynamicBuffer4.Add(val3); } } } if (ConfigService.NightmareMode && !IsPvP) { _nightmareUnitQueryDesc = EntityManager.CreateQueryDesc(_nightmareUnitAllComponents, null, null, new int[1], (EntityQueryOptions)195); ApplyNightmareMode(); } if (BleedingEdge.Any()) { Entity entity5 = default(Entity); if (BleedingEdge.Contains(WeaponType.Slashers) && SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(Buffs.VargulfBleedBuff, ref entity5)) { entity5.With((VExtensions.WithRefHandler)delegate(ref Buff buff) { buff.MaxStacks = 3; buff.IncreaseStacks = true; }); } if (BleedingEdge.Contains(WeaponType.Crossbow, WeaponType.Pistols)) { ComponentType[] allTypes = (ComponentType[])(object)new ComponentType[4] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; BleedingEdgePrimaryProjectileRoutine(EntityManager.CreateQueryDesc(allTypes, null, null, new int[1], (EntityQueryOptions)195)).Run(); } Entity entity6 = default(Entity); if (BleedingEdge.Contains(WeaponType.Daggers) && SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(PrefabGUIDs.EquipBuff_Weapon_Daggers_Ability03, ref entity6)) { entity6.WithEdit(0, (VExtensions.WithRefHandler)delegate(ref RemoveBuffOnGameplayEventEntry removeBuffOnGameplayEventEntry) { //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) removeBuffOnGameplayEventEntry.Buff = PrefabIdentifier.Empty; }); } } if (!ConfigService.PrimalArsenal) { return; } Entity entity7 = default(Entity); if (SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(PrefabGUIDs.Item_Weapon_Axe_T09_ShadowMatter, ref entity7)) { entity7.With((VExtensions.WithRefHandler)delegate(ref EquippableData equippableData) { //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) equippableData.BuffGuid = PrefabGUIDs.EquipBuff_Weapon_DualHammers_Ability03; }); } try { ShadowMatter.GatherShadows(); } catch (Exception ex) { ManualLogSource log = Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val4 = new BepInExWarningLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val4).AppendFormatted(ex); } log.LogWarning(val4); } } private static void ApplyNightmareMode() { NightmareModeRoutine().Run(); } private static IEnumerator NightmareModeRoutine() { yield return EntityQueries.QueryResultStreamAsync(_nightmareUnitQueryDesc, delegate(EntityQueries.QueryResultStream stream) { //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Expected O, but got Unknown //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) try { using (stream) { foreach (EntityQueries.QueryResult result in stream.GetResults()) { PrefabGUID prefabGuid = result.ResolveComponentData(); string prefabName = prefabGuid.GetPrefabName(); if (!ShouldSkipNightmareTarget(prefabGuid, prefabName)) { ApplyNightmareStats(result.Entity); } } } } catch (Exception ex) { ManualLogSource log = Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(23, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[NightmareMode] error: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } }); } private static bool ShouldSkipNightmareTarget(PrefabGUID prefabGuid, string prefabName) { if (!((PrefabGUID)(ref prefabGuid)).HasValue()) { return true; } if (QuestService.FilteredTargetUnits.Any((string filter) => prefabName.Contains(filter, StringComparison.CurrentCultureIgnoreCase))) { return true; } if (prefabName.Contains("Servant", StringComparison.CurrentCultureIgnoreCase)) { return true; } if (prefabName.Contains("Player", StringComparison.CurrentCultureIgnoreCase)) { return true; } return false; } private static void ApplyNightmareStats(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref Health health) { health.MaxHealth._Value *= 5f; health.Value = health.MaxHealth._Value; }); entity.With((VExtensions.WithRefHandler)delegate(ref UnitStats unitStats) { unitStats.PhysicalPower._Value *= 1.5f; unitStats.SpellPower._Value *= 1.5f; }); entity.With((VExtensions.WithRefHandler)delegate(ref AiMoveSpeeds aiMoveSpeeds) { aiMoveSpeeds.Walk._Value *= 1.25f; aiMoveSpeeds.Run._Value *= 1.25f; }); } private static void ResetShardBearers() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Expected O, but got Unknown //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) ComponentType[] all = (ComponentType[])(object)new ComponentType[3] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; using NativeAccessor nativeAccessor = EntityManager.BuildEntityQuery(all, (EntityQueryOptions)2).ToEntityArrayAccessor((Allocator)2); try { Enumerator enumerator = nativeAccessor.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.TryGetComponent(out PrefabGUID componentData) && _shardBearers.Contains(componentData)) { current.Destroy(); } } } catch (Exception ex) { ManualLogSource log = Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(27, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[ResetShardBearers] error: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } } private static IEnumerator BleedingEdgePrimaryProjectileRoutine(EntityQueries.QueryDesc projectileQueryDesc) { bool pistols = BleedingEdge.Contains(WeaponType.Pistols); bool crossbow = BleedingEdge.Contains(WeaponType.Crossbow); yield return EntityQueries.QueryResultStreamAsync(projectileQueryDesc, delegate(EntityQueries.QueryResultStream stream) { //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Expected O, but got Unknown //IL_001b: 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_0021: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) try { using (stream) { foreach (EntityQueries.QueryResult result in stream.GetResults()) { Entity entity = result.Entity; string prefabName = result.ResolveComponentData().GetPrefabName(); if (pistols && IsWeaponPrimaryProjectile(prefabName, WeaponType.Pistols)) { entity.With((VExtensions.WithRefHandler)delegate(ref Projectile projectile) { projectile.Range *= 1.25f; }); entity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { lifeTime.Duration *= 1.25f; }); } else if (crossbow && IsWeaponPrimaryProjectile(prefabName, WeaponType.Crossbow)) { entity.With((VExtensions.WithRefHandler)delegate(ref Projectile projectile) { projectile.Speed = 100f; }); } } } } catch (Exception ex) { ManualLogSource log = Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(41, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[BleedingEdgePrimaryProjectileRoutine] - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } }); } private static bool IsWeaponPrimaryProjectile(string prefabName, WeaponType weaponType) { return prefabName.ContainsAll(new List(3) { weaponType.ToString(), "Primary", "Projectile" }); } public static void DumpEntity(this Entity entity, World world) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Expected O, but got Unknown //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Expected O, but got Unknown //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Expected O, but got Unknown StringBuilder val = new StringBuilder(); bool flag = default(bool); try { EntityDebuggingUtility.DumpEntity(world, entity, true, val); ManualLogSource log = Log; BepInExInfoLogInterpolatedStringHandler val2 = new BepInExInfoLogInterpolatedStringHandler(13, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Entity Dump:\n"); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(((Object)val).ToString()); } log.LogInfo(val2); } catch (Exception ex) { ManualLogSource log2 = Log; BepInExWarningLogInterpolatedStringHandler val3 = new BepInExWarningLogInterpolatedStringHandler(22, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral("Error dumping entity: "); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(ex.Message); } log2.LogWarning(val3); } } } public struct NativeAccessor : IDisposable where T : unmanaged { private NativeArray _array; public T this[int index] { get { return _array[index]; } set { _array[index] = value; } } public int Length => _array.Length; public NativeAccessor(NativeArray array) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) _array = array; } public Enumerator GetEnumerator() { //IL_0006: Unknown result type (might be due to invalid IL or missing references) return _array.GetEnumerator(); } public void Dispose() { _array.Dispose(); } } internal static class GenerateREADME { private static readonly Regex _commandGroupRegex = new Regex("\\[CommandGroup\\((?.*?)\\)\\]", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.Singleline); private static readonly Regex _commandAttributeRegex = new Regex("\\[Command\\((?.*?)\\)\\]", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.Singleline); private static readonly Regex _argPairRegex = new Regex("\\b(?\\w+)\\s*:\\s*(?\\\"[^\\\"]*\\\"|[^,\\)\\r\\n]+)", RegexOptions.IgnoreCase | RegexOptions.Compiled); private const string COMMANDS_HEADER = "## Chat Commands"; private const string CONFIG_HEADER = "## Configuration"; private static readonly Dictionary<(string groupName, string groupShort), List<(string name, string shortHand, bool adminOnly, string usage, string description)>> _commandsByGroup = new Dictionary<(string, string), List<(string, string, bool, string, string)>>(); private static string CommandsPath { get; set; } private static string ReadMePath { get; set; } public static void Main(string[] args) { if (Environment.GetEnvironmentVariable("GITHUB_ACTIONS") == "true") { Console.WriteLine("GenerateREADME skipped during GitHub Actions build."); return; } if (args.Length < 2) { Console.WriteLine("Usage: GenerateREADME "); return; } CommandsPath = args[0]; ReadMePath = args[1]; try { Generate(); Console.WriteLine("README generated successfully."); } catch (Exception ex) { Console.WriteLine("Error generating README: " + ex.Message); } } private static void Generate() { CollectCommands(); string commandsSection = BuildCommandsSection(); string configSection = BuildConfigSection(); UpdateReadme(commandsSection, configSection); } private static void CollectCommands() { foreach (string item in from file in Directory.GetFiles(CommandsPath, "*.cs") where !Path.GetFileName(file).Equals("DevCommands.cs", StringComparison.CurrentCultureIgnoreCase) select file) { string input = File.ReadAllText(item); Match match = _commandGroupRegex.Match(input); string args = (match.Success ? match.Groups["args"].Value : string.Empty); string text = GetStringArg(args, "name"); string stringArg = GetStringArg(args, "short"); if (string.IsNullOrEmpty(stringArg)) { stringArg = GetStringArg(args, "shortHand"); } if (string.IsNullOrEmpty(text)) { text = "misc"; } if (!_commandsByGroup.TryGetValue((text, stringArg), out List<(string, string, bool, string, string)> value)) { value = new List<(string, string, bool, string, string)>(); _commandsByGroup[(text, stringArg)] = value; } foreach (Match item2 in _commandAttributeRegex.Matches(input)) { string value2 = item2.Groups["args"].Value; string stringArg2 = GetStringArg(value2, "name"); string stringArg3 = GetStringArg(value2, "shortHand"); bool boolArg = GetBoolArg(value2, "adminOnly"); string stringArg4 = GetStringArg(value2, "usage"); string stringArg5 = GetStringArg(value2, "description"); value.Add((stringArg2, stringArg3, boolArg, stringArg4, stringArg5)); } } foreach (var item3 in _commandsByGroup.Keys.ToList()) { Dictionary<(string groupName, string groupShort), List<(string name, string shortHand, bool adminOnly, string usage, string description)>> commandsByGroup = _commandsByGroup; List<(string, string, bool, string, string)> list = new List<(string, string, bool, string, string)>(); list.AddRange(_commandsByGroup[item3].OrderBy<(string, string, bool, string, string), string>(((string name, string shortHand, bool adminOnly, string usage, string description) c) => c.name, StringComparer.CurrentCultureIgnoreCase)); commandsByGroup[item3] = list; } } private static string BuildCommandsSection() { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.AppendLine("## Chat Commands").AppendLine(); foreach (var item8 in _commandsByGroup.Keys.OrderBy(((string groupName, string groupShort) g) => g.groupName)) { string item = item8.groupName; string item2 = item8.groupShort; StringBuilder stringBuilder2 = stringBuilder; StringBuilder stringBuilder3 = stringBuilder2; StringBuilder.AppendInterpolatedStringHandler handler = new StringBuilder.AppendInterpolatedStringHandler(13, 1, stringBuilder2); handler.AppendLiteral("### "); handler.AppendFormatted(Capitalize(item)); handler.AppendLiteral(" Commands"); stringBuilder3.AppendLine(ref handler); foreach (var item9 in _commandsByGroup[(item, item2)]) { string item3 = item9.name; string item4 = item9.shortHand; bool item5 = item9.adminOnly; string item6 = item9.usage; string item7 = item9.description; bool flag = !string.IsNullOrEmpty(item4); string text = (string.IsNullOrEmpty(item6) ? ("." + (string.IsNullOrEmpty(item2) ? item : item2) + " " + (flag ? item4 : item3)) : item6); string text2 = string.Empty; string[] array = text.Split(' ', 3, StringSplitOptions.RemoveEmptyEntries); if (array.Length >= 3) { text2 = array[2]; } else if (array.Length == 2 && array[1].StartsWith("[")) { text2 = array[1]; } string value = (item5 ? " \ud83d\udd12" : string.Empty); string value2 = ((text2.Length > 0) ? $"- `.{item} {item3} {text2}`{value}" : $"- `.{item} {item3}`{value}"); stringBuilder.AppendLine(value2); if (!string.IsNullOrEmpty(item7)) { stringBuilder2 = stringBuilder; StringBuilder stringBuilder4 = stringBuilder2; handler = new StringBuilder.AppendInterpolatedStringHandler(4, 1, stringBuilder2); handler.AppendLiteral(" - "); handler.AppendFormatted(item7); stringBuilder4.AppendLine(ref handler); } stringBuilder2 = stringBuilder; StringBuilder stringBuilder5 = stringBuilder2; handler = new StringBuilder.AppendInterpolatedStringHandler(16, 1, stringBuilder2); handler.AppendLiteral(" - Shortcut: *"); handler.AppendFormatted(text); handler.AppendLiteral("*"); stringBuilder5.AppendLine(ref handler); } stringBuilder.AppendLine(); } return stringBuilder.ToString(); } private static string BuildConfigSection() { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.AppendLine("## Configuration"); stringBuilder.AppendLine(); List> list = (from entry in ConfigService.ConfigInitialization.ConfigEntries group entry by entry.Section into @group orderby ConfigService.ConfigInitialization.SectionOrder.IndexOf(@group.Key) select @group).ToList(); foreach (IGrouping item in list) { StringBuilder stringBuilder2 = stringBuilder; StringBuilder stringBuilder3 = stringBuilder2; StringBuilder.AppendInterpolatedStringHandler handler = new StringBuilder.AppendInterpolatedStringHandler(4, 1, stringBuilder2); handler.AppendLiteral("### "); handler.AppendFormatted(item.Key); stringBuilder3.AppendLine(ref handler); foreach (ConfigService.ConfigInitialization.ConfigEntryDefinition item2 in item) { string value = ((item2.DefaultValue is string text) ? ("\"" + text + "\"") : item2.DefaultValue.ToString()); string text2 = item2.DefaultValue.GetType().Name.ToLower(); switch (text2) { case "boolean": text2 = "bool"; break; case "single": text2 = "float"; break; case "int32": text2 = "int"; break; } stringBuilder2 = stringBuilder; StringBuilder stringBuilder4 = stringBuilder2; handler = new StringBuilder.AppendInterpolatedStringHandler(24, 4, stringBuilder2); handler.AppendLiteral("- **"); handler.AppendFormatted(AddSpacesToCamelCase(item2.Key)); handler.AppendLiteral("**: `"); handler.AppendFormatted(item2.Key); handler.AppendLiteral("` ("); handler.AppendFormatted(text2); handler.AppendLiteral(", default: "); handler.AppendFormatted(value); handler.AppendLiteral(")"); stringBuilder4.AppendLine(ref handler); if (!string.IsNullOrEmpty(item2.Description)) { stringBuilder2 = stringBuilder; StringBuilder stringBuilder5 = stringBuilder2; handler = new StringBuilder.AppendInterpolatedStringHandler(2, 1, stringBuilder2); handler.AppendLiteral(" "); handler.AppendFormatted(item2.Description); stringBuilder5.AppendLine(ref handler); } } if (list.IndexOf(item) < list.Count - 1) { stringBuilder.AppendLine(); } } return stringBuilder.ToString(); } private static string AddSpacesToCamelCase(string input) { if (string.IsNullOrEmpty(input)) { return input; } StringBuilder stringBuilder = new StringBuilder(); for (int i = 0; i < input.Length; i++) { char c = input[i]; bool flag = char.IsUpper(c); bool num = i > 0; bool flag2 = num && char.IsLower(input[i - 1]); bool flag3 = i < input.Length - 1 && char.IsLower(input[i + 1]); if (num && flag && (flag2 || flag3)) { stringBuilder.Append(' '); } stringBuilder.Append(c); } return stringBuilder.ToString(); } private static void UpdateReadme(string commandsSection, string configSection) { bool flag = false; bool flag2 = false; bool flag3 = false; bool flag4 = false; List list = new List(); try { foreach (string item in File.ReadLines(ReadMePath)) { if (item.Trim().Equals("## Chat Commands", StringComparison.CurrentCultureIgnoreCase)) { flag = true; flag3 = true; list.Add(commandsSection); continue; } if (item.Trim().Equals("## Configuration", StringComparison.CurrentCultureIgnoreCase)) { flag2 = true; flag4 = true; list.Add(configSection); continue; } if (flag && item.Trim().StartsWith("## ", StringComparison.CurrentCultureIgnoreCase) && !item.Trim().Equals("## Chat Commands", StringComparison.CurrentCultureIgnoreCase)) { flag = false; } if (flag2 && item.Trim().StartsWith("## ", StringComparison.CurrentCultureIgnoreCase) && !item.Trim().Equals("## Configuration", StringComparison.CurrentCultureIgnoreCase)) { flag2 = false; } if (!flag && !flag2) { list.Add(item); } } if (flag2) { list.Add(configSection); flag2 = false; } if (!flag3) { list.Add("## Chat Commands"); list.Add(commandsSection); } if (!flag4) { list.Add("## Configuration"); list.Add(configSection); } File.WriteAllLines(ReadMePath, list); } catch (Exception ex) { Console.Error.WriteLine("Error updating the readme: " + ex.Message); throw; } } private static string GetStringArg(string args, string key) { foreach (Match item in _argPairRegex.Matches(args)) { if (!item.Groups["key"].Value.Equals(key, StringComparison.CurrentCultureIgnoreCase)) { continue; } string text = item.Groups["value"].Value.Trim(); string result; if (text.Length > 1 && text[0] == '"') { if (text[text.Length - 1] == '"') { string text2 = text; result = text2.Substring(1, text2.Length - 1 - 1); goto IL_0097; } } result = text; goto IL_0097; IL_0097: return result; } return string.Empty; } private static bool GetBoolArg(string args, string key) { foreach (Match item in _argPairRegex.Matches(args)) { bool result; if (string.Equals(item.Groups["key"].Value, key, StringComparison.CurrentCultureIgnoreCase)) { return bool.TryParse(item.Groups["value"].Value, out result) && result; } } return false; } private static string Capitalize(string input) { if (!string.IsNullOrEmpty(input)) { return char.ToUpper(input[0]) + input.Substring(1, input.Length - 1); } return input; } } internal static class IExtensions { public static Dictionary Reverse(this IDictionary source) { Dictionary dictionary = new Dictionary(); foreach (KeyValuePair item in source) { dictionary[item.Value] = item.Key; } return dictionary; } public static Dictionary ReverseIl2CppDictionary(this Dictionary source) { Dictionary dictionary = new Dictionary(); if (source == null) { return dictionary; } Enumerator enumerator = source.GetEnumerator(); while (enumerator.MoveNext()) { KeyValuePair current = enumerator.Current; if (!dictionary.ContainsKey(current.Value)) { dictionary[current.Value] = current.Key; } } return dictionary; } public static void ForEach(this IEnumerable collection, Action action) { foreach (T item in collection) { action(item); } } public static bool IsIndexWithinRange(this IList list, int index) { if (index >= 0) { return index < list.Count; } return false; } public static bool ContainsAll(this string stringChars, List strings) { foreach (string @string in strings) { if (!stringChars.Contains(@string, StringComparison.CurrentCultureIgnoreCase)) { return false; } } return true; } public static T DrawRandom(this IList list) { if (list == null || !list.Any()) { return default(T); } int index = new Random((int)Misc.GetRandomSeed()).Next(list.Count); if (!list.IsIndexWithinRange(index)) { return default(T); } return list[index]; } public static IEnumerable> Batch(this IReadOnlyList source, int size) { if (size <= 0) { throw new ArgumentOutOfRangeException("size"); } List list = (source as List) ?? throw new ArgumentException("Source must be a List.", "source"); for (int i = 0; i < list.Count; i += size) { yield return list.GetRange(i, Math.Min(size, list.Count - i)); } } public static bool ContainsAny(this string stringChars, List strings, StringComparison stringComparison = StringComparison.CurrentCultureIgnoreCase) { foreach (string @string in strings) { if (stringChars.Contains(@string, stringComparison)) { return true; } } return false; } public static void Shuffle(this IList list) { Random random = new Random((int)Misc.GetRandomSeed()); int num = list.Count; while (num > 1) { num--; int num2 = random.Next(num + 1); int index = num; int index2 = num2; T value = list[num2]; T value2 = list[num]; list[index] = value; list[index2] = value2; } } public static bool Equals(this T value, params T[] options) where T : unmanaged { foreach (T val in options) { if (value.Equals(val)) { return true; } } return false; } public static bool Contains(this IEnumerable source, params T[] values) { foreach (T value in values) { if (Enumerable.Contains(source, value)) { return true; } } return false; } public static void Run(this IEnumerator routine, float delay = 0f) { if (delay > 0f) { Core.StartCoroutine(Delay(routine, delay)); } else { Core.StartCoroutine(routine); } } public static IEnumerator Delay(IEnumerator routine, float delay) { yield return (object)new WaitForSeconds(delay); routine.Run(); } public static Coroutine Start(this IEnumerator routine) { return Core.StartCoroutine(routine); } public static void Stop(this Coroutine coroutine) { Core.StopCoroutine(coroutine); } public static bool AsBool(this byte b) { return b != 0; } } [BepInPlugin("io.zfolmt.Bloodcraft", "Bloodcraft", "1.13.22")] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] internal class Plugin : BasePlugin { internal static class MiniBehaviour { internal static Plugin Instance { get; set; } internal static ManualLogSource LogSource { get; set; } internal static void OnLoad() { //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Expected O, but got Unknown //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Expected O, but got Unknown StartupStateService.Reset(); if (!IsVRisingServer()) { return; } Bootstrap.Initialize(BootstrapHarmony, LogSource); StartupStateService.Mark(StartupState.BootstrapPatched); Harmony harmony = Harmony; if (harmony != null) { harmony.PatchAll(); } StartupStateService.Mark(StartupState.MainHarmonyPatched); OnLoadInternal(); bool flag = default(bool); if (StartupStateService.IsReady()) { ManualLogSource logSource = LogSource; BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(23, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Startup checks passed. "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(StartupStateService.BuildSummary()); } logSource.LogInfo(val); } else { ManualLogSource logSource2 = LogSource; BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(23, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Startup checks failed. "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(StartupStateService.BuildSummary()); } logSource2.LogWarning(val2); } } private static void OnLoadInternal() { //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Expected O, but got Unknown ConfigService.ConfigInitialization.InitializeConfig(); StartupStateService.Mark(StartupState.ConfigLoaded); DataService.PlayerDataInitialization.LoadPlayerData(); StartupStateService.Mark(StartupState.PlayerDataLoaded); CommandRegistry.RegisterAll(); StartupStateService.Mark(StartupState.CommandsRegistered); RconCommandRegistrar.RegisterAll(); StartupStateService.Mark(StartupState.RconRegistered); ManualLogSource logSource = LogSource; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(9, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Loaded ["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.13.22"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("]"); } logSource.LogInfo(val); } internal static bool OnUnload() { Harmony harmony = Harmony; if (harmony != null) { harmony.UnpatchSelf(); } Harmony bootstrapHarmony = BootstrapHarmony; if (bootstrapHarmony != null) { bootstrapHarmony.UnpatchSelf(); } CommandRegistry.UnregisterAssembly(); RconCommandRegistrar.UnregisterAssembly(); StartupStateService.Reset(); return true; } } internal static Harmony Harmony { get; set; } internal static Harmony BootstrapHarmony { get; set; } private static bool IsVRisingServer() { return Application.productName == "VRisingServer"; } public override void Load() { MiniBehaviour.OnLoad(); } public override bool Unload() { return MiniBehaviour.OnUnload(); } public Plugin() { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Expected O, but got Unknown //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Expected O, but got Unknown Harmony = new Harmony("io.zfolmt.Bloodcraft"); BootstrapHarmony = new Harmony("io.zfolmt.Bloodcraft.bootstrap"); MiniBehaviour.Instance = this; MiniBehaviour.LogSource = ((BasePlugin)this).Log; } } internal static class VExtensions { public delegate void WithRefHandler(ref T item); private const string EMPTY_KEY = "LocalizationKey.Empty"; private const string ENTITY_PREFIX = "Entity("; private const string CHAR = "CHAR_"; private const int LENGTH = 7; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static DebugEventsSystem DebugEventsSystem => SystemService.DebugEventsSystem; public static void With(this Entity entity, WithRefHandler action) where T : struct { //IL_0000: 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) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: 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) if (entity.Has()) { T item = entity.Read(); action(ref item); EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).SetComponentData(entity, item); } } public static void WithEdit(this Entity entity, int index, WithRefHandler action) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Expected O, but got Unknown bool flag = default(bool); if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else if (!dynamicBuffer.IsIndexWithinRange(index)) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(37, 4, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Index ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") OoR ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("/"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(dynamicBuffer.Length); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") for DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log2.LogWarning(val); } else { T item = dynamicBuffer[index]; action(ref item); dynamicBuffer[index] = item; } } public static void WithInsert(this Entity entity, int index, T element) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Expected O, but got Unknown bool flag = default(bool); if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else if (!dynamicBuffer.IsIndexWithinRange(index)) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(37, 4, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Index ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") OoR ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("/"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(dynamicBuffer.Length); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") for DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log2.LogWarning(val); } else { dynamicBuffer.Insert(index, element); } } public static void WithAdd(this Entity entity, T element) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else { dynamicBuffer.Add(element); } } public static void WithClear(this Entity entity) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else { dynamicBuffer.Clear(); } } public static void AddWith(this Entity entity, WithRefHandler action) where T : struct { //IL_0000: 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_0008: Unknown result type (might be due to invalid IL or missing references) if (!entity.Has()) { entity.Add(); } entity.With(action); } public static void Write(this Entity entity, T componentData) where T : struct { //IL_0000: 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) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).SetComponentData(entity, componentData); } } public static T Read(this Entity entity) where T : struct { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; T result = default(T); if (!((EntityManager)(ref entityManager)).TryGetComponentData(entity, ref result)) { return default(T); } return result; } public static bool TryLookup(this Entity entity, ref ComponentLookup componentLookup, out T component) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) return componentLookup.TryGetComponent(entity, ref component); } public static T Lookup(this Entity entity, ref ComponentLookup componentLookup) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) T result = default(T); if (!componentLookup.TryGetComponent(entity, ref result)) { return default(T); } return result; } public static bool Has(this Entity entity, ref ComponentLookup componentLookup) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) return componentLookup.HasComponent(entity); } public static DynamicBuffer ReadBuffer(this Entity entity) where T : struct { //IL_0000: 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_0014: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetBuffer(out var dynamicBuffer)) { return dynamicBuffer; } return default(DynamicBuffer); } public static DynamicBuffer AddBuffer(this Entity entity) where T : struct { //IL_0000: 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) //IL_0008: 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) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).AddBuffer(entity); } public static bool TryGetComponent(this Entity entity, out T componentData) where T : struct { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) componentData = default(T); if (entity.Has()) { componentData = entity.Read(); return true; } return false; } public static bool IsCharacter(this PrefabGUID prefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return prefabGuid.GetPrefabName().StartsWith("CHAR_"); } public static string GetPrefabName(this PrefabGUID prefabGuid, bool verbose = false) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) if (LocalizationService.PrefabGuidNames.TryGetValue(prefabGuid, out var value)) { if (!verbose) { return $"{value} {prefabGuid}"; } return value; } return "LocalizationKey.Empty"; } public static string GetSequenceName(this SequenceGUID sequenceGuid) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) if (!LocalizationService.SequenceGuidNames.TryGetValue(sequenceGuid, out var value)) { return string.Empty; } return value; } public static string GetLocalizedName(this PrefabGUID prefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) string value = LocalizationService.GetNameFromPrefabGuid(prefabGuid); if (!string.IsNullOrEmpty(value)) { return value; } if (LocalizationService.PrefabGuidNames.TryGetValue(prefabGuid, out value)) { return value; } return "LocalizationKey.Empty"; } public static void Add(this Entity entity) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (!entity.Has()) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).AddComponent(entity); } } public static bool Has(this Entity entity) where T : struct { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).HasComponent(entity); } public static void Remove(this Entity entity) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).RemoveComponent(entity); } } public static bool TryGetFollowedPlayer(this Entity entity, out Entity player) { //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_000b: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) player = Entity.Null; if (entity.TryGetComponent(out Follower componentData) && componentData.Followed._Value.TryGetPlayer(out player)) { return true; } return false; } public static bool TryGetPlayer(this Entity entity, out Entity player) { //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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0014: 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) player = Entity.Null; if (entity.Has()) { player = entity; return true; } return false; } public static bool IsPlayer(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool IsFamiliar(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool IsFollowingPlayer(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (entity.Has() && !entity.Has() && !entity.Has()) { return true; } if (entity.TryGetComponent(out Follower componentData) && componentData.Followed._Value.IsPlayer()) { return true; } return false; } public static bool TryGetAttached(this Entity entity, out Entity attached) { //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_000b: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) attached = Entity.Null; if (entity.TryGetComponent(out Attach componentData) && componentData.Parent.Exists()) { attached = componentData.Parent; return true; } return false; } public static Entity GetBuffTarget(this Entity entity) { //IL_0000: 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) //IL_0006: Unknown result type (might be due to invalid IL or missing references) return CreateGameplayEventServerUtility.GetBuffTarget(EntityManager, entity); } public static Entity GetPrefabEntity(this Entity entity) { //IL_0000: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (!entity.Exists()) { return Entity.Null; } ServerGameManager serverGameManager = ServerGameManager; return ((ServerGameManager)(ref serverGameManager)).GetPrefabEntity(entity.GetPrefabGuid()); } public static Entity GetPrefabEntity(this PrefabGUID prefabGuid) { //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: 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) if (!((PrefabGUID)(ref prefabGuid)).HasValue()) { return Entity.Null; } ServerGameManager serverGameManager = ServerGameManager; return ((ServerGameManager)(ref serverGameManager)).GetPrefabEntity(prefabGuid); } public static Entity GetSpellTarget(this Entity entity) { //IL_0000: 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) //IL_0006: Unknown result type (might be due to invalid IL or missing references) return CreateGameplayEventServerUtility.GetSpellTarget(EntityManager, entity); } public static bool TryGetTeamEntity(this Entity entity, out Entity teamEntity) { //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_000b: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: 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_0021: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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) teamEntity = Entity.Null; if (entity.TryGetComponent(out TeamReference componentData)) { Entity value = componentData.Value._Value; if (value.Exists()) { teamEntity = value; return true; } } return false; } public static bool Exists(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0010: 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_0018: Unknown result type (might be due to invalid IL or missing references) if (entity.HasValue() && entity.IndexWithinCapacity()) { EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).Exists(entity); } return false; } public static void ResolveLookup(this ref ComponentLookup componentLookup, SystemBase systemBase, bool isReadOnly = false) where T : struct { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (IsEmpty(ref componentLookup)) { componentLookup = systemBase.GetComponentLookup(isReadOnly); } componentLookup.Update(systemBase); } public static void ResolveLookup(this ref BufferLookup bufferLookup, SystemBase systemBase, bool isReadOnly = false) where T : struct { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (IsEmpty(ref bufferLookup)) { bufferLookup = systemBase.GetBufferLookup(isReadOnly); } bufferLookup.Update(systemBase); } public static void ResolveHandle(this ref ComponentTypeHandle componentTypeHandle, SystemBase systemBase, bool isReadOnly = false) where T : struct { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (componentTypeHandle.IsZeroSized) { componentTypeHandle = ((ComponentSystemBase)systemBase).GetComponentTypeHandle(isReadOnly); } componentTypeHandle.Update(systemBase); } public static void ResolveHandle(this ref BufferTypeHandle bufferTypeHandle, SystemBase systemBase, bool isReadOnly = false) where T : struct { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (IsEmpty(ref bufferTypeHandle)) { bufferTypeHandle = ((ComponentSystemBase)systemBase).GetBufferTypeHandle(isReadOnly); } bufferTypeHandle.Update(systemBase); } public static bool IsEmpty(this ref ComponentLookup componentLookup) where T : struct { return componentLookup.m_IsZeroSized.AsBool(); } public static bool IsEmpty(this ref BufferLookup bufferLookup) where T : struct { return bufferLookup.m_InternalCapacity == 0; } public static bool IsEmpty(this ref BufferTypeHandle bufferTypeHandle) where T : struct { return bufferTypeHandle.m_Length == 0; } public static bool HasValue(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) return entity != Entity.Null; } public static bool IndexWithinCapacity(this Entity entity) { //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) ReadOnlySpan span = ((object)(Entity)(ref entity)).ToString().AsSpan(); if (!span.StartsWith("Entity(")) { return false; } ref ReadOnlySpan reference = ref span; span = reference.Slice(7, reference.Length - 7); int num = span.IndexOf(':'); if (num <= 0) { return false; } reference = ref span; int result = num + 1; ReadOnlySpan span2 = reference.Slice(result, reference.Length - result); int num2 = span2.IndexOf(')'); if (num2 <= 0) { return false; } if (!int.TryParse(span.Slice(0, num), out var result2)) { return false; } if (!int.TryParse(span2.Slice(0, num2), out result)) { return false; } EntityManager entityManager = EntityManager; int entityCapacity = ((EntityManager)(ref entityManager)).EntityCapacity; return (uint)result2 < (uint)entityCapacity; } public static bool IsDisabled(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static void Enable(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (entity.IsDisabled()) { entity.Remove(); } } public static void Disable(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (!entity.IsDisabled()) { entity.Add(); } } public static bool IsVBlood(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool IsDuelChallenger(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool IsGateBoss(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { return !entity.Has(); } return false; } public static bool IsVBloodOrGateBoss(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool IsLegendary(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool HasSpellLevel(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool IsMounter(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool IsAncestralWeapon(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { return !entity.IsMagicSource(); } return false; } public static bool IsShardNecklace(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { return entity.IsMagicSource(); } return false; } public static bool IsMagicSource(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out EquippableData componentData)) { return ((object)(EquipmentType)(ref componentData.EquipmentType)).Equals((object)(EquipmentType)3); } return false; } public static ulong GetSteamId(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out PlayerCharacter componentData)) { return componentData.UserEntity.GetUser().PlatformId; } if (entity.TryGetComponent(out User componentData2)) { return componentData2.PlatformId; } return 0uL; } public static NetworkId GetNetworkId(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out NetworkId componentData)) { return componentData; } return NetworkId.Empty; } public static bool TryGetPlayerInfo(this ulong steamId, out PlayerService.PlayerInfo playerInfo) { if (PlayerService.SteamIdPlayerInfoCache.TryGetValue(steamId, out playerInfo)) { return true; } if (PlayerService.SteamIdOnlinePlayerInfoCache.TryGetValue(steamId, out playerInfo)) { return true; } return false; } public static PrefabGUID GetPrefabGuid(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out PrefabGUID componentData)) { return componentData; } return PrefabGUID.Empty; } public static int GetGuidHash(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out PrefabGUID componentData)) { return ((PrefabGUID)(ref componentData)).GuidHash; } PrefabGUID empty = PrefabGUID.Empty; return ((PrefabGUID)(ref empty)).GuidHash; } public static Entity GetUserEntity(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out PlayerCharacter componentData)) { return componentData.UserEntity; } if (entity.IsUser()) { return entity; } return Entity.Null; } public static Entity GetOwner(this Entity entity, bool trueOwner = false) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) if (!entity.Exists()) { return Entity.Null; } Entity result = default(Entity); if (trueOwner && VampireDownedServerEventSystem.TryFindRootOwner(entity, 1, EntityManager, ref result)) { return result; } ServerGameManager serverGameManager = ServerGameManager; if (!((ServerGameManager)(ref serverGameManager)).TryGetOwner(entity, ref result)) { return Entity.Null; } return result; } public static User GetUser(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out User componentData)) { return componentData; } if (entity.TryGetComponent(out PlayerCharacter componentData2) && componentData2.UserEntity.TryGetComponent(out componentData)) { return componentData; } return User.Empty; } public static bool IsUser(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool HasBuff(this Entity entity, PrefabGUID buffPrefabGuid) { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; return ((ServerGameManager)(ref serverGameManager)).HasBuff(entity, ((PrefabGUID)(ref buffPrefabGuid)).ToIdentifier()); } public static bool HasBuff(this Entity entity) { //IL_0000: 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 BuffUtility.HasBuff(EntityManager, entity); } public static bool TryGetBuffer(this Entity entity, out DynamicBuffer dynamicBuffer) where T : struct { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(entity, ref dynamicBuffer)) { return true; } dynamicBuffer = default(DynamicBuffer); return false; } public static float3 GetAimPosition(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out EntityInput componentData)) { return componentData.AimPosition; } return float3.zero; } public static float3 GetPosition(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Translation componentData)) { return componentData.Value; } return float3.zero; } public static int2 GetTileCoord(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out TilePosition componentData)) { return componentData.Tile; } return int2.zero; } public static int GetUnitLevel(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out UnitLevel componentData)) { return componentData.Level._Value; } return 0; } public static float GetMaxDurability(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Durability componentData)) { return componentData.MaxDurability; } return 0f; } public static float GetDurability(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Durability componentData)) { return componentData.Value; } return 0f; } public static float GetMaxHealth(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Health componentData)) { return componentData.MaxHealth._Value; } return 0f; } public static Blood GetBlood(this Entity entity) { //IL_0000: 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_0014: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Blood componentData)) { return componentData; } return default(Blood); } public static AiMoveSpeeds GetMoveSpeeds(this Entity entity) { //IL_0000: 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_0014: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out AiMoveSpeeds componentData)) { return componentData; } return default(AiMoveSpeeds); } public static EntityInput GetInput(this Entity entity) { //IL_0000: 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) //IL_0008: 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) ServerGameManager serverGameManager = ServerGameManager; return ((ServerGameManager)(ref serverGameManager)).GetInput(entity); } public static PrefabGUID GetEquipBuff(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out EquippableData componentData)) { return componentData.BuffGuid; } return default(PrefabGUID); } public static PrefabGUID GetWeaponAttack(this PrefabGUID itemWeapon) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0027: 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_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) if (itemWeapon.GetPrefabEntity().GetEquipBuff().GetPrefabEntity() .TryGetBuffer(out DynamicBuffer dynamicBuffer)) { return dynamicBuffer.FirstOrDefault().NewGroupId; } return default(PrefabGUID); } public static (float physicalPower, float spellPower) GetPowerTuple(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: 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_0016: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out UnitStats componentData)) { return (componentData.PhysicalPower._Value, componentData.SpellPower._Value); } return (0f, 0f); } public static bool IsUnitSpawnerSpawned(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out IsMinion componentData)) { return componentData.Value; } return false; } public static bool IsStackable(this Entity entity, out int maxStacks) { //IL_0003: 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) maxStacks = 1; if (entity.TryGetComponent(out Buff componentData)) { maxStacks = componentData.MaxStacks; return componentData.IncreaseStacks; } return false; } public static Entity Create(this ComponentType[] components) { //IL_0000: 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) //IL_0009: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).CreateEntity(components); } public static void Destroy(this Entity entity, bool immediate = false) { //IL_0000: 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) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) if (entity.Exists()) { bool flag = entity.IsBuff(); entity.Enable(); if (immediate && !flag) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).DestroyEntity(entity); } else if (flag) { DestroyUtility.Destroy(EntityManager, entity, (DestroyDebugReason)13, (string)null, 0); } else { DestroyUtility.Destroy(EntityManager, entity, (DestroyDebugReason)0, (string)null, 0); } } } public static bool IsBuff(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static void SetTeam(this Entity entity, Entity teamSource) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_001a: 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_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) if (entity.Has() && entity.Has() && teamSource.TryGetComponent(out Team componentData) && teamSource.TryGetComponent(out TeamReference componentData2)) { Entity teamRefEntity = componentData2.Value._Value; int teamId = componentData.Value; entity.With((WithRefHandler)delegate(ref TeamReference teamReference) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) teamReference.Value._Value = teamRefEntity; }); entity.With((WithRefHandler)delegate(ref Team team) { team.Value = teamId; }); } } public static void SetPosition(this Entity entity, float3 position) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0027: 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_002f: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { entity.With((WithRefHandler)delegate(ref Translation translation) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) translation.Value = position; }); } if (entity.Has()) { entity.With((WithRefHandler)delegate(ref LastTranslation lastTranslation) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) lastTranslation.Value = position; }); } } public static void SetFaction(this Entity entity, PrefabGUID factionPrefabGuid) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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) if (entity.Has()) { entity.With((WithRefHandler)delegate(ref FactionReference factionReference) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) factionReference.FactionGuid._Value = factionPrefabGuid; }); } } public static bool IsAllied(this Entity entity, Entity player) { //IL_0000: 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) //IL_0008: 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) ServerGameManager serverGameManager = ServerGameManager; return ((ServerGameManager)(ref serverGameManager)).IsAllies(entity, player); } public static bool IsDreadful(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) return entity.GetPrefabGuid().Equals((PrefabGUID[])(object)new PrefabGUID[2] { PrefabGUIDs.CHAR_Legion_DreadHorn_Lesser, PrefabGUIDs.CHAR_Legion_Dreadhorn }); } public static bool IsEnchanted(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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) PrefabGUID prefabGuid = entity.GetPrefabGuid(); return ((PrefabGUID)(ref prefabGuid)).Equals(PrefabGUIDs.CHAR_ChurchOfLight_EnchantedCross); } public static bool IsPlayerOwned(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out EntityOwner componentData)) { return componentData.Owner.IsPlayer(); } return false; } public static void CastAbility(this Entity entity, PrefabGUID abilityGroup) { //IL_0000: 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) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) bool flag = entity.IsPlayer(); CastAbilityServerDebugEvent val = default(CastAbilityServerDebugEvent); val.AbilityGroup = abilityGroup; val.Who = entity.GetNetworkId(); CastAbilityServerDebugEvent val2 = val; FromCharacter val3 = default(FromCharacter); val3.Character = entity; val3.User = (flag ? entity.GetUserEntity() : entity); FromCharacter val4 = val3; int num = (flag ? entity.GetUser().Index : 0); DebugEventsSystem.CastAbilityServerDebugEvent(num, ref val2, ref val4); } public static bool IsIndexWithinRange(this DynamicBuffer buffer, int index) where T : struct { if (buffer.IsCreated && index >= 0) { return index < buffer.Length; } return false; } public static T FirstOrDefault(this DynamicBuffer buffer) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) if (buffer.IsIndexWithinRange(0)) { return buffer[0]; } return default(T); } public static NativeAccessor ToEntityArrayAccessor(this EntityQuery entityQuery, Allocator allocator = 2) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) return new NativeAccessor(((EntityQuery)(ref entityQuery)).ToEntityArray(AllocatorHandle.op_Implicit(allocator))); } public static NativeAccessor ToComponentDataArrayAccessor(this EntityQuery entityQuery, Allocator allocator = 2) where T : unmanaged { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) return new NativeAccessor(((EntityQuery)(ref entityQuery)).ToComponentDataArray(AllocatorHandle.op_Implicit(allocator))); } public static Type Il2CppTypeOf() where T : struct { return Il2CppType.Of(); } } [HarmonyPatch] internal static class VSystemManager { private static HashSet AdditionalSystems { get; } = new HashSet { typeof(PrimalWarEventSystem), typeof(Bloodcraft.Systems.QuestTargetSystem), typeof(ServantUpgradeSystem) }; private static MethodInfo GetOrCreateSystemManaged { get; } = typeof(World).GetMethods(BindingFlags.Instance | BindingFlags.Public).First((MethodInfo m) => m.Name == "GetOrCreateSystemManaged" && m.IsGenericMethodDefinition && m.GetParameters().Length == 0); private static void AddSystem(World world, ComponentSystemGroup systemGroup, Type systemType) { //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Expected O, but got Unknown ClassInjector.RegisterTypeInIl2Cpp(systemType); ComponentSystemBase val = (ComponentSystemBase)GetOrCreateSystemManaged.MakeGenericMethod(systemType).Invoke(world, null); systemGroup.AddSystemToUpdateList(val); } [HarmonyPatch(typeof(WorldBootstrapUtilities), "AddSystemsToWorld")] [HarmonyPrefix] private static void Prefix(World world, WorldBootstrap worldConfig, WorldSystemConfig worldSystemConfig) { //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Expected O, but got Unknown try { if (!WorldUtility.IsServerWorld(world)) { return; } UpdateGroup orCreateSystemManaged = world.GetOrCreateSystemManaged(); foreach (Type additionalSystem in AdditionalSystems) { AddSystem(world, (ComponentSystemGroup)(object)orCreateSystemManaged, additionalSystem); } ((ComponentSystemGroup)orCreateSystemManaged).SortSystems(); } catch (Exception ex) { ManualLogSource logSource = Plugin.MiniBehaviour.LogSource; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } logSource.LogWarning(val); } } } public static class MyPluginInfo { public const string PLUGIN_GUID = "io.zfolmt.Bloodcraft"; public const string PLUGIN_NAME = "Bloodcraft"; public const string PLUGIN_VERSION = "1.13.22"; } } namespace Bloodcraft.Utilities { internal static class Battles { private const string SANGUIS = "Sanguis"; private const string SANGUIS_DATA_CLASS = "Sanguis.Core+DataStructures"; private const string SANGUIS_DATA_PROPERTY = "PlayerTokens"; private const string SANGUIS_CONFIG_CLASS = "Sanguis.Plugin"; private const string SANGUIS_CONFIG_PROPERTY = "TokensPerMinute"; private const string SANGUIS_SAVE_METHOD = "SavePlayerTokens"; public static bool TryGetMatch(this HashSet<(ulong, ulong)> hashSet, ulong value, out (ulong, ulong) matchingPair) { matchingPair = default((ulong, ulong)); foreach (var item in hashSet) { if (item.Item1 == value || item.Item2 == value) { matchingPair = item; return true; } } return false; } public static bool TryGetMatchPairInfo(this (ulong, ulong) matchPair, out (PlayerService.PlayerInfo, PlayerService.PlayerInfo) matchPairInfo) { matchPairInfo = default((PlayerService.PlayerInfo, PlayerService.PlayerInfo)); var (steamId, steamId2) = matchPair; if (steamId.TryGetPlayerInfo(out var playerInfo) && steamId2.TryGetPlayerInfo(out var playerInfo2)) { matchPairInfo = (playerInfo, playerInfo2); return true; } return false; } public static void BuildBattleGroupDetailsReply(ulong steamId, DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData buffsData, DataService.FamiliarPersistence.FamiliarPrestigeManager.FamiliarPrestigeData prestigeData, List battleGroup, ref List familiars) { //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) foreach (int item in battleGroup) { if (item != 0) { string localizedName = VExtensions.GetLocalizedName(new PrefabGUID(item)); string text = ""; int key = FamiliarLevelingSystem.GetFamiliarExperience(steamId, item).Key; int value = 0; if (buffsData.FamiliarBuffs.ContainsKey(item) && FamiliarUnlockSystem.ShinyBuffColorHexes.TryGetValue(new PrefabGUID(buffsData.FamiliarBuffs[item][0]), out var value2)) { text = ""; } if (!prestigeData.FamiliarPrestige.ContainsKey(item)) { prestigeData.FamiliarPrestige[item] = 0; DataService.FamiliarPersistence.FamiliarPrestigeManager.SaveFamiliarPrestigeData(steamId, prestigeData); } else { value = prestigeData.FamiliarPrestige[item]; } familiars.Add($"{battleGroup.IndexOf(item) + 1}: {localizedName}{(buffsData.FamiliarBuffs.ContainsKey(item) ? (text + "*") : "")} [{key}][{value}]"); } } } private static void DetectSanguis() { //IL_02fe: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Expected O, but got Unknown //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Expected O, but got Unknown //IL_0254: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Expected O, but got Unknown //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Expected O, but got Unknown //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Expected O, but got Unknown //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Expected O, but got Unknown bool flag = default(bool); try { Assembly assembly2 = AppDomain.CurrentDomain.GetAssemblies().FirstOrDefault((Assembly assembly) => assembly.GetName().Name == "Sanguis"); if (assembly2 != null) { Type type = assembly2.GetType("Sanguis.Plugin"); Type type2 = assembly2.GetType("Sanguis.Core+DataStructures"); if (type != null && type2 != null) { PropertyInfo property = type.GetProperty("TokensPerMinute", BindingFlags.Static | BindingFlags.Public); PropertyInfo property2 = type2.GetProperty("PlayerTokens", BindingFlags.Static | BindingFlags.Public); if (property != null && property2 != null) { MethodInfo method = type2.GetMethod("SavePlayerTokens", BindingFlags.Static | BindingFlags.Public); Dictionary dictionary = (Dictionary)(property2?.GetValue(null) ?? new object()); int num = (int)(property?.GetValue(null) ?? ((object)0)); if (method != null && dictionary.Any() && num > 0) { BattleService._awardSanguis = true; BattleService._tokensProperty = property2; BattleService._tokensTransferred = num; BattleService._saveTokens = method; BattleService._playerTokens = dictionary; ManualLogSource log = Core.Log; BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(40, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("Sanguis"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" registered for familiar battle rewards!"); } log.LogInfo(val); } else { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(23, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Couldn't get "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("SavePlayerTokens"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("TokensPerMinute"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(" from "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Sanguis"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("!"); } log2.LogWarning(val2); } } else { ManualLogSource log3 = Core.Log; BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(23, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Couldn't get "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("PlayerTokens"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("TokensPerMinute"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(" from "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Sanguis"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("!"); } log3.LogWarning(val2); } } else { ManualLogSource log4 = Core.Log; BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(23, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Couldn't get "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Sanguis.Core+DataStructures"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Sanguis.Plugin"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(" from "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Sanguis"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("!"); } log4.LogWarning(val2); } } else { ManualLogSource log5 = Core.Log; BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(44, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("Sanguis"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" not registered for familiar battle rewards!"); } log5.LogInfo(val); } } catch (Exception ex) { ManualLogSource log6 = Core.Log; BepInExErrorLogInterpolatedStringHandler val3 = new BepInExErrorLogInterpolatedStringHandler(28, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral("Error during "); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted("Sanguis"); ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral(" registration: "); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(ex.Message); } log6.LogError(val3); } } public static void HandleBattleGroupDetailsReply(ChatCommandContext ctx, ulong steamId, DataService.FamiliarPersistence.FamiliarBattleGroupsManager.FamiliarBattleGroup battleGroup) { if (battleGroup.Familiars.Any((int x) => x != 0)) { DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData buffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(steamId); DataService.FamiliarPersistence.FamiliarPrestigeManager.FamiliarPrestigeData prestigeData = DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(steamId); List familiars = new List(); BuildBattleGroupDetailsReply(steamId, buffsData, prestigeData, battleGroup.Familiars, ref familiars); string text = string.Join(", ", familiars); LocalizationService.HandleReply(ctx, "Battle Group - " + text); } else { LocalizationService.HandleReply(ctx, "No familiars in battle group!"); } } } internal static class Buffs { public static readonly PrefabGUID HighlordDeadBuff = PrefabGUIDs.AB_HighLordSword_SelfStun_DeadBuff; public static readonly PrefabGUID CastleManCombatBuff = PrefabGUIDs.Buff_InCombat_Npc_CastleMan; public static readonly PrefabGUID StandardWerewolfBuff = PrefabGUIDs.Buff_General_Shapeshift_Werewolf_Standard; public static readonly PrefabGUID VBloodWerewolfBuff = PrefabGUIDs.Buff_General_Shapeshift_Werewolf_VBlood; public static readonly PrefabGUID DisableAggroBuff = PrefabGUIDs.Buff_Illusion_Mosquito_DisableAggro; public static readonly PrefabGUID InteractModeBuff = PrefabGUIDs.AB_Militia_HoundMaster_QuickShot_Buff; public static readonly PrefabGUID AdminInvulnerableBuff = PrefabGUIDs.Admin_Invulnerable_Buff; public static readonly PrefabGUID InvisibleAndImmaterialBuff = PrefabGUIDs.AB_InvisibilityAndImmaterial_Buff; public static readonly PrefabGUID DraculaBloodCurseBuff = PrefabGUIDs.Buff_Vampire_Dracula_BloodCurse; public static readonly PrefabGUID PvECombatBuff = PrefabGUIDs.Buff_InCombat; public static readonly PrefabGUID PvPCombatBuff = PrefabGUIDs.Buff_InCombat_PvPVampire; public static readonly PrefabGUID VBloodAbilityReplaceBuff = PrefabGUIDs.Buff_VBlood_Ability_Replace; public static readonly PrefabGUID VargulfBleedBuff = PrefabGUIDs.AB_Legion_Vargulf_SlicingArm_BleedBuff; public static readonly PrefabGUID DefaultEmoteBuff = PrefabGUIDs.AB_Emote_Buff_Default_NoAnimation; public static readonly PrefabGUID TauntEmoteBuff = PrefabGUIDs.AB_Emote_Vampire_Taunt_Buff; public static readonly PrefabGUID ShroudBuff = PrefabGUIDs.EquipBuff_ShroudOfTheForest; public static readonly PrefabGUID DominateBuff = PrefabGUIDs.AB_Shapeshift_DominatingPresence_PsychicForm_Buff; public static readonly PrefabGUID VanishBuff = PrefabGUIDs.AB_Bandit_Thief_Rush_Buff; public static readonly PrefabGUID HolyBubbleBuff = PrefabGUIDs.AB_ChurchOfLight_Paladin_HolyBubble_InvulnerableBuff; public static readonly PrefabGUID GateBossFeedCompleteBuff = PrefabGUIDs.AB_FeedGateBoss_04_Complete_AreaTriggerBuff; public static readonly PrefabGUID HolyBeamPowerBuff = PrefabGUIDs.AB_CastleMan_HolyBeam_PowerBuff_01; public static readonly PrefabGUID PvPProtectedBuff = PrefabGUIDs.Buff_General_PvPProtected; public static readonly PrefabGUID PhasingBuff = PrefabGUIDs.Buff_General_Phasing; public static readonly PrefabGUID WitchPigTransformationBuff = PrefabGUIDs.Witch_PigTransformation_Buff; public static readonly PrefabGUID WranglerPotionBuff = PrefabGUIDs.AB_Consumable_WranglerPotion_T01_Buff; public static readonly PrefabGUID HighlordGroundSwordBossBuff = PrefabGUIDs.AB_HighLord_GroundSword_PermaBuff_Boss; public static readonly PrefabGUID HighlordGroundSwordSpawnBuff = PrefabGUIDs.AB_HighLord_GroundSword_SilenceBuff_Boss; public static readonly PrefabGUID InkCrawlerDeathBuff = PrefabGUIDs.Buff_InkCrawler_Timer; public static readonly PrefabGUID TargetSwallowedBuff = PrefabGUIDs.AB_Cursed_ToadKing_Swallow_TargetSwallowedBuff; public static readonly PrefabGUID CombatStanceBuff = PrefabGUIDs.Buff_CombatStance; public static readonly PrefabGUID DraculaReturnHideBuff = PrefabGUIDs.Buff_Vampire_Dracula_ReturnHide; public static readonly PrefabGUID ActiveCharmedHumanBuff = PrefabGUIDs.AB_Charm_Active_Human_Buff; public static readonly PrefabGUID StormShieldTertiaryBuff = PrefabGUIDs.AB_Storm_Discharge_StormShield_Buff_03; public static readonly PrefabGUID StormShieldSecondaryBuff = PrefabGUIDs.AB_Storm_Discharge_StormShield_Buff_02; public static readonly PrefabGUID StormShieldPrimaryBuff = PrefabGUIDs.AB_Storm_Discharge_StormShield_Buff_01; public static readonly PrefabGUID TakeFlightBuff = PrefabGUIDs.AB_Shapeshift_Bat_TakeFlight_Buff; public static readonly PrefabGUID GarlicDebuff = PrefabGUIDs.Buff_General_Garlic_Area_Inside; public static readonly PrefabGUID SilverDebuff = PrefabGUIDs.Buff_General_Silver_Sickness_Burn_Debuff; public static readonly PrefabGUID HolyDebuff = PrefabGUIDs.Buff_General_Holy_Area_T01; public static readonly PrefabGUID DivineDebuff = PrefabGUIDs.Buff_General_Holy_Area_T02; public static readonly PrefabGUID VampireLeechDebuff = PrefabGUIDs.Blood_Vampire_Buff_Leech; public static readonly PrefabGUID VampireCondemnDebuff = PrefabGUIDs.Unholy_Vampire_Buff_Condemn; public static readonly PrefabGUID VampireIgniteDebuff = PrefabGUIDs.Chaos_Vampire_Buff_Ignite; public static readonly PrefabGUID VampireChillDebuff = PrefabGUIDs.Frost_Vampire_Buff_Chill; public static readonly PrefabGUID VampireWeakenDebuff = PrefabGUIDs.Illusion_Vampire_Buff_Weaken; public static readonly PrefabGUID VampireStaticDebuff = PrefabGUIDs.Storm_Vampire_Buff_Static; public static readonly PrefabGUID BloodCurseBuff = PrefabGUIDs.AB_Blood_VampiricCurse_Buff; public static readonly PrefabGUID StormChargeBuff = PrefabGUIDs.Storm_Vampire_Buff_Static_WeaponCharge; public static readonly PrefabGUID FrostWeaponBuff = PrefabGUIDs.AB_Frost_FrostWeapon_Buff; public static readonly PrefabGUID ChaosHeatedBuff = PrefabGUIDs.Chaos_Vampire_Buff_Heated; public static readonly PrefabGUID IllusionShieldBuff = PrefabGUIDs.Illusion_Vampire_SpellMod_Shield_Buff; public static readonly PrefabGUID UnholyAmplifyBuff = PrefabGUIDs.Unholy_Vampire_Buff_Amplify; public static readonly PrefabGUID EvolvedVampireBuff = PrefabGUIDs.Buff_Vampire_Dracula_SpellPhase; public static readonly PrefabGUID CorruptedSerpentBuff = PrefabGUIDs.AB_Blackfang_Morgana_Transformation_SnakePhaseBuff; public static readonly PrefabGUID AncientGuardianBuff = PrefabGUIDs.AB_Geomancer_Transform_ToGolem_Buff; public static readonly PrefabGUID BonusStatsBuff = PrefabGUIDs.SetBonus_AllLeech_T09; public static readonly PrefabGUID BonusPlayerStatsBuff = BonusStatsBuff; public static readonly PrefabGUID BonusFamiliarStatsBuff = BonusStatsBuff; private static readonly Dictionary _buffMaxStacks = new Dictionary(); private static PrefabGUID _buffArenaActive = PrefabGUIDs.Buff_Arena_Active; private static PrefabGUID _buffDuelActive = PrefabGUIDs.Buff_Duel_Active; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static DebugEventsSystem DebugEventsSystem => SystemService.DebugEventsSystem; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; public static bool TryApplyBuff(this Entity entity, PrefabGUID prefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: 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_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) bool flag = entity.HasBuff(prefabGuid); if (flag && ShouldApplyStack(entity, prefabGuid, out var _, out var stacks)) { ServerGameManager serverGameManager = ServerGameManager; ((ServerGameManager)(ref serverGameManager)).InstantiateBuffEntityImmediate(entity, entity, prefabGuid, (OnSpawnedDelegate)null, (int)stacks); } else if (!flag) { ApplyBuffDebugEvent val = default(ApplyBuffDebugEvent); val.BuffPrefabGUID = prefabGuid; val.Who = entity.GetNetworkId(); ApplyBuffDebugEvent val2 = val; FromCharacter val3 = default(FromCharacter); val3.Character = entity; val3.User = (entity.IsPlayer() ? entity.GetUserEntity() : entity); FromCharacter val4 = val3; DebugEventsSystem.ApplyBuff(val4, val2); return true; } return false; } private static bool ShouldApplyStack(Entity entity, PrefabGUID prefabGuid, out Entity buffEntity, out byte stacks) { //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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) buffEntity = Entity.Null; stacks = 0; if (_buffMaxStacks.TryGetValue(prefabGuid, out var value) && entity.TryGetBuffStacks(prefabGuid, out buffEntity, out var stacks2)) { stacks = (byte)stacks2; return stacks < value; } return false; } public static bool TryGetBuff(this Entity entity, PrefabGUID buffPrefabGUID, out Entity buffEntity) { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryGetBuff(entity, ((PrefabGUID)(ref buffPrefabGUID)).ToIdentifier(), ref buffEntity)) { return true; } return false; } public static bool TryGetBuffStacks(this Entity entity, PrefabGUID buffPrefabGUID, out Entity buffEntity, out int stacks) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000b: 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_001c: 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) stacks = 0; ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryGetBuff(entity, ((PrefabGUID)(ref buffPrefabGUID)).ToIdentifier(), ref buffEntity) && buffEntity.TryGetComponent(out Buff componentData)) { stacks = componentData.Stacks; return true; } return false; } public static void TryRemoveBuff(this Entity entity, PrefabGUID buffPrefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetBuff(buffPrefabGuid, out var buffEntity)) { ((PrefabGUID)(ref buffPrefabGuid)).Equals(BonusStatsBuff); buffEntity.Destroy(); } } public static bool TryApplyAndGetBuff(this Entity entity, PrefabGUID buffPrefabGuid, out Entity buffEntity) { //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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0014: 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) buffEntity = Entity.Null; if (entity.TryApplyBuff(buffPrefabGuid) && entity.TryGetBuff(buffPrefabGuid, out buffEntity)) { return true; } return false; } public static bool TryApplyBuffWithOwner(this Entity target, Entity owner, PrefabGUID buffPrefabGuid) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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_0018: 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) if (target.TryApplyAndGetBuff(buffPrefabGuid, out var buffEntity) && buffEntity.Has()) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref EntityOwner entityOwner) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) entityOwner.Owner = owner; }); return true; } return false; } public static void TryApplyBuffInteractMode(this Entity entity, PrefabGUID buffPrefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) if (entity.TryApplyAndGetBuff(buffPrefabGuid, out var buffEntity)) { buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref BuffModificationFlagData buffFlagData) { //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) //IL_000e: Unknown result type (might be due to invalid IL or missing references) ModificationIDs val = ModificationIDs.Create(); buffFlagData.ModificationId = ((ModificationIDs)(ref val)).NewModificationId(); buffFlagData.ModificationTypes = 16L; }); buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); } } public static void TryApplyBuffWithLifeTimeNone(this Entity entity, PrefabGUID buffPrefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryApplyAndGetBuff(buffPrefabGuid, out var buffEntity)) { buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); } } public static void TryApplyBuffWithLifeTimeDestroy(this Entity entity, PrefabGUID buffPrefabGuid, float duration) { //IL_000d: 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_0018: Unknown result type (might be due to invalid IL or missing references) if (entity.TryApplyAndGetBuff(buffPrefabGuid, out var buffEntity)) { buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = duration; lifeTime.EndAction = (LifeTimeEndAction)2; }); } } public static bool TryApplyAndGetBuffWithOwner(this Entity target, Entity owner, PrefabGUID buffPrefabGUID, out Entity buffEntity) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) buffEntity = Entity.Null; if (target.TryApplyAndGetBuff(buffPrefabGUID, out buffEntity)) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref EntityOwner entityOwner) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) entityOwner.Owner = owner; }); return true; } return false; } public static void TryApplyPermanentBuff(Entity playerCharacter, PrefabGUID buffPrefab) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (playerCharacter.TryApplyAndGetBuff(buffPrefab, out var buffEntity)) { ModifyPermanentBuff(buffEntity); } } private static void ModifyPermanentBuff(Entity buffEntity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); if (buffEntity.Has()) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); } } public static void HandleShinyBuff(Entity entity, PrefabGUID buffPrefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: 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_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0083: 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_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) if (entity.TryApplyAndGetBuff(buffPrefabGuid, out var buffEntity)) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref Buff buff) { buff.MaxStacks = 3; buff.IncreaseStacks = true; buff.Stacks = 1; }); buffEntity.With((VExtensions.WithRefHandler)delegate(ref BuffCategory buffCategory) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) buffCategory.Groups = (BuffCategoryFlag)0; }); buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); } } public static void HandleSparkleBuff(Entity entity, PrefabGUID buffPrefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) if (entity.TryApplyAndGetBuff(buffPrefabGuid, out var buffEntity)) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); } } public static void GetPrestigeBuffs() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) foreach (int item in Configuration.ParseIntegersFromString(ConfigService.PrestigeBuffs)) { UpdateBuffsBufferDestroyPatch.PrestigeBuffs.Add(new PrefabGUID(item)); } } public static bool PlayerInCombat(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) if (entity.IsPlayer()) { if (!entity.HasBuff(PvECombatBuff)) { return entity.HasBuff(PvPCombatBuff); } return true; } return false; } public static void GetStackableBuffs() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) NativeParallelHashMap prefabGuidToEntityMap = PrefabCollectionSystem._PrefabGuidToEntityMap; NativeArray keyArray = prefabGuidToEntityMap.GetKeyArray(AllocatorHandle.op_Implicit((Allocator)2)); NativeArray valueArray = prefabGuidToEntityMap.GetValueArray(AllocatorHandle.op_Implicit((Allocator)2)); try { for (int i = 0; i < keyArray.Length; i++) { PrefabGUID key = keyArray[i]; if (valueArray[i].IsStackable(out var maxStacks)) { _buffMaxStacks[key] = maxStacks; } } } finally { keyArray.Dispose(); valueArray.Dispose(); } } public static bool IsDueling(this Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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) if (playerCharacter.HasBuff(_buffArenaActive) || playerCharacter.HasBuff(_buffDuelActive)) { return true; } return false; } public static void RefreshStats(Entity entity) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0025: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) ApplyBuffDebugEvent val = default(ApplyBuffDebugEvent); val.BuffPrefabGUID = BonusStatsBuff; val.Who = entity.GetNetworkId(); ApplyBuffDebugEvent val2 = val; FromCharacter val3 = default(FromCharacter); val3.Character = entity; val3.User = (entity.IsPlayer() ? entity.GetUserEntity() : entity); FromCharacter val4 = val3; DebugEventsSystem.ApplyBuff(val4, val2); } } public static class ChunkJobs { public interface IJobChunk { bool IsComplete { get; } void Execute(ref ArchetypeChunk chunk); } public static void ForEach(this EntityQuery query, ref T job) where T : struct, IJobChunk { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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_001a: Unknown result type (might be due to invalid IL or missing references) NativeArray val = ((EntityQuery)(ref query)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); try { for (int i = 0; i < val.Length; i++) { ArchetypeChunk chunk = val[i]; job.Execute(ref chunk); if (job.IsComplete) { break; } } } finally { if (val.IsCreated) { val.Dispose(); } } } } internal static class Classes { private static EntityManager _entityManagerRef = Core.EntityManager; private static readonly WaitForSeconds _longDelay = new WaitForSeconds(10f); private static readonly Regex _classNameRegex = new Regex("(?> _abilityJewelMap = new Dictionary>(); private static EntityQueries.QueryDesc _jewelQueryDesc; private static readonly ComponentType[] _jewelComponents = (ComponentType[])(object)new ComponentType[6] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static readonly int[] _typeIndices = new int[2] { 0, 1 }; private static readonly Dictionary _classColorMap = new Dictionary { { ClassManager.PlayerClass.ShadowBlade, "#A020F0" }, { ClassManager.PlayerClass.DemonHunter, "#FFD700" }, { ClassManager.PlayerClass.BloodKnight, "#FF0000" }, { ClassManager.PlayerClass.ArcaneSorcerer, "#008080" }, { ClassManager.PlayerClass.VampireLord, "#00FFFF" }, { ClassManager.PlayerClass.DeathMage, "#00FF00" } }; public static readonly Dictionary> ClassShiftAbilities = new Dictionary> { [ClassManager.PlayerClass.BloodKnight] = new List(10) { new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0) }, [ClassManager.PlayerClass.VampireLord] = new List(10) { new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0) }, [ClassManager.PlayerClass.DemonHunter] = new List(10) { new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0) }, [ClassManager.PlayerClass.ShadowBlade] = new List(10) { new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0) }, [ClassManager.PlayerClass.ArcaneSorcerer] = new List(10) { new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0) }, [ClassManager.PlayerClass.DeathMage] = new List(10) { new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0), new PrefabGUID(0) } }; public static readonly Dictionary> BuffStatBonuses; public static readonly Dictionary ClassWeaponBloodMap; public static readonly Dictionary, List)> ClassWeaponBloodEnumMap; public static readonly Dictionary ClassSpellsMap; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static ActivateVBloodAbilitySystem ActivateVBloodAbilitySystem => SystemService.ActivateVBloodAbilitySystem; private static ReplaceAbilityOnSlotSystem ReplaceAbilityOnSlotSystem => SystemService.ReplaceAbilityOnSlotSystem; private static NativeParallelHashMap ItemLookup => SystemService.GameDataSystem.ItemHashLookupMap; public static List GetClassBuffs(ulong steamId) { if (steamId.HasClass(out var playerClass) && playerClass.HasValue) { if (!UpdateBuffsBufferDestroyPatch.ClassBuffsOrdered.TryGetValue(playerClass.Value, out var value)) { return new List(); } return value; } return new List(); } public static bool HandleClassChangeItem(ChatCommandContext ctx) { //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(ConfigService.ChangeClassItem); int changeClassQuantity = ConfigService.ChangeClassQuantity; Entity val2 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, ctx.User.LocalCharacter._Entity, ref val2, 0)) { ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val2, val) >= changeClassQuantity) { serverGameManager = ServerGameManager; if (!((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val2, val, changeClassQuantity)) { LocalizationService.HandleReply(ctx, $"Failed to remove enough of the item required ({val.GetLocalizedName()}x{changeClassQuantity})"); return false; } return true; } } LocalizationService.HandleReply(ctx, $"You do not have enough of the required item to change classes ({val.GetLocalizedName()}x{changeClassQuantity})"); return false; } public static bool HasClass(this ulong steamId, out ClassManager.PlayerClass? playerClass) { playerClass = null; if (steamId.TryGetPlayerClass(out var playerClass2)) { playerClass = playerClass2; return true; } return false; } public static void RemoveClassBuffs(Entity playerCharacter, List classBuffs) { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) foreach (PrefabGUID classBuff in classBuffs) { playerCharacter.TryRemoveBuff(classBuff); } } public static void RemoveAllClassBuffs(Entity playerCharacter) { //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) foreach (List value in UpdateBuffsBufferDestroyPatch.ClassBuffsOrdered.Values) { foreach (PrefabGUID item in value) { playerCharacter.TryRemoveBuff(item); } } } public static void ReplyClassBuffs(ChatCommandContext ctx, ClassManager.PlayerClass playerClass) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) List list = UpdateBuffsBufferDestroyPatch.ClassBuffsOrdered[playerClass]; NativeParallelHashMap prefabGuidEntityMap = PrefabCollectionSystem._PrefabGuidToEntityMap; if (list.Count == 0) { LocalizationService.HandleReply(ctx, FormatClassName(playerClass) + " passives not found!"); return; } int step = ConfigService.MaxLevel / list.Count; List source = list.Select(delegate(PrefabGUID buff, int index) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) Entity val = prefabGuidEntityMap[buff]; string text2 = buff.GetPrefabName(); int value = (index + 1) * step; int num = text2.IndexOf("Prefab"); if (num != -1) { text2 = text2.Substring(0, num).TrimEnd(); } return $"{index + 1}| {(val.Has() ? FormatModifyUnitStatBuffer(val) : text2)} at level {value}"; }).ToList(); LocalizationService.HandleReply(ctx, FormatClassName(playerClass) + " passives:"); foreach (IReadOnlyList item in source.Batch(3)) { string text = string.Join(", ", item); LocalizationService.HandleReply(ctx, text ?? ""); } } public static void ReplyClassSynergies(ChatCommandContext ctx, ClassManager.PlayerClass playerClass) { List value; bool flag = ClassManager.ClassWeaponStatSynergies.TryGetValue(playerClass, out value); List value2; bool flag2 = ClassManager.ClassBloodStatSynergies.TryGetValue(playerClass, out value2); if (!flag && !flag2) { LocalizationService.HandleReply(ctx, "Couldn't find stat synergies for " + FormatClassName(playerClass) + "..."); return; } List list = new List(); if (flag && value != null && value.Count > 0) { list.AddRange(value.Select((WeaponManager.WeaponStats.WeaponStatType stat) => $"{stat} (Weapon)")); } if (flag2 && value2 != null && value2.Count > 0) { list.AddRange(value2.Select((BloodManager.BloodStats.BloodStatType stat) => $"{stat} (Blood)")); } if (list.Count == 0) { LocalizationService.HandleReply(ctx, "No stat synergies found for " + FormatClassName(playerClass) + "."); return; } LocalizationService.HandleReply(ctx, $"{FormatClassName(playerClass)} stat synergies [x{ConfigService.SynergyMultiplier}]:"); foreach (IReadOnlyList item in list.Batch(6)) { string text = string.Join(", ", item); LocalizationService.HandleReply(ctx, text ?? ""); } } public static void ReplyClassSpells(ChatCommandContext ctx, ClassManager.PlayerClass playerClass) { //IL_0071: Unknown result type (might be due to invalid IL or missing references) List list = Configuration.ParseIntegersFromString(ClassSpellsMap[playerClass]); if (list.Count == 0) { LocalizationService.HandleReply(ctx, FormatClassName(playerClass) + " has no spells configured..."); return; } List list2 = list.Select(delegate(int spell, int index) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) string classSpellName2 = GetClassSpellName(new PrefabGUID(spell)); return $"{index + 1}| {classSpellName2}"; }).ToList(); if (!ConfigService.DefaultClassSpell.Equals(0)) { string classSpellName = GetClassSpellName(new PrefabGUID(ConfigService.DefaultClassSpell)); list2.Insert(0, $"{0}| {classSpellName}"); } LocalizationService.HandleReply(ctx, FormatClassName(playerClass) + " spells:"); foreach (IReadOnlyList item in list2.Batch(4)) { string text = string.Join(", ", item); LocalizationService.HandleReply(ctx, text ?? ""); } } public static bool TryParseClass(string classType, out ClassManager.PlayerClass parsedClassType) { if (Enum.TryParse(classType, ignoreCase: true, out parsedClassType)) { return true; } parsedClassType = Enum.GetValues(typeof(ClassManager.PlayerClass)).Cast().FirstOrDefault((ClassManager.PlayerClass pc) => pc.ToString().Contains(classType, StringComparison.CurrentCultureIgnoreCase)); if (!parsedClassType.Equals(ClassManager.PlayerClass.BloodKnight)) { return true; } parsedClassType = ClassManager.PlayerClass.BloodKnight; return false; } public static void UpdatePlayerClass(Entity character, ClassManager.PlayerClass parsedClassType, ulong steamId) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (steamId.HasClass(out var playerClass)) { _ = playerClass.HasValue; } steamId.SetPlayerClass(parsedClassType); Buffs.RefreshStats(character); } public static void RemoveShift(Entity character) { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: 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_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; Entity abilityGroup = ((ServerGameManager)(ref serverGameManager)).GetAbilityGroup(character, 3); if (abilityGroup.Exists() && abilityGroup.Has()) { Entity val = Entity.Null; bool flag = false; Entity @null = Entity.Null; serverGameManager = ServerGameManager; DynamicBuffer val2 = default(DynamicBuffer); if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(character, ref val2)) { PrefabGUID key = abilityGroup.Read(); int num = -1; for (int i = 0; i < val2.Length; i++) { VBloodAbilityBuffEntry val3 = val2[i]; if (val3.SlotId == 3) { val = val3.ActiveBuff; num = i; break; } } Entity val4 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, character, ref val4, 0) && _abilityJewelMap.TryGetValue(key, out var value)) { foreach (Entity item in value) { if (JewelEquipUtilitiesServer.TryGetEquippedJewel(EntityManager, character, item, ref @null) && @null.Exists()) { break; } } NativeParallelHashMap itemLookup = ItemLookup; if (JewelEquipUtilitiesServer.TryUnequipJewel(EntityManager, ref itemLookup, val4, abilityGroup, true)) { flag = true; } } if (num >= 0 && num < val2.Length && val.Exists()) { val2.RemoveAt(num); DestroyUtility.Destroy(EntityManager, val, (DestroyDebugReason)13, (string)null, 0); } } ((SystemBase)ReplaceAbilityOnSlotSystem).OnUpdate(); int num2 = default(int); if (flag && InventoryUtilities.TryGetItemSlot(EntityManager, character, @null, ref num2)) { JewelEquipUtilitiesServer.TryEquipJewel(ref _entityManagerRef, ref _prefabLookupMap, character, num2); } RemoveNPCSpell(character); } else { RemoveNPCSpell(character); } } public static void UpdateShift(ChatCommandContext ctx, Entity character, PrefabGUID spellPrefabGUID) { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0013: 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_02a9: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b5: Unknown result type (might be due to invalid IL or missing references) //IL_02b7: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_02e6: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01be: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01eb: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_02fb: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_030b: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_0267: Unknown result type (might be due to invalid IL or missing references) //IL_027c: Unknown result type (might be due to invalid IL or missing references) //IL_027f: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020b: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_038b: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_040c: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_041e: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03af: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_03bb: Unknown result type (might be due to invalid IL or missing references) //IL_03df: Unknown result type (might be due to invalid IL or missing references) //IL_03e4: Unknown result type (might be due to invalid IL or missing references) //IL_03e6: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03ef: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) Entity entity = default(Entity); ServerGameManager serverGameManager; if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(spellPrefabGUID, ref entity) && entity.TryGetComponent(out VBloodAbilityData vBloodAbilityData)) { bool flag = false; Entity @null = Entity.Null; Entity null2 = Entity.Null; serverGameManager = ServerGameManager; Entity abilityGroup = ((ServerGameManager)(ref serverGameManager)).GetAbilityGroup(character, 3); string classSpellName = GetClassSpellName(spellPrefabGUID); if (abilityGroup.Exists()) { serverGameManager = ServerGameManager; DynamicBuffer val = default(DynamicBuffer); if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(character, ref val)) { Entity val2 = Entity.Null; PrefabGUID val3 = abilityGroup.Read(); int num = -1; if (((PrefabGUID)(ref spellPrefabGUID)).Equals(val3)) { LocalizationService.HandleReply(ctx, "Shift spell: " + classSpellName + ""); return; } for (int i = 0; i < val.Length; i++) { VBloodAbilityBuffEntry val4 = val[i]; if (((PrefabGUID)(ref val4.ActiveAbility)).Equals(val3) && val4.SlotId == 3) { val2 = val4.ActiveBuff; num = i; break; } } if (InventoryUtilities.TryGetInventoryEntity(EntityManager, character, ref @null, 0) && _abilityJewelMap.TryGetValue(val3, out var value)) { foreach (Entity item in value) { if (JewelEquipUtilitiesServer.TryGetEquippedJewel(EntityManager, character, item, ref null2) && null2.Exists()) { break; } } NativeParallelHashMap itemLookup = ItemLookup; if (JewelEquipUtilitiesServer.TryUnequipJewel(EntityManager, ref itemLookup, @null, abilityGroup, true)) { flag = true; } } if (num >= 0 && num < val.Length && val2.Exists()) { val.RemoveAt(num); DestroyUtility.Destroy(EntityManager, val2, (DestroyDebugReason)13, (string)null, 0); } } } VBloodAbilityUtilities.InstantiateBuff(EntityManager, ActivateVBloodAbilitySystem._BuffSpawnerSystemData, character, PrefabCollectionSystem._PrefabGuidToEntityMap[_vBloodAbilityBuff], spellPrefabGUID, 3); serverGameManager = ServerGameManager; DynamicBuffer val5 = default(DynamicBuffer); if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(character, ref val5)) { Enumerator enumerator2 = val5.GetEnumerator(); while (enumerator2.MoveNext()) { VBloodAbilityBuffEntry current2 = enumerator2.Current; PrefabGUID activeAbility = current2.ActiveAbility; if (((PrefabGUID)(ref activeAbility)).Equals(spellPrefabGUID)) { current2.ActiveBuff.With((VExtensions.WithRefHandler)delegate(ref VBloodAbilityReplaceBuff vBloodAbilityReplaceBuff) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) vBloodAbilityReplaceBuff.AbilityType = vBloodAbilityData.AbilityType; }); break; } } } ((SystemBase)ReplaceAbilityOnSlotSystem).OnUpdate(); int num2 = default(int); if (flag && InventoryUtilities.TryGetItemSlot(EntityManager, character, null2, ref num2)) { JewelEquipUtilitiesServer.TryEquipJewel(ref _entityManagerRef, ref _prefabLookupMap, character, num2); } LocalizationService.HandleReply(ctx, "Shift spell: " + classSpellName + ""); } else { if (!((PrefabGUID)(ref spellPrefabGUID)).HasValue()) { return; } Entity null3 = Entity.Null; Entity null4 = Entity.Null; serverGameManager = ServerGameManager; Entity abilityGroup2 = ((ServerGameManager)(ref serverGameManager)).GetAbilityGroup(character, 3); string classSpellName2 = GetClassSpellName(spellPrefabGUID); if (abilityGroup2.Exists()) { serverGameManager = ServerGameManager; DynamicBuffer val6 = default(DynamicBuffer); if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(character, ref val6)) { bool flag2 = false; Entity val7 = Entity.Null; PrefabGUID val8 = abilityGroup2.Read(); int num3 = -1; if (((PrefabGUID)(ref spellPrefabGUID)).Equals(val8)) { LocalizationService.HandleReply(ctx, "Shift spell: " + classSpellName2 + ""); return; } for (int j = 0; j < val6.Length; j++) { VBloodAbilityBuffEntry val9 = val6[j]; if (((PrefabGUID)(ref val9.ActiveAbility)).Equals(val8) && val9.SlotId == 3) { val7 = val9.ActiveBuff; num3 = j; break; } } if (InventoryUtilities.TryGetInventoryEntity(EntityManager, character, ref null3, 0) && _abilityJewelMap.TryGetValue(val8, out var value2)) { foreach (Entity item2 in value2) { if (JewelEquipUtilitiesServer.TryGetEquippedJewel(EntityManager, character, item2, ref null4) && null4.Exists()) { break; } } NativeParallelHashMap itemLookup2 = ItemLookup; if (JewelEquipUtilitiesServer.TryUnequipJewel(EntityManager, ref itemLookup2, null3, abilityGroup2, true)) { flag2 = true; } } if (num3 >= 0 && num3 < val6.Length && val7.Exists()) { val6.RemoveAt(num3); DestroyUtility.Destroy(EntityManager, val7, (DestroyDebugReason)13, (string)null, 0); } HandleNPCSpell(character, spellPrefabGUID); int num4 = default(int); if (flag2 && InventoryUtilities.TryGetItemSlot(EntityManager, character, null4, ref num4)) { JewelEquipUtilitiesServer.TryEquipJewel(ref _entityManagerRef, ref _prefabLookupMap, character, num4); } LocalizationService.HandleReply(ctx, "Shift spell: " + classSpellName2 + ""); return; } } HandleNPCSpell(character, spellPrefabGUID); LocalizationService.HandleReply(ctx, "Shift spell: " + classSpellName2 + ""); } } private static void RemoveNPCSpell(Entity character) { //IL_0000: 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) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) Entity val = Entity.Null; DynamicBuffer val2 = character.ReadBuffer(); for (int i = 0; i < val2.Length; i++) { BuffBuffer val3 = val2[i]; if (val3.PrefabGuid.GetPrefabName().StartsWith("EquipBuff_Weapon")) { val = val3.Entity; break; } } DynamicBuffer val4 = val.ReadBuffer(); int num = -1; for (int j = 0; j < val4.Length; j++) { if (val4[j].Slot == 3) { num = j; break; } } if (num >= 0 && num < val4.Length) { val4.RemoveAt(num); } ServerGameManager serverGameManager = ServerGameManager; ((ServerGameManager)(ref serverGameManager)).ModifyAbilityGroupOnSlot(val, character, 3, PrefabGUID.Empty, 0); } private static void HandleNPCSpell(Entity character, PrefabGUID spellPrefabGUID) { //IL_0000: 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) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) Entity val = Entity.Null; DynamicBuffer val2 = character.ReadBuffer(); for (int i = 0; i < val2.Length; i++) { BuffBuffer val3 = val2[i]; if (val3.PrefabGuid.GetPrefabName().StartsWith("EquipBuff_Weapon")) { val = val3.Entity; break; } } DynamicBuffer val4 = val.ReadBuffer(); int num = -1; for (int j = 0; j < val4.Length; j++) { if (val4[j].Slot == 3) { num = j; break; } } if (num >= 0 && num < val4.Length) { val4.RemoveAt(num); } ReplaceAbilityOnSlotBuff val5 = default(ReplaceAbilityOnSlotBuff); val5.Slot = 3; val5.NewGroupId = spellPrefabGUID; val5.CopyCooldown = true; val5.Priority = 0; ReplaceAbilityOnSlotBuff val6 = val5; val4.Add(val6); ServerGameManager serverGameManager = ServerGameManager; ((ServerGameManager)(ref serverGameManager)).ModifyAbilityGroupOnSlot(val, character, 3, spellPrefabGUID, 0); } public static string FormatClassName(ClassManager.PlayerClass classType, bool withSpaces = true) { string text = (withSpaces ? _classNameRegex.Replace(classType.ToString(), " $1") : classType.ToString()); if (_classColorMap.TryGetValue(classType, out var value)) { return $"{text}"; } return text; } public static ClassManager.PlayerClass? ParseClassFromInput(ChatCommandContext ctx, string input) { if (int.TryParse(input, out var result)) { result--; if (!Enum.IsDefined(typeof(ClassManager.PlayerClass), result)) { LocalizationService.HandleReply(ctx, "Invalid class, use '.class l' to see options."); return null; } return (ClassManager.PlayerClass)result; } if (!TryParseClassName(input, out var parsedClassType)) { LocalizationService.HandleReply(ctx, "Invalid class, use '.class l' to see options."); return null; } return parsedClassType; } private static string GetClassSpellName(PrefabGUID prefabGuid) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) string text = prefabGuid.GetLocalizedName(); if (string.IsNullOrEmpty(text) || text.Equals("No Name") || text.Equals("Primary Attack")) { text = prefabGuid.GetPrefabName(); } int num = text.IndexOf("PrefabGuid"); if (num > 0) { text = text.Substring(0, num).TrimEnd(); } return text; } public static void GetAbilityJewels() { //IL_0000: Unknown result type (might be due to invalid IL or missing references) _jewelQueryDesc = EntityManager.CreateQueryDesc(_jewelComponents, null, null, _typeIndices, (EntityQueryOptions)195); GetAbilityJewelsRoutine().Start(); } private static IEnumerator GetAbilityJewelsRoutine() { yield return EntityQueries.QueryResultStreamAsync(_jewelQueryDesc, delegate(EntityQueries.QueryResultStream stream) { //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Expected O, but got Unknown //IL_001b: 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_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) try { using (stream) { foreach (EntityQueries.QueryResult result in stream.GetResults()) { Entity entity = result.Entity; PrefabGUID prefabGuid = result.ResolveComponentData(); JewelInstance val = result.ResolveComponentData(); if (((PrefabGUID)(ref val.OverrideAbilityType)).HasValue()) { if (!_abilityJewelMap.TryGetValue(val.OverrideAbilityType, out var value)) { value = new List(); _abilityJewelMap[val.OverrideAbilityType] = value; } string text = prefabGuid.GetPrefabName().Split(" ", 2)[0]; if (!text.EndsWith("T01") && !text.EndsWith("T02") && !text.EndsWith("T03") && !text.EndsWith("T04")) { value.Add(entity); } } } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(28, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("GenerateAbilityJewelMap() - "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log.LogWarning(val2); } }); } public static bool TryParseClassName(string className, out ClassManager.PlayerClass parsedClassType) { if (Enum.TryParse(className, ignoreCase: true, out parsedClassType)) { return true; } parsedClassType = Enum.GetValues(typeof(ClassManager.PlayerClass)).Cast().FirstOrDefault((ClassManager.PlayerClass ct) => ct.ToString().Contains(className, StringComparison.CurrentCultureIgnoreCase)); if (!parsedClassType.Equals(ClassManager.PlayerClass.BloodKnight)) { return true; } parsedClassType = ClassManager.PlayerClass.BloodKnight; return false; } public static void ApplyClassBuffs(Entity player, ulong steamId) { //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) if (steamId.HasClass(out var playerClass) || !playerClass.HasValue) { return; } List classBuffs = GetClassBuffs(steamId); if (!classBuffs.Any()) { return; } int num = ConfigService.MaxLevel / classBuffs.Count; int num2; if (ConfigService.LevelingSystem) { num2 = LevelingSystem.GetLevel(steamId); } else { Equipment val = player.Read(); num2 = (int)((Equipment)(ref val)).GetFullLevel(); } if (ConfigService.PrestigeSystem && steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges[PrestigeType.Experience] > 0) { num2 = ConfigService.MaxLevel; } if (num <= 0) { return; } int num3 = num2 / num; if (num3 > 0 && num3 <= classBuffs.Count) { num3 = Math.Min(num3, classBuffs.Count); for (int i = 0; i < num3; i++) { Buffs.TryApplyPermanentBuff(player, classBuffs[i]); } } } public static IEnumerator GlobalSyncClassBuffs(ChatCommandContext ctx) { List list = new List(); list.AddRange(PlayerService.SteamIdPlayerInfoCache.Values); List playerCache = list; foreach (PlayerService.PlayerInfo item in playerCache) { Misc.PlayerBoolsManager.SetPlayerBool(item.User.PlatformId, "Passives", value: false); RemoveAllClassBuffs(item.CharEntity); } yield return _longDelay; foreach (PlayerService.PlayerInfo item2 in playerCache) { ulong platformId = item2.User.PlatformId; Misc.PlayerBoolsManager.SetPlayerBool(platformId, "Passives", value: true); ApplyClassBuffs(item2.CharEntity, platformId); } ctx.Reply("Removed all class buffs then applied current class buffs for all players."); } public static void GlobalPurgeClassBuffs(ChatCommandContext ctx) { //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) List list = new List(); list.AddRange(PlayerService.SteamIdPlayerInfoCache.Values); foreach (PlayerService.PlayerInfo item in list) { Misc.PlayerBoolsManager.SetPlayerBool(item.User.PlatformId, "Passives", value: false); RemoveAllClassBuffs(item.CharEntity); } ctx.Reply("Removed all class buffs for all players."); } public static string FormatModifyUnitStatBuffer(Entity buffEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) if (buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { List list = new List(); Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { ModifyUnitStatBuff_DOTS current = enumerator.Current; UnitStatType statType = current.StatType; string value = ((object)(UnitStatType)(ref statType)).ToString(); float value2 = current.Value; WeaponManager.WeaponStats.WeaponStatType result; string value3 = ((!Enum.TryParse(value, out result) || !WeaponManager.WeaponStats.WeaponStatFormats.ContainsKey(result)) ? FormatPercentStatValue(value2) : FormatWeaponStatValue(result, value2)); string item = $"{value}: {value3}"; list.Add(item); } return string.Join(", ", list); } return string.Empty; } private static string FormatPercentStatValue(float value) { return (value * 100f).ToString("F0") + "%"; } private static string FormatWeaponStatValue(WeaponManager.WeaponStats.WeaponStatType statType, float value) { if (WeaponManager.WeaponStats.WeaponStatFormats.TryGetValue(statType, out var value2)) { return value2 switch { "integer" => ((int)value).ToString(), "decimal" => value.ToString("F2"), "percentage" => (value * 100f).ToString("F1") + "%", _ => value.ToString(), }; } return FormatPercentStatValue(value); } static Classes() { //IL_0000: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Expected O, but got Unknown //IL_0028: 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_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_0175: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021f: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_0251: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0269: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_028d: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02fb: Unknown result type (might be due to invalid IL or missing references) //IL_0307: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0345: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_0369: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_038d: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03b1: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03ef: Unknown result type (might be due to invalid IL or missing references) //IL_03fb: Unknown result type (might be due to invalid IL or missing references) //IL_0407: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0437: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_04a5: Unknown result type (might be due to invalid IL or missing references) //IL_04ca: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_0514: Unknown result type (might be due to invalid IL or missing references) //IL_053a: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05f7: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_06b4: Unknown result type (might be due to invalid IL or missing references) //IL_06cd: Unknown result type (might be due to invalid IL or missing references) //IL_06f2: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ef: Unknown result type (might be due to invalid IL or missing references) //IL_0808: Unknown result type (might be due to invalid IL or missing references) Dictionary> dictionary = new Dictionary>(); PrefabGUID key = default(PrefabGUID); ((PrefabGUID)(ref key))..ctor(-500035095); dictionary[key] = new Dictionary { { (UnitStatType)4, 200f } }; PrefabGUID key2 = default(PrefabGUID); ((PrefabGUID)(ref key2))..ctor(-567664068); dictionary[key2] = new Dictionary { { (UnitStatType)0, 10f } }; PrefabGUID key3 = default(PrefabGUID); ((PrefabGUID)(ref key3))..ctor(1178148717); dictionary[key3] = new Dictionary { { (UnitStatType)62, 0.05f } }; PrefabGUID key4 = default(PrefabGUID); ((PrefabGUID)(ref key4))..ctor(-753729496); dictionary[key4] = new Dictionary { { (UnitStatType)8, 0.25f } }; PrefabGUID key5 = default(PrefabGUID); ((PrefabGUID)(ref key5))..ctor(1966156848); dictionary[key5] = new Dictionary { { (UnitStatType)61, 0.1f } }; PrefabGUID key6 = default(PrefabGUID); ((PrefabGUID)(ref key6))..ctor(-1281560674); dictionary[key6] = new Dictionary { { (UnitStatType)75, 0.5f } }; PrefabGUID key7 = default(PrefabGUID); ((PrefabGUID)(ref key7))..ctor(-965685546); dictionary[key7] = new Dictionary { { (UnitStatType)23, 0.5f } }; PrefabGUID key8 = default(PrefabGUID); ((PrefabGUID)(ref key8))..ctor(249601863); dictionary[key8] = new Dictionary { { (UnitStatType)27, 0.25f } }; PrefabGUID key9 = default(PrefabGUID); ((PrefabGUID)(ref key9))..ctor(-1240045321); dictionary[key9] = new Dictionary { { (UnitStatType)71, 0.2f } }; PrefabGUID key10 = default(PrefabGUID); ((PrefabGUID)(ref key10))..ctor(-1161614593); dictionary[key10] = new Dictionary { { (UnitStatType)59, 0.25f } }; PrefabGUID key11 = default(PrefabGUID); ((PrefabGUID)(ref key11))..ctor(-2026669113); dictionary[key11] = new Dictionary { { (UnitStatType)5, 0.5f } }; PrefabGUID key12 = default(PrefabGUID); ((PrefabGUID)(ref key12))..ctor(495242428); dictionary[key12] = new Dictionary { { (UnitStatType)29, 0.2f } }; PrefabGUID key13 = default(PrefabGUID); ((PrefabGUID)(ref key13))..ctor(-1630759636); dictionary[key13] = new Dictionary { { (UnitStatType)63, 0.2f } }; PrefabGUID key14 = default(PrefabGUID); ((PrefabGUID)(ref key14))..ctor(-692773400); dictionary[key14] = new Dictionary { { (UnitStatType)30, 0.5f } }; PrefabGUID key15 = default(PrefabGUID); ((PrefabGUID)(ref key15))..ctor(803329072); dictionary[key15] = new Dictionary { { (UnitStatType)61, 0.15f } }; PrefabGUID key16 = default(PrefabGUID); ((PrefabGUID)(ref key16))..ctor(-1100642493); dictionary[key16] = new Dictionary { { (UnitStatType)7, 0.2f } }; PrefabGUID key17 = default(PrefabGUID); ((PrefabGUID)(ref key17))..ctor(505940050); dictionary[key17] = new Dictionary(); PrefabGUID key18 = default(PrefabGUID); ((PrefabGUID)(ref key18))..ctor(-104461547); dictionary[key18] = new Dictionary { { (UnitStatType)8, 0.2f } }; PrefabGUID key19 = default(PrefabGUID); ((PrefabGUID)(ref key19))..ctor(1777596670); dictionary[key19] = new Dictionary { { (UnitStatType)25, 10f } }; PrefabGUID key20 = default(PrefabGUID); ((PrefabGUID)(ref key20))..ctor(2070760442); dictionary[key20] = new Dictionary { { (UnitStatType)28, 0.1f } }; PrefabGUID key21 = default(PrefabGUID); ((PrefabGUID)(ref key21))..ctor(32536495); dictionary[key21] = new Dictionary { { (UnitStatType)31, 0.15f } }; PrefabGUID key22 = default(PrefabGUID); ((PrefabGUID)(ref key22))..ctor(-753729496); dictionary[key22] = new Dictionary(); PrefabGUID key23 = default(PrefabGUID); ((PrefabGUID)(ref key23))..ctor(-567664068); dictionary[key23] = new Dictionary { { (UnitStatType)32, 0.5f } }; PrefabGUID key24 = default(PrefabGUID); ((PrefabGUID)(ref key24))..ctor(-1630759636); dictionary[key24] = new Dictionary { { (UnitStatType)72, 0.2f } }; PrefabGUID key25 = default(PrefabGUID); ((PrefabGUID)(ref key25))..ctor(-692773400); dictionary[key25] = new Dictionary { { (UnitStatType)73, 0.25f } }; PrefabGUID key26 = default(PrefabGUID); ((PrefabGUID)(ref key26))..ctor(908755409); dictionary[key26] = new Dictionary(); PrefabGUID key27 = default(PrefabGUID); ((PrefabGUID)(ref key27))..ctor(-176045156); dictionary[key27] = new Dictionary { { (UnitStatType)75, 0.25f } }; BuffStatBonuses = dictionary; ClassWeaponBloodMap = new Dictionary { { ClassManager.PlayerClass.BloodKnight, (ConfigService.BloodKnightWeaponSynergies, ConfigService.BloodKnightBloodSynergies) }, { ClassManager.PlayerClass.DemonHunter, (ConfigService.DemonHunterWeaponSynergies, ConfigService.DemonHunterBloodSynergies) }, { ClassManager.PlayerClass.VampireLord, (ConfigService.VampireLordWeaponSynergies, ConfigService.VampireLordBloodSynergies) }, { ClassManager.PlayerClass.ShadowBlade, (ConfigService.ShadowBladeWeaponSynergies, ConfigService.ShadowBladeBloodSynergies) }, { ClassManager.PlayerClass.ArcaneSorcerer, (ConfigService.ArcaneSorcererWeaponSynergies, ConfigService.ArcaneSorcererBloodSynergies) }, { ClassManager.PlayerClass.DeathMage, (ConfigService.DeathMageWeaponSynergies, ConfigService.DeathMageBloodSynergies) } }; ClassWeaponBloodEnumMap = new Dictionary, List)> { { ClassManager.PlayerClass.BloodKnight, ((from e in Configuration.ParseEnumsFromString(ConfigService.BloodKnightWeaponSynergies) select (int)e).ToList(), (from e in Configuration.ParseEnumsFromString(ConfigService.BloodKnightBloodSynergies) select (int)e).ToList()) }, { ClassManager.PlayerClass.DemonHunter, ((from e in Configuration.ParseEnumsFromString(ConfigService.DemonHunterWeaponSynergies) select (int)e).ToList(), (from e in Configuration.ParseEnumsFromString(ConfigService.DemonHunterBloodSynergies) select (int)e).ToList()) }, { ClassManager.PlayerClass.VampireLord, ((from e in Configuration.ParseEnumsFromString(ConfigService.VampireLordWeaponSynergies) select (int)e).ToList(), (from e in Configuration.ParseEnumsFromString(ConfigService.VampireLordBloodSynergies) select (int)e).ToList()) }, { ClassManager.PlayerClass.ShadowBlade, ((from e in Configuration.ParseEnumsFromString(ConfigService.ShadowBladeWeaponSynergies) select (int)e).ToList(), (from e in Configuration.ParseEnumsFromString(ConfigService.ShadowBladeBloodSynergies) select (int)e).ToList()) }, { ClassManager.PlayerClass.ArcaneSorcerer, ((from e in Configuration.ParseEnumsFromString(ConfigService.ArcaneSorcererWeaponSynergies) select (int)e).ToList(), (from e in Configuration.ParseEnumsFromString(ConfigService.ArcaneSorcererBloodSynergies) select (int)e).ToList()) }, { ClassManager.PlayerClass.DeathMage, ((from e in Configuration.ParseEnumsFromString(ConfigService.DeathMageWeaponSynergies) select (int)e).ToList(), (from e in Configuration.ParseEnumsFromString(ConfigService.DeathMageBloodSynergies) select (int)e).ToList()) } }; ClassSpellsMap = new Dictionary { { ClassManager.PlayerClass.BloodKnight, ConfigService.BloodKnightSpells }, { ClassManager.PlayerClass.DemonHunter, ConfigService.DemonHunterSpells }, { ClassManager.PlayerClass.VampireLord, ConfigService.VampireLordSpells }, { ClassManager.PlayerClass.ShadowBlade, ConfigService.ShadowBladeSpells }, { ClassManager.PlayerClass.ArcaneSorcerer, ConfigService.ArcaneSorcererSpells }, { ClassManager.PlayerClass.DeathMage, ConfigService.DeathMageSpells } }; } } internal static class Configuration { public static void GetExcludedFamiliars() { //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) List list = new List(); list.AddRange(((IEnumerable)ParseIntegersFromString(ConfigService.BannedUnits)).Select((Func)((int unit) => new PrefabGUID(unit)))); foreach (PrefabGUID item in list) { PrefabGUID current = item; if (((PrefabGUID)(ref current)).HasValue()) { FamiliarUnlockSystem.ConfiguredPrefabGuidBans.Add(current); } } foreach (string item2 in (from s in ConfigService.BannedTypes.Split(',') select s.Trim()).ToList()) { if (Enum.TryParse(item2, out UnitCategory result)) { FamiliarUnlockSystem.ConfiguredCategoryBans.Add(result); } } } public static List ParseIntegersFromString(string configString) { if (string.IsNullOrWhiteSpace(configString)) { return new List(); } List list = new List(); string[] array = configString.Split(','); for (int i = 0; i < array.Length; i++) { string text = array[i].Trim(); if (!string.IsNullOrEmpty(text) && int.TryParse(text, out var result)) { list.Add(result); } } return list; } public static List ParseEnumsFromString(string configString) where T : struct, Enum { if (string.IsNullOrWhiteSpace(configString)) { return new List(); } List list = new List(); string[] array = configString.Split(','); for (int i = 0; i < array.Length; i++) { if (Enum.TryParse(array[i].Trim(), ignoreCase: true, out var result)) { list.Add(result); } } return list; } public static void GetQuestRewardItems() { //IL_0080: Unknown result type (might be due to invalid IL or missing references) List list = ParseIntegersFromString(ConfigService.QuestRewardAmounts); List list2 = new List(list.Count); list2.AddRange(list); List list3 = list2; List list4 = new List(); list4.AddRange(((IEnumerable)ParseIntegersFromString(ConfigService.QuestRewards)).Select((Func)((int itemPrefab) => new PrefabGUID(itemPrefab)))); List list5 = list4; if (list5.Count != list3.Count) { Core.Log.LogWarning((object)"QuestRewards and QuestRewardAmounts are not the same length, please correct this for predictable behavior when receiving quest rewards!"); } for (int i = 0; i < list5.Count; i++) { QuestSystem.QuestRewards.TryAdd(list5[i], list3[i]); } } public static void GetStarterKitItems() { //IL_0080: Unknown result type (might be due to invalid IL or missing references) List list = ParseIntegersFromString(ConfigService.KitQuantities); List list2 = new List(list.Count); list2.AddRange(list); List list3 = list2; List list4 = new List(); list4.AddRange(((IEnumerable)ParseIntegersFromString(ConfigService.KitPrefabs)).Select((Func)((int itemPrefab) => new PrefabGUID(itemPrefab)))); List list5 = list4; if (list5.Count != list3.Count) { Core.Log.LogWarning((object)"KitPrefabs and KitQuantities are not the same length, please correct this for predictable behavior when using the kit command!"); } for (int i = 0; i < list5.Count; i++) { MiscCommands.StarterKitItemPrefabGUIDs.TryAdd(list5[i], list3[i]); } } public static void GetClassSpellCooldowns() { //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) foreach (KeyValuePair item in Classes.ClassSpellsMap) { List list = new List(); list.AddRange(((IEnumerable)ParseIntegersFromString(item.Value)).Select((Func)((int x) => new PrefabGUID(x)))); List list2 = list; foreach (PrefabGUID item2 in list2) { AbilityRunScriptsSystemPatch.AddClassSpell(item2, list2.IndexOf(item2)); } } } } internal static class EntityQueries { public abstract class ComponentHandleBase { public abstract TypeIndex TypeIndex { get; } public abstract object GetValueAt(ArchetypeChunk chunk, int index); } public class ComponentHandle : ComponentHandleBase where T : unmanaged { public override TypeIndex TypeIndex => new ComponentType(Il2CppType.Of(), (AccessMode)0).TypeIndex; public override object GetValueAt(ArchetypeChunk chunk, int index) { //IL_0000: 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) //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_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; ComponentTypeHandle componentTypeHandle = ((EntityManager)(ref entityManager)).GetComponentTypeHandle(true); if (!((ArchetypeChunk)(ref chunk)).Has(ref componentTypeHandle)) { return default(T); } return ((ArchetypeChunk)(ref chunk)).GetNativeArray(ref componentTypeHandle)[index]; } } public readonly struct QueryDesc { public EntityQuery EntityQuery { get; } public ComponentType[] ComponentTypes { get; } public int[] TypeIndices { get; } public QueryDesc(EntityQuery entityQuery, ComponentType[] types, int[] indices) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) EntityQuery = entityQuery; ComponentTypes = types; TypeIndices = indices; } } public readonly struct QueryResult { public readonly Entity Entity; public readonly ComponentType[] ComponentTypes; public readonly object[] ComponentData; public QueryResult(Entity entity, ComponentType[] componentTypes, object[] componentData) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) Entity = entity; ComponentTypes = componentTypes; ComponentData = componentData; } } public readonly struct QueryResultStream : IDisposable { public readonly NativeArray ArchetypeChunks; public readonly EntityTypeHandle EntityHandle; public readonly EntityStorageInfoLookup EntityStorage; public readonly ComponentType[] ComponentTypes; public readonly ComponentHandleBase[] ComponentHandles; public QueryResultStream(NativeArray chunks, ComponentType[] types, int[] indices) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) ArchetypeChunks = chunks; EntityHandle = EntityTypeHandle; EntityStorage = EntityStorageInfoLookup; ComponentTypes = (ComponentType[])(object)new ComponentType[indices.Length]; ComponentHandles = new ComponentHandleBase[indices.Length]; for (int i = 0; i < indices.Length; i++) { ComponentTypes[i] = types[indices[i]]; ComponentHandles[i] = ComponentRegistry.GetHandle(ComponentTypes[i].TypeIndex); } } public IEnumerable GetResults() { int chunkIndex = 0; Enumerator enumerator = ArchetypeChunks.GetEnumerator(); while (enumerator.MoveNext()) { ArchetypeChunk current = enumerator.Current; QueryResult[] array = null; try { array = ProcessChunk(current); } catch (Exception) { } if (array != null) { QueryResult[] array2 = array; for (int i = 0; i < array2.Length; i++) { yield return array2[i]; } } chunkIndex++; } } private QueryResult[] ProcessChunk(ArchetypeChunk chunk) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_0031: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) NativeArray nativeArray = ((ArchetypeChunk)(ref chunk)).GetNativeArray(EntityTypeHandle); List list = new List(((ArchetypeChunk)(ref chunk)).Count); for (int i = 0; i < ((ArchetypeChunk)(ref chunk)).Count; i++) { Entity val = nativeArray[i]; EntityStorageInfoLookup entityStorage = EntityStorage; if (((EntityStorageInfoLookup)(ref entityStorage)).Exists(val)) { object[] array = new object[ComponentHandles.Length]; for (int j = 0; j < ComponentHandles.Length; j++) { array[j] = ComponentHandles[j].GetValueAt(chunk, i); } list.Add(new QueryResult(val, ComponentTypes, array)); } } return list.ToArray(); } public void Dispose() { //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_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) if (ArchetypeChunks.IsCreated) { ArchetypeChunks.Dispose(); } } } private static EntityManager EntityManager => Core.EntityManager; private static EntityTypeHandle EntityTypeHandle { get { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).GetEntityTypeHandle(); } } private static EntityStorageInfoLookup EntityStorageInfoLookup { get { //IL_0000: 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) //IL_0008: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).GetEntityStorageInfoLookup(); } } public static IEnumerator QueryResultStreamAsync(QueryDesc queryDesc, Action onReady) { EntityQuery entityQuery = queryDesc.EntityQuery; ComponentType[] types = queryDesc.ComponentTypes; int[] indices = queryDesc.TypeIndices; JobHandle handle = default(JobHandle); NativeArray chunks = ((EntityQuery)(ref entityQuery)).CreateArchetypeChunkArrayAsync(AllocatorHandle.op_Implicit((Allocator)3), ref handle); while (!((JobHandle)(ref handle)).IsCompleted) { yield return null; } ((JobHandle)(ref handle)).Complete(); QueryResultStream obj = new QueryResultStream(chunks, types, indices); onReady?.Invoke(obj); } public static T ResolveComponentData(this QueryResult result) where T : struct { //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) int num = result.ComponentTypes.Length; TypeIndex typeIndex = new ComponentType(Il2CppType.Of(), (AccessMode)0).TypeIndex; for (int i = 0; i < num; i++) { if (((TypeIndex)(ref result.ComponentTypes[i].TypeIndex)).Equals(typeIndex)) { return (T)result.ComponentData[i]; } } return default(T); } public static QueryDesc CreateQueryDesc(this EntityManager entityManager, ComponentType[] allTypes, ComponentType[] anyTypes = null, ComponentType[] noneTypes = null, int[] typeIndices = null, EntityQueryOptions? options = null) { //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) if (allTypes == null || allTypes.Length == 0) { throw new ArgumentException("AllTypes must contain at least one component!", "allTypes"); } EntityQueryBuilder val = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref val))..ctor(AllocatorHandle.op_Implicit((Allocator)2)); ComponentType[] array = allTypes; foreach (ComponentType val2 in array) { ((EntityQueryBuilder)(ref val)).AddAll(val2); } if (anyTypes != null) { array = anyTypes; foreach (ComponentType val3 in array) { ((EntityQueryBuilder)(ref val)).AddAny(val3); } } if (noneTypes != null) { array = noneTypes; foreach (ComponentType val4 in array) { ((EntityQueryBuilder)(ref val)).AddNone(val4); } } if (options.HasValue) { ((EntityQueryBuilder)(ref val)).WithOptions(options.Value); } EntityQuery entityQuery = ((EntityManager)(ref entityManager)).CreateEntityQuery(ref val); if (typeIndices == null) { typeIndices = GenerateDefaultIndices(allTypes.Length); } return new QueryDesc(entityQuery, allTypes, typeIndices); } private static int[] GenerateDefaultIndices(int length) { int[] array = new int[length]; for (int i = 0; i < length; i++) { array[i] = i; } return array; } public static EntityQuery BuildEntityQuery(this EntityManager entityManager, ComponentType[] all) { //IL_0003: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) EntityQueryBuilder val = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref val))..ctor(AllocatorHandle.op_Implicit((Allocator)2)); foreach (ComponentType val2 in all) { ((EntityQueryBuilder)(ref val)).AddAll(val2); } return ((EntityManager)(ref entityManager)).CreateEntityQuery(ref val); } public static EntityQuery BuildEntityQuery(this EntityManager entityManager, ComponentType[] all, EntityQueryOptions options) { //IL_0003: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) EntityQueryBuilder val = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref val))..ctor(AllocatorHandle.op_Implicit((Allocator)2)); foreach (ComponentType val2 in all) { ((EntityQueryBuilder)(ref val)).AddAll(val2); } ((EntityQueryBuilder)(ref val)).WithOptions(options); return ((EntityManager)(ref entityManager)).CreateEntityQuery(ref val); } public static EntityQuery BuildEntityQuery(this EntityManager entityManager, ComponentType[] all, ComponentType[] none, EntityQueryOptions options) { //IL_0003: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) EntityQueryBuilder val = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref val))..ctor(AllocatorHandle.op_Implicit((Allocator)2)); ComponentType[] array = all; foreach (ComponentType val2 in array) { ((EntityQueryBuilder)(ref val)).AddAll(val2); } array = none; foreach (ComponentType val3 in array) { ((EntityQueryBuilder)(ref val)).AddNone(val3); } ((EntityQueryBuilder)(ref val)).WithOptions(options); return ((EntityManager)(ref entityManager)).CreateEntityQuery(ref val); } } internal static class ComponentRegistry { public static bool _initialized; private static readonly Dictionary _registeredTypes = new Dictionary(); public static void RegisterComponent() where T : struct { //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) ComponentType val = default(ComponentType); ((ComponentType)(ref val))..ctor(Il2CppType.Of(), (AccessMode)0); _registeredTypes[val.TypeIndex] = typeof(T); } public static EntityQueries.ComponentHandleBase GetHandle(TypeIndex typeIndex) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) if (!_registeredTypes.TryGetValue(typeIndex, out var value)) { throw new InvalidOperationException($"No registered component type for index: {typeIndex}"); } return (EntityQueries.ComponentHandleBase)Activator.CreateInstance(typeof(EntityQueries.ComponentHandle<>).MakeGenericType(value)); } public static void Initialize() { ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); ComponentRegistry.RegisterComponent(); _initialized = true; } } internal static class Familiars { public enum FamiliarEquipmentType { Chest, Weapon, MagicSource, Footgear, Legs, Gloves } public class ActiveFamiliarData { public Entity Familiar { get; set; } = Entity.Null; public Entity Servant { get; set; } = Entity.Null; public int FamiliarId { get; set; } public bool Dismissed { get; set; } public bool IsBinding { get; set; } } public static class ActiveFamiliarManager { private static readonly ConcurrentDictionary _familiarActives = new ConcurrentDictionary(); public static IReadOnlyDictionary ActiveFamiliars => _familiarActives; public static ActiveFamiliarData GetActiveFamiliarData(ulong steamId) { if (!_familiarActives.TryGetValue(steamId, out var value)) { return CreateActiveFamiliarData(steamId); } return value; } public static void UpdateActiveFamiliarData(ulong steamId, Entity familiar, Entity servant, int familiarId, bool isDismissed = false) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) ActiveFamiliarData value = new ActiveFamiliarData { Familiar = familiar, Servant = servant, FamiliarId = familiarId, Dismissed = isDismissed }; _familiarActives[steamId] = value; } private static ActiveFamiliarData CreateActiveFamiliarData(ulong steamId) { //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) ActiveFamiliarData activeFamiliarData = new ActiveFamiliarData(); if (steamId.TryGetPlayerInfo(out var playerInfo)) { Entity val = FindActiveFamiliar(playerInfo.CharEntity); Entity servant = FindFamiliarServant(val); activeFamiliarData.Familiar = val; activeFamiliarData.Servant = servant; PrefabGUID prefabGuid = val.GetPrefabGuid(); activeFamiliarData.FamiliarId = ((PrefabGUID)(ref prefabGuid)).GuidHash; } _familiarActives[steamId] = activeFamiliarData; return activeFamiliarData; } public static void UpdateActiveFamiliarDismissed(ulong steamId, bool dismissed) { if (_familiarActives.TryGetValue(steamId, out var value)) { value.Dismissed = dismissed; _familiarActives[steamId] = value; } } public static void UpdateActiveFamiliarBinding(ulong steamId, bool isBinding) { if (_familiarActives.TryGetValue(steamId, out var value)) { value.IsBinding = isBinding; _familiarActives[steamId] = value; } } public static bool IsBinding(ulong steamId) { if (_familiarActives.TryGetValue(steamId, out var value)) { return value.IsBinding; } return false; } public static bool HasActiveFamiliar(ulong steamId) { //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (_familiarActives.TryGetValue(steamId, out var value)) { return value.Familiar.Exists(); } return false; } public static bool HasDismissedFamiliar(ulong steamId) { //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (_familiarActives.TryGetValue(steamId, out var value) && value.Familiar.Exists()) { return value.Dismissed; } return false; } public static void ResetActiveFamiliarData(ulong steamId) { _familiarActives[steamId] = new ActiveFamiliarData(); } } private static readonly bool _familiarCombat = ConfigService.FamiliarCombat; private static readonly WaitForSeconds _bindingDelay = new WaitForSeconds(0.25f); private static readonly WaitForSeconds _delay = new WaitForSeconds(2f); private static readonly PrefabGUID _bonusStatsBuff = Buffs.BonusPlayerStatsBuff; private static readonly PrefabGUID _defaultEmoteBuff = Buffs.DefaultEmoteBuff; private static readonly PrefabGUID _pveCombatBuff = Buffs.PvECombatBuff; private static readonly PrefabGUID _pvpCombatBuff = Buffs.PvPCombatBuff; private static readonly PrefabGUID _dominateBuff = Buffs.DominateBuff; private static readonly PrefabGUID _takeFlightBuff = Buffs.TakeFlightBuff; private static readonly PrefabGUID _inkCrawlerDeathBuff = Buffs.InkCrawlerDeathBuff; private static readonly PrefabGUID _invulnerableBuff = Buffs.AdminInvulnerableBuff; private static readonly PrefabGUID _disableAggroBuff = Buffs.DisableAggroBuff; private static readonly PrefabGUID _vanishBuff = Buffs.VanishBuff; private static readonly PrefabGUID _interactModeBuff = Buffs.InteractModeBuff; private static readonly PrefabGUID _spiritDouble = PrefabGUIDs.CHAR_Cursed_MountainBeast_SpiritDouble; private static readonly PrefabGUID _highlordGroundSword = PrefabGUIDs.CHAR_Legion_HighLord_GroundSword; private static readonly PrefabGUID _enchantedCross = PrefabGUIDs.CHAR_ChurchOfLight_EnchantedCross; private static readonly PrefabGUID _itemSchematic = PrefabGUIDs.Item_Ingredient_Research_Schematic; private static readonly float3 _southFloat3 = new float3(0f, 0f, -1f); private const float BLOOD_QUALITY_IGNORE = 90f; private static readonly Dictionary _familiarEquipmentMap = new Dictionary { { FamiliarEquipmentType.Chest, (EquipmentType)1 }, { FamiliarEquipmentType.Weapon, (EquipmentType)2 }, { FamiliarEquipmentType.MagicSource, (EquipmentType)3 }, { FamiliarEquipmentType.Footgear, (EquipmentType)4 }, { FamiliarEquipmentType.Legs, (EquipmentType)5 }, { FamiliarEquipmentType.Gloves, (EquipmentType)9 } }; public static readonly Dictionary VBloodNamePrefabGuidMap = new Dictionary { { "Mairwyn the Elementalist", new PrefabGUID(-2013903325) }, { "Clive the Firestarter", new PrefabGUID(1896428751) }, { "Rufus the Foreman", new PrefabGUID(2122229952) }, { "Grayson the Armourer", new PrefabGUID(1106149033) }, { "Errol the Stonebreaker", new PrefabGUID(-2025101517) }, { "Quincey the Bandit King", new PrefabGUID(-1659822956) }, { "Lord Styx the Night Champion", new PrefabGUID(1112948824) }, { "Gorecrusher the Behemoth", new PrefabGUID(-1936575244) }, { "Albert the Duke of Balaton", new PrefabGUID(-203043163) }, { "Matka the Curse Weaver", new PrefabGUID(-910296704) }, { "Alpha the White Wolf", new PrefabGUID(-1905691330) }, { "Terah the Geomancer", new PrefabGUID(-1065970933) }, { "Morian the Stormwing Matriarch", new PrefabGUID(685266977) }, { "Talzur the Winged Horror", new PrefabGUID(-393555055) }, { "Raziel the Shepherd", new PrefabGUID(-680831417) }, { "Vincent the Frostbringer", new PrefabGUID(-29797003) }, { "Octavian the Militia Captain", new PrefabGUID(1688478381) }, { "Meredith the Bright Archer", new PrefabGUID(850622034) }, { "Ungora the Spider Queen", new PrefabGUID(-548489519) }, { "Goreswine the Ravager", new PrefabGUID(577478542) }, { "Leandra the Shadow Priestess", new PrefabGUID(939467639) }, { "Cyril the Cursed Smith", new PrefabGUID(326378955) }, { "Bane the Shadowblade", new PrefabGUID(613251918) }, { "Kriig the Undead General", new PrefabGUID(-1365931036) }, { "Nicholaus the Fallen", new PrefabGUID(153390636) }, { "Foulrot the Soultaker", new PrefabGUID(-1208888966) }, { "Putrid Rat", new PrefabGUID(-2039908510) }, { "Jade the Vampire Hunter", new PrefabGUID(-1968372384) }, { "Tristan the Vampire Hunter", new PrefabGUID(-1449631170) }, { "Ben the Old Wanderer", new PrefabGUID(109969450) }, { "Beatrice the Tailor", new PrefabGUID(-1942352521) }, { "Frostmaw the Mountain Terror", new PrefabGUID(24378719) }, { "Terrorclaw the Ogre", new PrefabGUID(-1347412392) }, { "Keely the Frost Archer", new PrefabGUID(1124739990) }, { "Lidia the Chaos Archer", new PrefabGUID(763273073) }, { "Finn the Fisherman", new PrefabGUID(-2122682556) }, { "Azariel the Sunbringer", new PrefabGUID(114912615) }, { "Sir Magnus the Overseer", new PrefabGUID(-26105228) }, { "Baron du Bouchon the Sommelier", new PrefabGUID(192051202) }, { "Solarus the Immaculate", new PrefabGUID(-740796338) }, { "Kodia the Ferocious Bear", new PrefabGUID(-1391546313) }, { "Ziva the Engineer", new PrefabGUID(172235178) }, { "Adam the Firstborn", new PrefabGUID(1233988687) }, { "Angram the Purifier", new PrefabGUID(106480588) }, { "Voltatia the Power Master", new PrefabGUID(2054432370) }, { "Henry Blackbrew the Doctor", new PrefabGUID(814083983) }, { "Domina the Blade Dancer", new PrefabGUID(-1101874342) }, { "Grethel the Glassblower", new PrefabGUID(910988233) }, { "Christina the Sun Priestess", new PrefabGUID(-99012450) }, { "Maja the Dark Savant", new PrefabGUID(1945956671) }, { "Polora the Feywalker", new PrefabGUID(-484556888) }, { "Simon Belmont the Vampire Hunter", new PrefabGUID(336560131) }, { "General Valencia the Depraved", new PrefabGUID(495971434) }, { "Dracula the Immortal King", new PrefabGUID(-327335305) }, { "General Cassius the Betrayer", new PrefabGUID(-496360395) }, { "General Elena the Hollow", PrefabGUIDs.CHAR_Vampire_IceRanger_VBlood }, { "Willfred the Village Elder", PrefabGUIDs.CHAR_WerewolfChieftain_Human }, { "Sir Erwin the Gallant Cavalier", PrefabGUIDs.CHAR_Militia_Fabian_VBlood }, { "Gaius the Cursed Champion", PrefabGUIDs.CHAR_Undead_ArenaChampion_VBlood }, { "Stavros the Carver", PrefabGUIDs.CHAR_Blackfang_CarverBoss_VBlood }, { "Dantos the Forgebinder", PrefabGUIDs.CHAR_Blackfang_Valyr_VBlood }, { "Lucile the Venom Alchemist", PrefabGUIDs.CHAR_Blackfang_Lucie_VBlood }, { "Jakira the Shadow Huntress", PrefabGUIDs.CHAR_Blackfang_Livith_VBlood }, { "Megara the Serpent Queen", PrefabGUIDs.CHAR_Blackfang_Morgana_VBlood } }; public static readonly ConcurrentDictionary AutoCallMap = new ConcurrentDictionary(); private const float MAX_AGGRO_RANGE = 25f; private const float DISTANCE_AGGRO_BASE = 100f; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; public static IReadOnlyDictionary FamiliarEquipmentMap => _familiarEquipmentMap; public static bool HasActiveFamiliar(this ulong steamId) { return ActiveFamiliarManager.HasActiveFamiliar(steamId); } public static bool HasDismissedFamiliar(this ulong steamId) { return ActiveFamiliarManager.HasDismissedFamiliar(steamId); } public static bool IsBinding(this ulong steamId) { return ActiveFamiliarManager.IsBinding(steamId); } public static Entity FindActiveFamiliar(Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0042: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) if (playerCharacter.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { Entity entity = enumerator.Current.Entity._Entity; if (entity.Has()) { return entity; } } } return Entity.Null; } public static Entity FindFamiliarServant(Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0042: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) if (familiar.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { Entity entity = enumerator.Current.Entity._Entity; if (entity.Has()) { return entity; } } } return Entity.Null; } public static Entity GetActiveFamiliar(Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) return ActiveFamiliarManager.GetActiveFamiliarData(playerCharacter.GetSteamId()).Familiar; } public static Entity GetFamiliarServant(Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) return ActiveFamiliarManager.GetActiveFamiliarData(playerCharacter.GetSteamId()).Servant; } public static Entity GetServantFamiliar(Entity servant) { //IL_0000: 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_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) if (servant.TryGetComponent(out Follower componentData)) { Entity value = componentData.Followed._Value; if (value.Has()) { return value; } } return Entity.Null; } public static Entity GetServantCoffin(Entity servant) { //IL_0000: 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) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) Entity @null = Entity.Null; if (!servant.TryGetComponent(out ServantConnectedCoffin componentData)) { return @null; } return ((NetworkedEntity)(ref componentData.CoffinEntity)).GetEntityOnServer(); } public static void SyncFamiliarServant(Entity familiar, Entity servant) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) float familiarHealth = familiar.GetMaxHealth(); int familiarLevel = familiar.GetUnitLevel(); var (physicalPower, _) = familiar.GetPowerTuple(); servant.With((VExtensions.WithRefHandler)delegate(ref Health health) { health.MaxHealth._Value = familiarHealth; health.Value = familiarHealth; }); servant.With((VExtensions.WithRefHandler)delegate(ref ServantPower servantPower) { servantPower.GearLevel = familiarLevel; servantPower.Power = physicalPower; servantPower.Expertise = 0f; }); } public static IEnumerator FamiliarSyncDelayRoutine(Entity familiar, Entity servant) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: Unknown result type (might be due to invalid IL or missing references) yield return _bindingDelay; if (familiar.Exists() && servant.Exists()) { float familiarHealth = familiar.GetMaxHealth(); int familiarLevel = familiar.GetUnitLevel(); var (physicalPower, _) = familiar.GetPowerTuple(); servant.With((VExtensions.WithRefHandler)delegate(ref Health health) { health.MaxHealth._Value = familiarHealth; health.Value = familiarHealth; }); servant.With((VExtensions.WithRefHandler)delegate(ref ServantPower servantPower) { servantPower.GearLevel = familiarLevel; servantPower.Power = physicalPower; servantPower.Expertise = 0f; }); } } public static void HandleFamiliarMinions(Entity familiar) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) if (!LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.TryRemove(familiar, out var value)) { return; } foreach (Entity item in value) { item.Destroy(); } } public static void ParseAddedFamiliar(ChatCommandContext ctx, ulong steamId, string unit, string activeBox = "") { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_01b7: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(steamId); Entity entity = default(Entity); if (int.TryParse(unit, out var result) && PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(new PrefabGUID(result), ref entity)) { if (!entity.Read().GetPrefabName().StartsWith("CHAR")) { LocalizationService.HandleReply(ctx, "Invalid unit prefab (match found but does not start with CHAR/char)."); return; } familiarUnlocksData.FamiliarUnlocks[activeBox].Add(result); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(steamId, familiarUnlocksData); LocalizationService.HandleReply(ctx, $"{VExtensions.GetLocalizedName(new PrefabGUID(result))} added to {activeBox}."); } else if (unit.StartsWith("char", StringComparison.CurrentCultureIgnoreCase)) { PrefabGUID key = default(PrefabGUID); if (!PrefabCollectionSystem.SpawnableNameToPrefabGuidDictionary.TryGetValue(unit, ref key)) { foreach (KeyValuePair prefabGuidName in LocalizationService.PrefabGuidNames) { if (prefabGuidName.Value.Equals(unit, StringComparison.CurrentCultureIgnoreCase)) { key = prefabGuidName.Key; break; } } } if (!((PrefabGUID)(ref key)).IsEmpty() && PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(key, ref entity)) { if (!entity.Read().GetPrefabName().StartsWith("CHAR")) { LocalizationService.HandleReply(ctx, "Invalid unit name (match found but does not start with CHAR/char)."); return; } familiarUnlocksData.FamiliarUnlocks[activeBox].Add(((PrefabGUID)(ref key)).GuidHash); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(steamId, familiarUnlocksData); LocalizationService.HandleReply(ctx, $"{key.GetLocalizedName()} ({((PrefabGUID)(ref key)).GuidHash}) added to {activeBox}."); } else { LocalizationService.HandleReply(ctx, "Invalid unit name (no full or partial matches)."); } } else { LocalizationService.HandleReply(ctx, "Invalid prefab (not an integer) or name (does not start with CHAR/char)."); } } public static void ParseAddedFamiliar(PlayerService.PlayerInfo playerInfo, ulong steamId, string prefabGuid, string activeBox = "") { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Expected O, but got Unknown //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Expected O, but got Unknown //IL_0276: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Expected O, but got Unknown //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) //IL_018c: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_01ae: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Expected O, but got Unknown //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(steamId); Entity entity = default(Entity); bool flag = default(bool); if (int.TryParse(prefabGuid, out var result) && PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(new PrefabGUID(result), ref entity)) { if (!entity.GetPrefabGuid().GetPrefabName().StartsWith("CHAR")) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(74, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Unable to convert prefabGuid string ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabGuid); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") to valid familiar character!"); } log.LogWarning(val); } else { familiarUnlocksData.FamiliarUnlocks[activeBox].Add(result); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(steamId, familiarUnlocksData); LocalizationService.HandleReply(playerInfo, $"{VExtensions.GetLocalizedName(new PrefabGUID(result))} added to {activeBox}."); } } else if (prefabGuid.StartsWith("char", StringComparison.CurrentCultureIgnoreCase)) { PrefabGUID key = default(PrefabGUID); if (!PrefabCollectionSystem.SpawnableNameToPrefabGuidDictionary.TryGetValue(prefabGuid, ref key)) { foreach (KeyValuePair prefabGuidName in LocalizationService.PrefabGuidNames) { if (prefabGuidName.Value.Equals(prefabGuid, StringComparison.CurrentCultureIgnoreCase)) { key = prefabGuidName.Key; break; } } } if (!((PrefabGUID)(ref key)).IsEmpty() && PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(key, ref entity)) { if (!entity.GetPrefabGuid().GetPrefabName().StartsWith("CHAR")) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(74, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Unable to convert prefabGuid string ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabGuid); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") to valid familiar character!"); } log2.LogWarning(val); } else { familiarUnlocksData.FamiliarUnlocks[activeBox].Add(((PrefabGUID)(ref key)).GuidHash); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(steamId, familiarUnlocksData); LocalizationService.HandleReply(playerInfo, $"{key.GetLocalizedName()} ({((PrefabGUID)(ref key)).GuidHash}) added to {activeBox}."); } } else { ManualLogSource log3 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(74, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Unable to convert prefabGuid string ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabGuid); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") to valid familiar character!"); } log3.LogWarning(val); } } else { ManualLogSource log4 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(74, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Unable to convert prefabGuid string ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabGuid); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") to valid familiar character!"); } log4.LogWarning(val); } } public static void TryReturnFamiliar(Entity playerCharacter, Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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) float3 position = playerCharacter.GetPosition(); if (Vector3.Distance(float3.op_Implicit(familiar.GetPosition()), float3.op_Implicit(position)) >= 25f) { FamiliarBindingSystem.PreventDisableFamiliar(familiar); ReturnFamiliar(position, familiar); } } private static bool ShouldRelocate(this Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) if (familiar.TryGetComponent(out BehaviourTreeState componentData) && ((object)(GenericEnemyState)(ref componentData.Value)).Equals((object)(GenericEnemyState)262144)) { return true; } return false; } public static void SetPreCombatPosition(Entity playerCharacter, Entity familiar) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) familiar.With((VExtensions.WithRefHandler)delegate(ref AggroConsumer aggroConsumer) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) aggroConsumer.PreCombatPosition = playerCharacter.GetPosition(); }); } public static void HandleFamiliarEnteringCombat(Entity playerCharacter, Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) if (familiar.HasBuff(_interactModeBuff)) { User user = playerCharacter.GetUser(); ulong platformId = user.PlatformId; EmoteSystemPatch.InteractMode(user, playerCharacter, platformId); } familiar.With((VExtensions.WithRefHandler)delegate(ref Follower follower) { follower.ModeModifiable._Value = 1; }); SetPreCombatPosition(playerCharacter, familiar); TryReturnFamiliar(playerCharacter, familiar); } public static void ReturnFamiliar(float3 position, Entity familiar) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) familiar.With((VExtensions.WithRefHandler)delegate(ref LastTranslation lastTranslation) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) lastTranslation.Value = position; }); familiar.With((VExtensions.WithRefHandler)delegate(ref Translation translation) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) translation.Value = position; }); familiar.With((VExtensions.WithRefHandler)delegate(ref AggroConsumer aggroConsumer) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) aggroConsumer.PreCombatPosition = position; }); } public static void ToggleShinies(ChatCommandContext ctx, ulong steamId) { Misc.PlayerBoolsManager.TogglePlayerBool(steamId, "ShinyFamiliars"); LocalizationService.HandleReply(ctx, Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ShinyFamiliars") ? "Shiny familiars enabled." : "Shiny familiars disabled."); } public static void ToggleVBloodEmotes(ChatCommandContext ctx, ulong steamId) { Misc.PlayerBoolsManager.TogglePlayerBool(steamId, "VBloodEmotes"); LocalizationService.HandleReply(ctx, Misc.PlayerBoolsManager.GetPlayerBool(steamId, "VBloodEmotes") ? "VBlood emotes enabled." : "VBlood emotes disabled."); } public static void CallFamiliar(Entity playerCharacter, Entity familiar, User user, ulong steamId) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) familiar.Remove(); FamiliarBindingSystem.PreventDisableFamiliar(familiar); ReturnFamiliar(playerCharacter.GetPosition(), familiar); familiar.With((VExtensions.WithRefHandler)delegate(ref Follower follower) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) follower.Followed._Value = playerCharacter; follower.ModeModifiable._Value = 0; }); if (_familiarCombat && !familiar.HasBuff(_invulnerableBuff)) { familiar.TryRemoveBuff(_disableAggroBuff); } ActiveFamiliarManager.UpdateActiveFamiliarDismissed(steamId, dismissed: false); string message = "Familiar enabled!"; LocalizationService.HandleServerReply(EntityManager, user, message); } public static void DismissFamiliar(Entity playerCharacter, Entity familiar, User user, ulong steamId) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0069: 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_008f: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) if (familiar.HasBuff(_vanishBuff)) { LocalizationService.HandleServerReply(EntityManager, user, "Can't dismiss familiar when binding/unbinding!"); return; } HandleFamiliarMinions(familiar); familiar.With((VExtensions.WithRefHandler)delegate(ref Follower follower) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) follower.Followed._Value = Entity.Null; }); DynamicBuffer val = playerCharacter.ReadBuffer(); for (int i = 0; i < val.Length; i++) { FollowerBuffer val2 = val[i]; if (((Entity)(ref val2.Entity._Entity)).Equals(familiar)) { val.RemoveAt(i); break; } } FamiliarBindingSystem.PreventDisableFamiliar(familiar); familiar.Add(); ActiveFamiliarManager.UpdateActiveFamiliarDismissed(steamId, dismissed: true); string message = "Familiar disabled!"; LocalizationService.HandleServerReply(EntityManager, user, message); } public static string GetShinyInfo(DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData buffsData, Entity familiar, int familiarId) { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) if (buffsData.FamiliarBuffs.ContainsKey(familiarId)) { PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(buffsData.FamiliarBuffs[familiarId].FirstOrDefault()); if (FamiliarUnlockSystem.ShinyBuffSpellSchools.TryGetValue(val, out var value) && familiar.TryGetBuffStacks(val, out var _, out var stacks)) { return $"{value}[{stacks}]"; } } return string.Empty; } public static void NothingLivesForever(this Entity unit, float duration = 240f) { //IL_000d: 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_001c: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) if (!unit.TryApplyAndGetBuff(_inkCrawlerDeathBuff, out var buffEntity)) { return; } buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { lifeTime.Duration = duration; }); PrefabGUID prefabGuid = unit.GetPrefabGuid(); if ((((PrefabGUID)(ref prefabGuid)).Equals(_spiritDouble) || ((PrefabGUID)(ref prefabGuid)).Equals(_highlordGroundSword)) && unit.Has()) { unit.With((VExtensions.WithRefHandler)delegate(ref Immortal immortal) { immortal.IsImmortal = false; }); } } public static void DisableAggro(Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref AggroConsumer aggroConsumer) { aggroConsumer.Active._Value = false; }); } } public static void EnableAggro(Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref AggroConsumer aggroConsumer) { aggroConsumer.Active._Value = true; }); } } public static void EnableAggroable(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { entity.With((VExtensions.WithRefHandler)delegate(ref Aggroable aggroable) { aggroable.Value._Value = true; aggroable.DistanceFactor._Value = 1f; aggroable.AggroFactor._Value = 1f; }); } } public static void DisableAggroable(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { entity.With((VExtensions.WithRefHandler)delegate(ref Aggroable aggroable) { aggroable.Value._Value = false; aggroable.DistanceFactor._Value = 0f; aggroable.AggroFactor._Value = 0f; }); } } public static void BindFamiliar(User user, Entity playerCharacter, int boxIndex = -1) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) ulong platformId = user.PlatformId; if (platformId.IsBinding()) { LocalizationService.HandleServerReply(EntityManager, user, "Familiar binding already in progress!"); return; } bool flag = platformId.HasActiveFamiliar(); if (flag) { LocalizationService.HandleServerReply(EntityManager, user, "You already have an active familiar! Unbind that one first."); return; } if (playerCharacter.HasBuff(_pveCombatBuff) || playerCharacter.HasBuff(_dominateBuff) || playerCharacter.HasBuff(_takeFlightBuff) || playerCharacter.HasBuff(_pvpCombatBuff)) { LocalizationService.HandleServerReply(EntityManager, user, "You can't bind in combat or when using certain forms! (dominating presence, bat)"); return; } string familiarSet = (platformId.TryGetFamiliarBox(out familiarSet) ? familiarSet : string.Empty); List value; if (string.IsNullOrEmpty(familiarSet)) { LocalizationService.HandleServerReply(EntityManager, user, "Couldn't find active box! Use '.fam listboxes' and select one with '.fam cb [BoxName]"); } else if (!flag && DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId).FamiliarUnlocks.TryGetValue(familiarSet, out value)) { if (boxIndex == -1 && platformId.TryGetBindingIndex(out boxIndex)) { if (boxIndex < 1 || boxIndex > value.Count) { LocalizationService.HandleServerReply(EntityManager, user, "Invalid index for active box, try binding or smartbind via command."); return; } ActiveFamiliarManager.UpdateActiveFamiliarBinding(platformId, isBinding: true); FamiliarBindingSystem.InstantiateFamiliarRoutine(user, playerCharacter, value[boxIndex - 1]).Start(); } else if (boxIndex == -1) { LocalizationService.HandleServerReply(EntityManager, user, "Couldn't find binding preset, try binding or smartbind via command."); } else if (boxIndex < 1 || boxIndex > value.Count) { LocalizationService.HandleServerReply(EntityManager, user, $"Invalid index, use 1-{value.Count}! (Active Box - {familiarSet})"); } else { platformId.SetBindingIndex(boxIndex); ActiveFamiliarManager.UpdateActiveFamiliarBinding(platformId, isBinding: true); FamiliarBindingSystem.InstantiateFamiliarRoutine(user, playerCharacter, value[boxIndex - 1]).Start(); } } else { LocalizationService.HandleServerReply(EntityManager, user, "Couldn't find familiar actives or familiar already active! If this doesn't seem right try using '.fam reset'."); } } public static void UnbindFamiliar(User user, Entity playerCharacter, bool smartBind = false, int index = -1) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) ulong platformId = user.PlatformId; if (platformId.IsBinding()) { LocalizationService.HandleServerReply(EntityManager, user, "Cannot unbind while a binding is in progress!"); return; } bool flag = platformId.HasActiveFamiliar(); bool flag2 = platformId.HasDismissedFamiliar(); if (flag && !flag2) { Entity activeFamiliar = GetActiveFamiliar(playerCharacter); if (activeFamiliar.HasBuff(_interactModeBuff)) { LocalizationService.HandleServerReply(EntityManager, user, "Can't unbind familiar right now! (interacting)"); return; } activeFamiliar.TryApplyBuff(_vanishBuff); activeFamiliar.TryApplyBuff(_disableAggroBuff); activeFamiliar.TryRemoveBuff(_bonusStatsBuff); ActiveFamiliarManager.UpdateActiveFamiliarBinding(platformId, isBinding: true); UnbindFamiliarDelayRoutine(user, playerCharacter, activeFamiliar, smartBind, index).Start(); } else if (flag2) { LocalizationService.HandleServerReply(EntityManager, user, "Can't unbind familiar right now! (dismissed)"); } else { LocalizationService.HandleServerReply(EntityManager, user, "Couldn't find familiar to unbind! If this doesn't seem right try using '.fam reset'."); } } private static IEnumerator UnbindFamiliarDelayRoutine(User user, Entity playerCharacter, Entity familiar, bool smartBind = false, int index = -1) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) yield return _delay; PrefabGUID prefabGuid = familiar.GetPrefabGuid(); ulong platformId = user.PlatformId; if (((PrefabGUID)(ref prefabGuid)).IsEmpty()) { ActiveFamiliarManager.UpdateActiveFamiliarBinding(platformId, isBinding: false); yield break; } int guidHash = ((PrefabGUID)(ref prefabGuid)).GuidHash; DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData familiarBuffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(platformId); string value = ""; if (familiarBuffsData.FamiliarBuffs.ContainsKey(guidHash) && FamiliarUnlockSystem.ShinyBuffColorHexes.TryGetValue(new PrefabGUID(familiarBuffsData.FamiliarBuffs[guidHash].First()), out var value2)) { value = ""; } HandleFamiliarMinions(familiar); DataService.FamiliarPersistence.FamiliarEquipmentManager.SaveFamiliarEquipment(platformId, guidHash, DataService.FamiliarPersistence.FamiliarEquipmentManager.UnequipFamiliar(playerCharacter)); familiar.Remove(); if (AutoCallMap.ContainsKey(playerCharacter)) { AutoCallMap.TryRemove(playerCharacter, out var _); } familiar.Destroy(); ActiveFamiliarManager.ResetActiveFamiliarData(platformId); ActiveFamiliarManager.UpdateActiveFamiliarBinding(platformId, isBinding: false); string message = ((!string.IsNullOrEmpty(value)) ? $"{prefabGuid.GetLocalizedName()}{value}* unbound!" : ("" + prefabGuid.GetLocalizedName() + " unbound!")); LocalizationService.HandleServerReply(EntityManager, user, message); if (smartBind) { yield return _bindingDelay; BindFamiliar(user, playerCharacter, index); } } public static void SyncAggro(Entity playerCharacter, Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) if (!playerCharacter.TryGetBuffer(out DynamicBuffer dynamicBuffer) || dynamicBuffer.IsEmpty) { return; } List list = new List(); Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { Entity entity = enumerator.Current.Entity; if (entity.Exists()) { list.Add(entity); } } AddToFamiliarAggroBuffer(playerCharacter, familiar, list); } public static void AddToFamiliarAggroBuffer(Entity playerCharacter, Entity familiar, List targets) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) if (!familiar.TryGetBuffer(out DynamicBuffer dynamicBuffer)) { return; } List list = new List(); Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { AggroBuffer current = enumerator.Current; list.Add(current.Entity); } foreach (Entity target in targets) { if (!list.Contains(target)) { PrefabGUID prefabGuid = target.GetPrefabGuid(); if (!((PrefabGUID)(ref prefabGuid)).Equals(_enchantedCross) && (!target.TryGetComponent(out BloodConsumeSource componentData) || !(componentData.BloodQuality >= 90f))) { float num = Vector3.Distance(float3.op_Implicit(playerCharacter.GetPosition()), float3.op_Implicit(target.GetPosition())); float num2 = Mathf.Clamp01(1f - num / 25f); float damageValue = (target.IsVBloodOrGateBoss() ? 400f : 100f) + 100f * num2; AggroBuffer val = default(AggroBuffer); val.DamageValue = damageValue; val.Entity = target; val.Weight = 1f; AggroBuffer val2 = val; dynamicBuffer.Add(val2); } } } } public static void FaceYourEnemy(Entity familiar, Entity target) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_003a: 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_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref EntityInput entityInput) { //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) entityInput.AimDirection = _southFloat3; }); } if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref TargetDirection targetDirection) { //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) targetDirection.AimDirection = _southFloat3; }); } if (familiar.TryApplyBuff(_defaultEmoteBuff) && familiar.TryGetBuff(_defaultEmoteBuff, out var buffEntity)) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref EntityOwner entityOwner) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) entityOwner.Owner = target; }); } } public static bool EligibleForCombat(this Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) if (familiar.Exists() && !familiar.IsDisabled()) { return !familiar.HasBuff(_invulnerableBuff); } return false; } public static string GetFamiliarName(int familiarId, DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData buffsData) { //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) if (buffsData.FamiliarBuffs.ContainsKey(familiarId) && FamiliarUnlockSystem.ShinyBuffColorHexes.TryGetValue(new PrefabGUID(buffsData.FamiliarBuffs[familiarId].FirstOrDefault()), out var value)) { string value2 = (string.IsNullOrEmpty(value) ? ("") : string.Empty); return $"{VExtensions.GetLocalizedName(new PrefabGUID(familiarId))}{value2}*"; } return "" + VExtensions.GetLocalizedName(new PrefabGUID(familiarId)) + ""; } public static void HandleFamiliarPrestige(ChatCommandContext ctx, int clampedCost) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.User.PlatformId; if (!platformId.HasActiveFamiliar()) { LocalizationService.HandleReply(ctx, "Couldn't find active familiar!"); return; } int familiarId = ActiveFamiliarManager.GetActiveFamiliarData(platformId).FamiliarId; DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(platformId); DataService.FamiliarPersistence.FamiliarPrestigeManager.FamiliarPrestigeData familiarPrestigeData = DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(platformId); if (!familiarPrestigeData.FamiliarPrestige.ContainsKey(familiarId)) { familiarPrestigeData.FamiliarPrestige[familiarId] = 0; DataService.FamiliarPersistence.FamiliarPrestigeManager.SaveFamiliarPrestigeData(platformId, familiarPrestigeData); } familiarPrestigeData = DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(platformId); if (familiarPrestigeData.FamiliarPrestige[familiarId] >= ConfigService.MaxFamiliarPrestiges) { LocalizationService.HandleReply(ctx, $"Your familiar has already prestiged the maximum number of times! ({ConfigService.MaxFamiliarPrestiges})"); return; } ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(senderCharacterEntity, _itemSchematic, clampedCost)) { int value = familiarPrestigeData.FamiliarPrestige[familiarId] + 1; familiarPrestigeData.FamiliarPrestige[familiarId] = value; DataService.FamiliarPersistence.FamiliarPrestigeManager.SaveFamiliarPrestigeData(platformId, familiarPrestigeData); FamiliarBindingSystem.ModifyUnitStats(GetActiveFamiliar(senderCharacterEntity), familiarExperienceData.FamiliarExperience[familiarId].Key, platformId, familiarId); LocalizationService.HandleReply(ctx, $"Your familiar has prestiged [{value}]; the accumulated knowledge allowed them to retain their level!"); } else { LocalizationService.HandleReply(ctx, "Failed to remove schematics from your inventory!"); } } public static IEnumerator HandleFamiliarShapeshiftRoutine(User user, Entity playerCharacter, Entity familiar) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) yield return _delay; try { FamiliarBindingSystem.HandleModifications(user, playerCharacter, familiar); } catch (Exception ex) { Core.Log.LogWarning((object)ex); } } public static void HandleFamiliarCastleMan(Entity buffEntity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); buffEntity.Remove(); } public static void DestroyFamiliarServant(Entity servant) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0023: 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_0031: Unknown result type (might be due to invalid IL or missing references) Entity servantCoffin = GetServantCoffin(servant); StatChangeUtility.KillOrDestroyEntity(EntityManager, servant, Entity.Null, Entity.Null, Core.ServerTime, (StatChangeReason)1, true); if (servantCoffin.Exists()) { servantCoffin.Remove(); servantCoffin.Destroy(); } } } internal static class Jewels { private static readonly Dictionary> _spellModSets = new Dictionary> { [PrefabGUIDs.AB_Blood_BloodFountain_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[10] { PrefabGUIDs.SpellMod_BloodFountain_FirstImpactApplyLeech, PrefabGUIDs.SpellMod_BloodFountain_FirstImpactDispell, PrefabGUIDs.SpellMod_BloodFountain_FirstImpactFadingSnare, PrefabGUIDs.SpellMod_BloodFountain_FirstImpactHealIncrease, PrefabGUIDs.SpellMod_BloodFountain_RecastLesser, PrefabGUIDs.SpellMod_BloodFountain_SecondImpactDamageIncrease, PrefabGUIDs.SpellMod_BloodFountain_SecondImpactHealIncrease, PrefabGUIDs.SpellMod_BloodFountain_SecondImpactKnockback, PrefabGUIDs.SpellMod_BloodFountain_SecondImpactSpeedBuff, PrefabGUIDs.SpellMod_BloodFountain_IncreaseArea }), [PrefabGUIDs.AB_Blood_BloodRage_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_BloodRage_DamageBoost, PrefabGUIDs.SpellMod_BloodRage_HealOnKill, PrefabGUIDs.SpellMod_BloodRage_IncreaseLifetime, PrefabGUIDs.SpellMod_BloodRage_IncreaseMoveSpeed, PrefabGUIDs.SpellMod_BloodRage_Shield, PrefabGUIDs.SpellMod_Shared_ApplyFadingSnare_Medium, PrefabGUIDs.SpellMod_Shared_DispellDebuffs, PrefabGUIDs.SpellMod_BloodRage_IncreaseArea }), [PrefabGUIDs.AB_Blood_BloodRite_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[12] { PrefabGUIDs.SpellMod_BloodRite_ApplyFadingSnare, PrefabGUIDs.SpellMod_BloodRite_BonusDamage, PrefabGUIDs.SpellMod_BloodRite_DamageOnAttack, PrefabGUIDs.SpellMod_BloodRite_HealOnTrigger, PrefabGUIDs.SpellMod_BloodRite_IncreaseLifetime, PrefabGUIDs.SpellMod_BloodRite_Stealth, PrefabGUIDs.SpellMod_BloodRite_TossDaggers, PrefabGUIDs.SpellMod_Shared_IncreaseMoveSpeedDuringChannel_High, PrefabGUIDs.SpellMod_BloodRite_DaggerBonusDamage, PrefabGUIDs.SpellMod_BloodRite_ConsumeLeechReduceCooldownXTimes, PrefabGUIDs.SpellMod_BloodRite_ConsumeLeechHealXTimes, PrefabGUIDs.SpellMod_BloodRite_BonusDaggers }), [PrefabGUIDs.AB_Blood_SanguineCoil_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_SanguineCoil_AddBounces, PrefabGUIDs.SpellMod_SanguineCoil_BonusDamage, PrefabGUIDs.SpellMod_SanguineCoil_BonusHealing, PrefabGUIDs.SpellMod_SanguineCoil_BonusLifeLeech, PrefabGUIDs.SpellMod_SanguineCoil_KillRecharge, PrefabGUIDs.SpellMod_SanguineCoil_LeechBonusDamage, PrefabGUIDs.SpellMod_Shared_AddCharges, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity }), [PrefabGUIDs.AB_Blood_Shadowbolt_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[9] { PrefabGUIDs.SpellMod_Shadowbolt_ExplodeOnHit, PrefabGUIDs.SpellMod_Shadowbolt_ForkOnHit, PrefabGUIDs.SpellMod_Shadowbolt_LeechBonusDamage, PrefabGUIDs.SpellMod_Shadowbolt_VampiricCurse, PrefabGUIDs.SpellMod_Shared_Blood_ConsumeLeechSelfHeal_Small, PrefabGUIDs.SpellMod_Shared_CastRate, PrefabGUIDs.SpellMod_Shared_Cooldown_Medium, PrefabGUIDs.SpellMod_Shared_KnockbackOnHit_Medium, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity }), [PrefabGUIDs.AB_Vampire_VeilOfBlood_Group] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_VeilOfBlood_AttackInflictFadingSnare, PrefabGUIDs.SpellMod_VeilOfBlood_BloodNova, PrefabGUIDs.SpellMod_VeilOfBlood_BloodNovaArea, PrefabGUIDs.SpellMod_VeilOfBlood_DashInflictLeech, PrefabGUIDs.SpellMod_VeilOfBlood_Empower, PrefabGUIDs.SpellMod_VeilOfBlood_SelfHealing, PrefabGUIDs.SpellMod_Shared_Veil_BonusDamageOnPrimary, PrefabGUIDs.SpellMod_Shared_Veil_BuffAndIllusionDuration }), [PrefabGUIDs.AB_Blood_CarrionSwarm_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_CarrionSwam_BonusDamage, PrefabGUIDs.SpellMod_CarrionSwam_Explode, PrefabGUIDs.SpellMod_CarrionSwam_Leech, PrefabGUIDs.SpellMod_CarrionSwam_StunOnHit, PrefabGUIDs.SpellMod_CarrionSwam_VampiricCurse, PrefabGUIDs.SpellMod_Shared_ApplyFadingSnare_Long }), [PrefabGUIDs.AB_Chaos_Aftershock_Group] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_Chaos_Aftershock_BonusDamage, PrefabGUIDs.SpellMod_Chaos_Aftershock_InflictSlowOnProjectile, PrefabGUIDs.SpellMod_Chaos_Aftershock_KnockbackArea, PrefabGUIDs.SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames, PrefabGUIDs.SpellMod_Shared_Cooldown_Medium, PrefabGUIDs.SpellMod_Shared_Projectile_IncreaseRange_Medium }), [PrefabGUIDs.AB_Chaos_Barrier_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_Chaos_Barrier_BonusDamage, PrefabGUIDs.SpellMod_Chaos_Barrier_ConsumeAttackReduceCooldownXTimes, PrefabGUIDs.SpellMod_Chaos_Barrier_ExplodeOnHit, PrefabGUIDs.SpellMod_Chaos_Barrier_LesserPowerSurge, PrefabGUIDs.SpellMod_Chaos_Barrier_StunOnHit, PrefabGUIDs.SpellMod_Shared_IncreaseMoveSpeedDuringChannel_Low }), [PrefabGUIDs.AB_Chaos_PowerSurge_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_PowerSurge_AttackSpeed, PrefabGUIDs.SpellMod_PowerSurge_EmpowerPhysical, PrefabGUIDs.SpellMod_PowerSurge_Haste, PrefabGUIDs.SpellMod_PowerSurge_IncreaseDurationOnKill, PrefabGUIDs.SpellMod_PowerSurge_Lifetime, PrefabGUIDs.SpellMod_PowerSurge_RecastDestonate, PrefabGUIDs.SpellMod_PowerSurge_Shield, PrefabGUIDs.SpellMod_Shared_DispellDebuffs }), [PrefabGUIDs.AB_Chaos_Void_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_Chaos_Void_BonusDamage, PrefabGUIDs.SpellMod_Chaos_Void_BurnArea, PrefabGUIDs.SpellMod_Chaos_Void_FragBomb, PrefabGUIDs.SpellMod_Chaos_Void_ReduceChargeCD, PrefabGUIDs.SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames, PrefabGUIDs.SpellMod_Shared_TargetAoE_IncreaseRange_Medium }), [PrefabGUIDs.AB_Chaos_Volley_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_Chaos_Volley_BonusDamage, PrefabGUIDs.SpellMod_Chaos_Volley_SecondProjectileBonusDamage, PrefabGUIDs.SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames, PrefabGUIDs.SpellMod_Shared_Cooldown_Medium, PrefabGUIDs.SpellMod_Shared_KnockbackOnHit_Light, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity }), [PrefabGUIDs.AB_Vampire_VeilOfChaos_Group] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_VeilOfChaos_ApplySnareOnExplode, PrefabGUIDs.SpellMod_VeilOfChaos_BonusDamageOnExplode, PrefabGUIDs.SpellMod_VeilOfChaos_BonusIllusion, PrefabGUIDs.SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames_OnAttack, PrefabGUIDs.SpellMod_Shared_Veil_BonusDamageOnPrimary, PrefabGUIDs.SpellMod_Shared_Veil_BuffAndIllusionDuration }), [PrefabGUIDs.AB_Chaos_RainOfChaos_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_RainOfChaos_BonusMeteor, PrefabGUIDs.SpellMod_RainOfChaos_BurnArea, PrefabGUIDs.SpellMod_RainOfChaos_MegaMeteor, PrefabGUIDs.SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames, PrefabGUIDs.SpellMod_Shared_Cooldown_Medium, PrefabGUIDs.SpellMod_Shared_ApplyFadingSnare_Short }), [PrefabGUIDs.AB_Frost_ColdSnap_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[7] { PrefabGUIDs.SpellMod_ColdSnap_BonusAbsorb, PrefabGUIDs.SpellMod_ColdSnap_BonusDamage, PrefabGUIDs.SpellMod_ColdSnap_HasteWhileShielded, PrefabGUIDs.SpellMod_ColdSnap_Immaterial, PrefabGUIDs.SpellMod_Shared_Frost_IncreaseFreezeWhenChill, PrefabGUIDs.SpellMod_Shared_FrostWeapon, PrefabGUIDs.SpellMod_Shared_IncreaseMoveSpeedDuringChannel_High }), [PrefabGUIDs.AB_Frost_CrystalLance_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_CrystalLance_BonusDamageToFrosty, PrefabGUIDs.SpellMod_CrystalLance_PierceEnemies, PrefabGUIDs.SpellMod_Shared_CastRate, PrefabGUIDs.SpellMod_Shared_Frost_IncreaseFreezeWhenChill, PrefabGUIDs.SpellMod_Shared_Frost_ShieldOnFrosty, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity }), [PrefabGUIDs.AB_FrostBarrier_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[7] { PrefabGUIDs.SpellMod_FrostBarrier_BonusDamage, PrefabGUIDs.SpellMod_FrostBarrier_BonusSpellPowerOnAbsorb, PrefabGUIDs.SpellMod_FrostBarrier_ConsumeAttackReduceCooldownXTimes, PrefabGUIDs.SpellMod_FrostBarrier_KnockbackOnRecast, PrefabGUIDs.SpellMod_FrostBarrier_ShieldOnFrostyRecast, PrefabGUIDs.SpellMod_Shared_Frost_ConsumeChillIntoFreeze_Recast, PrefabGUIDs.SpellMod_Shared_IncreaseMoveSpeedDuringChannel_Low }), [PrefabGUIDs.AB_Frost_FrostBat_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_FrostBat_AreaDamage, PrefabGUIDs.SpellMod_FrostBat_BonusDamageToFrosty, PrefabGUIDs.SpellMod_Shared_CastRate, PrefabGUIDs.SpellMod_Shared_Frost_SplinterNovaOnFrosty, PrefabGUIDs.SpellMod_Shared_Frost_ShieldOnFrosty, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity }), [PrefabGUIDs.AB_Frost_IceNova_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_IceNova_ApplyShield, PrefabGUIDs.SpellMod_IceNova_BonusDamageToFrosty, PrefabGUIDs.SpellMod_IceNova_IncreaseRadius, PrefabGUIDs.SpellMod_Shared_Cooldown_Medium, PrefabGUIDs.SpellMod_Shared_TargetAoE_IncreaseRange_Medium, PrefabGUIDs.SpellMod_IceNova_RecastLesserNova }), [PrefabGUIDs.AB_Vampire_VeilOfFrost_Group] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_VeilOfFrost_BonusDamage, PrefabGUIDs.SpellMod_VeilOfFrost_FrostNova, PrefabGUIDs.SpellMod_VeilOfFrost_IllusionFrostBlast, PrefabGUIDs.SpellMod_VeilOfFrost_ShieldBonus, PrefabGUIDs.SpellMod_Shared_Veil_BonusDamageOnPrimary, PrefabGUIDs.SpellMod_Shared_Veil_BuffAndIllusionDuration }), [PrefabGUIDs.AB_FrostCone_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[7] { PrefabGUIDs.SpellMod_FrostCone_BonusDamage, PrefabGUIDs.SpellMod_FrostCone_BonusSpeed, PrefabGUIDs.SpellMod_FrostCone_FrostWave, PrefabGUIDs.SpellMod_FrostCone_IncreaseFreeze, PrefabGUIDs.SpellMod_FrostCone_KnockbackOnEnd, PrefabGUIDs.SpellMod_FrostCone_Leech, PrefabGUIDs.SpellMod_FrostCone_Shield }), [PrefabGUIDs.AB_Illusion_MistTrance_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_MIstTrance_DamageOnAttack, PrefabGUIDs.SpellMod_MistTrance_FearOnTrigger, PrefabGUIDs.SpellMod_MistTrance_HasteOnTrigger, PrefabGUIDs.SpellMod_MistTrance_PhantasmOnTrigger, PrefabGUIDs.SpellMod_MistTrance_ReduceSecondaryWeaponCD, PrefabGUIDs.SpellMod_Shared_IncreaseMoveSpeedDuringChannel_High, PrefabGUIDs.SpellMod_Shared_KnockbackOnHit_Medium, PrefabGUIDs.SpellMod_Shared_TravelBuff_IncreaseRange_Medium }), [PrefabGUIDs.AB_Illusion_Mosquito_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[5] { PrefabGUIDs.SpellMod_Mosquito_BonusDamage, PrefabGUIDs.SpellMod_Mosquito_BonusFearDuration, PrefabGUIDs.SpellMod_Mosquito_BonusHealthAndSpeed, PrefabGUIDs.SpellMod_Mosquito_ShieldOnSpawn, PrefabGUIDs.SpellMod_Mosquito_WispsOnDestroy }), [PrefabGUIDs.AB_Illusion_PhantomAegis_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_PhantomAegis_ConsumeShieldAndPullAlly, PrefabGUIDs.SpellMod_PhantomAegis_ExplodeOnDestroy, PrefabGUIDs.SpellMod_PhantomAegis_IncreaseLifetime, PrefabGUIDs.SpellMod_PhantomAegis_IncreaseSpellPower, PrefabGUIDs.SpellMod_PhantomAegis_ConsumeWeakenIntoFear, PrefabGUIDs.SpellMod_Shared_DispellDebuffs, PrefabGUIDs.SpellMod_Shared_KnockbackOnHit_Medium, PrefabGUIDs.SpellMod_Shared_MovementSpeed_Normal }), [PrefabGUIDs.AB_Illusion_SpectralWolf_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_Shared_Illusion_ConsumeWeakenSpawnWisp, PrefabGUIDs.SpellMod_Shared_Illusion_WeakenShield, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity, PrefabGUIDs.SpellMod_SpectralWolf_AddBounces, PrefabGUIDs.SpellMod_SpectralWolf_DecreaseBounceDamageReduction, PrefabGUIDs.SpellMod_SpectralWolf_FirstBounceInflictFadingSnare, PrefabGUIDs.SpellMod_SpectralWolf_ReturnToOwner, PrefabGUIDs.SpellMod_SpectralWolf_WeakenApplyXPhantasm }), [PrefabGUIDs.AB_Illusion_WraithSpear_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[7] { PrefabGUIDs.SpellMod_Shared_ApplyFadingSnare_Medium, PrefabGUIDs.SpellMod_Shared_Illusion_ConsumeWeakenSpawnWisp, PrefabGUIDs.SpellMod_Shared_Illusion_WeakenShield, PrefabGUIDs.SpellMod_Shared_Projectile_IncreaseRange_Medium, PrefabGUIDs.SpellMod_WraithSpear_BonusDamage, PrefabGUIDs.SpellMod_WraithSpear_ReducedDamageReduction, PrefabGUIDs.SpellMod_WraithSpear_ShieldAlly }), [PrefabGUIDs.AB_Vampire_VeilOfIllusion_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_VeilOfIllusion_AttackInflictFadingSnare, PrefabGUIDs.SpellMod_VeilOfIllusion_IllusionFireProjectiles, PrefabGUIDs.SpellMod_VeilOfIllusion_IllusionProjectileDamage, PrefabGUIDs.SpellMod_VeilOfIllusion_PhantasmOnHit, PrefabGUIDs.SpellMod_VeilOfIllusion_RecastDetonate, PrefabGUIDs.SpellMod_Shared_Veil_BonusDamageOnPrimary, PrefabGUIDs.SpellMod_Shared_Veil_BuffAndIllusionDuration, PrefabGUIDs.SpellMod_Shared_Illusion_WeakenShield_OnAttack }), [PrefabGUIDs.AB_Illusion_Curse_Group] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[7] { PrefabGUIDs.SpellMod_Curse_DamageFactor, PrefabGUIDs.SpellMod_Curse_DamageOnHit, PrefabGUIDs.SpellMod_Curse_IncreaseDuration, PrefabGUIDs.SpellMod_Curse_ReapplyWeaken, PrefabGUIDs.SpellMod_Curse_SpawnWispOnDeath, PrefabGUIDs.SpellMod_Shared_Illusion_ConsumeWeakenSpawnWisp, PrefabGUIDs.SpellMod_Shared_Illusion_WeakenShield }), [PrefabGUIDs.AB_Storm_BallLightning_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_BallLightning_BonusDamage, PrefabGUIDs.SpellMod_BallLightning_DetonateOnRecast, PrefabGUIDs.SpellMod_BallLightning_Haste, PrefabGUIDs.SpellMod_BallLightning_KnockbackOnExplode, PrefabGUIDs.SpellMod_Shared_Projectile_IncreaseRange_Medium, PrefabGUIDs.SpellMod_Shared_Storm_ConsumeStaticIntoStun_Explode }), [PrefabGUIDs.AB_Storm_Cyclone_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[10] { PrefabGUIDs.SpellMod_Cyclone_BonusDamage, PrefabGUIDs.SpellMod_Cyclone_BonusDamageStormShield, PrefabGUIDs.SpellMod_Cyclone_BonusShield, PrefabGUIDs.SpellMod_Cyclone_IncreaseLifetime, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity, PrefabGUIDs.SpellMod_Shared_Storm_ConsumeStaticIntoStun, PrefabGUIDs.SpellMod_Shared_Storm_ConsumeStaticIntoWeaponCharge, PrefabGUIDs.SpellMod_Shared_CastRate, PrefabGUIDs.SpellMod_Cyclone_SpellLeechStormShield, PrefabGUIDs.SpellMod_Cyclone_ReducedDamageReduction }), [PrefabGUIDs.AB_Storm_Discharge_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_Discharge_BonusDamage, PrefabGUIDs.SpellMod_Discharge_Immaterial, PrefabGUIDs.SpellMod_Discharge_IncreaseStormShieldDuration, PrefabGUIDs.SpellMod_Discharge_IncreaseStunDuration, PrefabGUIDs.SpellMod_Discharge_RecastDetonate, PrefabGUIDs.SpellMod_Discharge_SpellLeech, PrefabGUIDs.SpellMod_Shared_IncreaseMoveSpeedDuringChannel_High, PrefabGUIDs.SpellMod_Shared_Storm_GrantWeaponCharge }), [PrefabGUIDs.AB_Storm_LightningWall_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[5] { PrefabGUIDs.SpellMod_LightningWall_ApplyShield, PrefabGUIDs.SpellMod_LightningWall_BonusDamage, PrefabGUIDs.SpellMod_LightningWall_ConsumeProjectileWeaponCharge, PrefabGUIDs.SpellMod_LightningWall_FadingSnare, PrefabGUIDs.SpellMod_LightningWall_IncreaseMovementSpeed }), [PrefabGUIDs.AB_Storm_PolarityShift_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[5] { PrefabGUIDs.SpellMod_Shared_ApplyFadingSnare_Medium, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity, PrefabGUIDs.SpellMod_Shared_Storm_ConsumeStaticIntoWeaponCharge, PrefabGUIDs.SpellMod_Storm_PolarityShift_AreaImpactDestination, PrefabGUIDs.SpellMod_Storm_PolarityShift_AreaImpactOrigin }), [PrefabGUIDs.AB_Vampire_VeilOfStorm_Group] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[7] { PrefabGUIDs.SpellMod_Shared_Storm_ConsumeStaticIntoStun, PrefabGUIDs.SpellMod_Shared_Veil_BonusDamageOnPrimary, PrefabGUIDs.SpellMod_Shared_Veil_BuffAndIllusionDuration, PrefabGUIDs.SpellMod_VeilOfStorm_AttackInflictFadingSnare, PrefabGUIDs.SpellMod_VeilOfStorm_DashInflictStatic, PrefabGUIDs.SpellMod_VeilOfStorm_SparklingIllusion, PrefabGUIDs.SpellMod_VeilOfStorm_RecastIllusionDash }), [PrefabGUIDs.AB_Storm_LightningTendrils_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[7] { PrefabGUIDs.SpellMod_LightningTendrils_BonusDamage, PrefabGUIDs.SpellMod_LightningTendrils_BonusProjectile, PrefabGUIDs.SpellMod_LightningTendrils_ChainLightning, PrefabGUIDs.SpellMod_LightningTendrils_SpeedChanneling, PrefabGUIDs.SpellMod_LightningTendrils_StunOnHit, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity, PrefabGUIDs.SpellMod_Shared_CastRate }), [PrefabGUIDs.AB_Unholy_CorpseExplosion_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[9] { PrefabGUIDs.SpellMod_CorpseExplosion_BonusDamage, PrefabGUIDs.SpellMod_CorpseExplosion_DoubleImpact, PrefabGUIDs.SpellMod_CorpseExplosion_HealMinions, PrefabGUIDs.SpellMod_CorpseExplosion_KillingBlow, PrefabGUIDs.SpellMod_CorpseExplosion_SkullNova, PrefabGUIDs.SpellMod_CorpseExplosion_SnareBonus, PrefabGUIDs.SpellMod_Shared_Cooldown_Medium, PrefabGUIDs.SpellMod_Shared_TargetAoE_IncreaseRange_Medium, PrefabGUIDs.SpellMod_Shared_Unholy_SkeletonBomb }), [PrefabGUIDs.AB_Unholy_CorruptedSkull_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[6] { PrefabGUIDs.SpellMod_CorruptedSkull_BoneSpirit, PrefabGUIDs.SpellMod_CorruptedSkull_BonusDamage, PrefabGUIDs.SpellMod_CorruptedSkull_DetonateSkeleton, PrefabGUIDs.SpellMod_CorruptedSkull_LesserProjectiles, PrefabGUIDs.SpellMod_Shared_KnockbackOnHit_Medium, PrefabGUIDs.SpellMod_Shared_Projectile_RangeAndVelocity }), [PrefabGUIDs.AB_Unholy_DeathKnight_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_DeathKnight_BonusDamage, PrefabGUIDs.SpellMod_DeathKnight_BonusDamageBelowTreshhold, PrefabGUIDs.SpellMod_DeathKnight_IncreaseLifetime, PrefabGUIDs.SpellMod_DeathKnight_LifeLeech, PrefabGUIDs.SpellMod_DeathKnight_MaxHealth, PrefabGUIDs.SpellMod_DeathKnight_SkeletonMageOnDeath, PrefabGUIDs.SpellMod_DeathKnight_SkeletonMageOnLifetimeEnded, PrefabGUIDs.SpellMod_DeathKnight_SnareEnemiesOnSummon }), [PrefabGUIDs.AB_Unholy_Soulburn_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[10] { PrefabGUIDs.SpellMod_Shared_DispellDebuffs_Self, PrefabGUIDs.SpellMod_Soulburn_BonusDamage, PrefabGUIDs.SpellMod_Soulburn_BonusLifeDrain, PrefabGUIDs.SpellMod_Soulburn_ConsumeSkeletonEmpower, PrefabGUIDs.SpellMod_Soulburn_ConsumeSkeletonHeal, PrefabGUIDs.SpellMod_Soulburn_IncreasedSilenceDuration, PrefabGUIDs.SpellMod_Soulburn_IncreaseTriggerCount, PrefabGUIDs.SpellMod_Soulburn_ReduceCooldownOnSilence, PrefabGUIDs.SpellMod_Soulburn_Shield, PrefabGUIDs.SpellMod_Soulburn_SpawnSkeleton }), [PrefabGUIDs.AB_Unholy_WardOfTheDamned_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[9] { PrefabGUIDs.SpellMod_Shared_IncreaseMoveSpeedDuringChannel_Low, PrefabGUIDs.SpellMod_WardOfTheDamned_BonusDamageOnRecast, PrefabGUIDs.SpellMod_WardOfTheDamned_DamageMeleeAttackers, PrefabGUIDs.SpellMod_WardOfTheDamned_EmpowerSkeletonsOnRecast, PrefabGUIDs.SpellMod_WardOfTheDamned_HealOnAbsorbProjectile, PrefabGUIDs.SpellMod_WardOfTheDamned_KnockbackOnRecast, PrefabGUIDs.SpellMod_WardOfTheDamned_MightSpawnMageSkeleton, PrefabGUIDs.SpellMod_WardOfTheDamned_ShieldSkeletonsOnRecast, PrefabGUIDs.SpellMod_Shared_Unholy_SkeletonBomb }), [PrefabGUIDs.AB_Vampire_VeilOfBones_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[8] { PrefabGUIDs.SpellMod_VeilOfBones_BonusDamageBelowTreshhold, PrefabGUIDs.SpellMod_VeilOfBones_DashHealMinions, PrefabGUIDs.SpellMod_VeilOfBones_DashInflictCondemn, PrefabGUIDs.SpellMod_VeilOfBones_SpawnSkeletonMage, PrefabGUIDs.SpellMod_VeilOfBones_SpawnSkeleton, PrefabGUIDs.SpellMod_Shared_Veil_BuffAndIllusionDuration, PrefabGUIDs.SpellMod_VeilOfBones_SkeletonBomb, PrefabGUIDs.SpellMod_Shared_Veil_BonusDamageOnPrimary }), [PrefabGUIDs.AB_Unholy_ChainsOfDeath_AbilityGroup] = new <>z__ReadOnlyArray((PrefabGUID[])(object)new PrefabGUID[10] { PrefabGUIDs.SpellMod_ChainsOfDeath_BoneSpirit, PrefabGUIDs.SpellMod_ChainsOfDeath_Dot, PrefabGUIDs.SpellMod_ChainsOfDeath_DurationAndDamage, PrefabGUIDs.SpellMod_ChainsOfDeath_Explosion, PrefabGUIDs.SpellMod_ChainsOfDeath_FadingSnare, PrefabGUIDs.SpellMod_ChainsOfDeath_Haste, PrefabGUIDs.SpellMod_ChainsOfDeath_Leech, PrefabGUIDs.SpellMod_ChainsOfDeath_ReducedDamage, PrefabGUIDs.SpellMod_ChainsOfDeath_SkullNova, PrefabGUIDs.SpellMod_ChainsOfDeath_Slow }) }; public static bool TryGetSpellMods(PrefabGUID spell, out IReadOnlyList spellMods) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) return _spellModSets.TryGetValue(spell, out spellMods); } } internal static class Misc { public enum SpellSchool { Shadow, Blood, Chaos, Unholy, Illusion, Frost, Storm } public class BiDictionary : IEnumerable>, IEnumerable { private readonly Dictionary _forward = new Dictionary(); private readonly Dictionary _reverse = new Dictionary(); public T2 this[T1 key] => _forward[key]; public T1 this[T2 key] => _reverse[key]; public IEnumerable Keys => _forward.Keys; public IEnumerable Values => _forward.Values; public BiDictionary() { } public BiDictionary(IEnumerable> pairs) { foreach (var (key, value) in pairs) { Add(key, value); } } public void Add(T1 key, T2 value) { _forward[key] = value; _reverse[value] = key; } public bool TryGetByFirst(T1 key, out T2 value) { return _forward.TryGetValue(key, out value); } public bool TryGetBySecond(T2 key, out T1 value) { return _reverse.TryGetValue(key, out value); } public IEnumerator> GetEnumerator() { return _forward.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } public static class SpellSchoolInfusionMap { public static readonly BiDictionary SpellSchoolInfusions; static SpellSchoolInfusionMap() { //IL_0010: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) SpellSchoolInfusions = new BiDictionary(); SpellSchoolInfusions.Add(SpellSchool.Blood, PrefabGUIDs.SpellMod_Weapon_BloodInfused); SpellSchoolInfusions.Add(SpellSchool.Chaos, PrefabGUIDs.SpellMod_Weapon_ChaosInfused); SpellSchoolInfusions.Add(SpellSchool.Shadow, PrefabGUIDs.SpellMod_Weapon_UndeadInfused); SpellSchoolInfusions.Add(SpellSchool.Illusion, PrefabGUIDs.SpellMod_Weapon_IllusionInfused); SpellSchoolInfusions.Add(SpellSchool.Frost, PrefabGUIDs.SpellMod_Weapon_FrostInfused); SpellSchoolInfusions.Add(SpellSchool.Storm, PrefabGUIDs.SpellMod_Weapon_StormInfused); } } public enum ScrollingTextMessage { PlayerExperience, PlayerExpertise, PlayerLegacy, FamiliarExperience, ProfessionExperience, ProfessionYields } public static class PlayerBoolsManager { public const string EXPERIENCE_LOG_KEY = "ExperienceLogging"; public const string QUEST_LOG_KEY = "QuestLogging"; public const string PROFESSION_LOG_KEY = "ProfessionLogging"; public const string WEAPON_LOG_KEY = "WeaponLogging"; public const string BLOOD_LOG_KEY = "BloodLogging"; public const string SPELL_LOCK_KEY = "SpellLock"; public const string SHIFT_LOCK_KEY = "ShiftLock"; public const string PARTY_INVITE_KEY = "PartyInvite"; public const string EMOTE_ACTIONS_KEY = "EmoteActions"; public const string STARTER_KIT_KEY = "StarterKit"; public const string VBLOOD_EMOTES_KEY = "VBloodEmotes"; public const string SHINY_FAMILIARS_KEY = "ShinyFamiliars"; public const string REMINDERS_KEY = "Reminders"; public const string SCT_PLAYER_LVL_KEY = "PlayerExperienceSCT"; public const string SCT_PLAYER_WEP_KEY = "ExpertiseSCT"; public const string SCT_PLAYER_BL_KEY = "LegacySCT"; public const string SCT_FAMILIAR_LVL_KEY = "FamiliarExperienceSCT"; public const string SCT_PROFESSIONS_KEY = "ProfessionExperienceSCT"; public const string SCT_YIELD_KEY = "ProfessionYieldSCT"; public const string SHAPESHIFT_KEY = "Shapeshift"; public const string SHROUD_KEY = "Shroud"; public const string CLASS_BUFFS_KEY = "Passives"; public const string PRESTIGE_BUFFS_KEY = "PrestigeBuffs"; public static readonly Dictionary DefaultBools = new Dictionary { ["ExperienceLogging"] = false, ["QuestLogging"] = true, ["ProfessionLogging"] = false, ["WeaponLogging"] = false, ["BloodLogging"] = false, ["SpellLock"] = false, ["ShiftLock"] = false, ["PartyInvite"] = false, ["EmoteActions"] = false, ["StarterKit"] = false, ["VBloodEmotes"] = true, ["ShinyFamiliars"] = true, ["Reminders"] = true, ["PlayerExperienceSCT"] = true, ["ExpertiseSCT"] = true, ["LegacySCT"] = true, ["FamiliarExperienceSCT"] = true, ["ProfessionExperienceSCT"] = true, ["ProfessionYieldSCT"] = true, ["Shapeshift"] = false, ["Shroud"] = true, ["Passives"] = false, ["PrestigeBuffs"] = true }; public static bool GetPlayerBool(ulong steamId, string boolKey) { Dictionary dictionary = DataService.PlayerBoolsManager.LoadPlayerBools(steamId); if (dictionary.TryGetValue(boolKey, out var value)) { return value; } if (DefaultBools.TryGetValue(boolKey, out var value2)) { dictionary[boolKey] = value2; DataService.PlayerBoolsManager.SavePlayerBools(steamId, dictionary); return value2; } return false; } public static void SetPlayerBool(ulong steamId, string boolKey, bool value) { Dictionary dictionary = DataService.PlayerBoolsManager.LoadPlayerBools(steamId); dictionary[boolKey] = value; DataService.PlayerBoolsManager.SavePlayerBools(steamId, dictionary); } public static void TogglePlayerBool(ulong steamId, string boolKey) { Dictionary dictionary = DataService.PlayerBoolsManager.LoadPlayerBools(steamId); if (dictionary.ContainsKey(boolKey)) { dictionary[boolKey] = !dictionary[boolKey]; } else { dictionary[boolKey] = !DefaultBools.TryGetValue(boolKey, out var value) || !value; } DataService.PlayerBoolsManager.SavePlayerBools(steamId, dictionary); } public static bool TryGetPlayerBool(ulong steamId, string boolKey, out bool value) { Dictionary dictionary = DataService.PlayerBoolsManager.LoadPlayerBools(steamId); if (dictionary.TryGetValue(boolKey, out value)) { return true; } if (DefaultBools.TryGetValue(boolKey, out var value2)) { value = value2; dictionary[boolKey] = value2; DataService.PlayerBoolsManager.SavePlayerBools(steamId, dictionary); return true; } value = false; return false; } public static string GetEnabledDisabledBool(ulong steamId, string boolKey) { if (!GetPlayerBool(steamId, boolKey)) { return "disabled"; } return "enabled"; } } private static readonly Random _random = new Random(); private const string STAT_MOD = "StatMod"; private static readonly Dictionary _infusionShinyBuffs = new Dictionary { { PrefabGUIDs.SpellMod_Weapon_BloodInfused, new PrefabGUID(348724578) }, { PrefabGUIDs.SpellMod_Weapon_ChaosInfused, new PrefabGUID(-1576512627) }, { PrefabGUIDs.SpellMod_Weapon_UndeadInfused, new PrefabGUID(-1246704569) }, { PrefabGUIDs.SpellMod_Weapon_IllusionInfused, new PrefabGUID(1723455773) }, { PrefabGUIDs.SpellMod_Weapon_FrostInfused, new PrefabGUID(27300215) }, { PrefabGUIDs.SpellMod_Weapon_StormInfused, new PrefabGUID(-325758519) } }; private const string SCT_PLAYER_LVL = "PlayerXP"; private const string SCT_PLAYER_WEP = "ExpertiseXP"; private const string SCT_PLAYER_BL = "LegacyXP"; private const string SCT_FAMILIAR_LVL = "FamiliarXP"; private const string SCT_PROFESSIONS = "ProfessionXP"; private const string SCT_YIELD = "ProfessionYields"; public static readonly List ScrollingTextNames = new List(6) { "PlayerXP", "ExpertiseXP", "LegacyXP", "FamiliarXP", "ProfessionXP", "ProfessionYields" }; public static readonly Dictionary ScrollingTextNameMap = new Dictionary(StringComparer.CurrentCultureIgnoreCase) { { "PlayerXP", ScrollingTextMessage.PlayerExperience }, { "ExpertiseXP", ScrollingTextMessage.PlayerExpertise }, { "LegacyXP", ScrollingTextMessage.PlayerLegacy }, { "FamiliarXP", ScrollingTextMessage.FamiliarExperience }, { "ProfessionXP", ScrollingTextMessage.ProfessionExperience }, { "ProfessionYields", ScrollingTextMessage.ProfessionYields } }; public static readonly Dictionary ScrollingTextBoolKeyMap = new Dictionary { { ScrollingTextMessage.PlayerExperience, "PlayerExperienceSCT" }, { ScrollingTextMessage.PlayerExpertise, "ExpertiseSCT" }, { ScrollingTextMessage.PlayerLegacy, "LegacySCT" }, { ScrollingTextMessage.FamiliarExperience, "FamiliarExperienceSCT" }, { ScrollingTextMessage.ProfessionExperience, "ProfessionExperienceSCT" }, { ScrollingTextMessage.ProfessionYields, "ProfessionYieldSCT" } }; private static readonly Dictionary _statModPresetValues = new Dictionary { { new PrefabGUID(-1545133628), 0.25f }, { new PrefabGUID(1448170922), 0.15f }, { new PrefabGUID(-1700712765), 0.25f }, { new PrefabGUID(523084427), 0.15f }, { new PrefabGUID(1179205309), 0.15f }, { new PrefabGUID(-2004879548), 0.1f }, { new PrefabGUID(539854831), 0.15f }, { new PrefabGUID(-1274939577), 0.1f }, { new PrefabGUID(1032018140), 0.15f }, { new PrefabGUID(1842448780), 0.15f } }; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static GameDataSystem GameDataSystem => SystemService.GameDataSystem; public static IReadOnlyDictionary InfusionShinyBuffs => _infusionShinyBuffs; public static string FormatTimespan(TimeSpan timeSpan) { return timeSpan.ToString("mm\\:ss"); } public static string FormatPercentStatValue(float value) { return (value * 100f).ToString("F0") + "%"; } public static bool TryGetStatTypeFromPrefabName(PrefabGUID prefabGuid, float originalValue, out UnitStatType statType, out float resolvedValue) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_021f: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Expected O, but got Unknown statType = (UnitStatType)0; resolvedValue = originalValue; string prefabName = prefabGuid.GetPrefabName(); string text = prefabName.Split(' ', StringSplitOptions.RemoveEmptyEntries).FirstOrDefault(); if (text == null) { return false; } text = text.Replace("StatMod_", "", StringComparison.CurrentCultureIgnoreCase).Replace("Unique_", "", StringComparison.CurrentCultureIgnoreCase); string[] array = new string[3] { "_Low", "_Mid", "_High" }; foreach (string text2 in array) { if (text.EndsWith(text2, StringComparison.CurrentCultureIgnoreCase)) { string text3 = text; int length = text2.Length; text = text3.Substring(0, text3.Length - length); break; } } if (_statModPresetValues.TryGetValue(prefabGuid, out var value)) { resolvedValue = value; } if (Enum.TryParse(text, ignoreCase: true, out statType)) { return true; } switch (text.ToLowerInvariant()) { case "attackspeed": statType = (UnitStatType)59; return true; case "criticalstrikephysical": statType = (UnitStatType)29; return true; case "criticalstrikephysicalpower": statType = (UnitStatType)30; return true; case "criticalstrikespellpower": statType = (UnitStatType)32; return true; case "criticalstrikespells": statType = (UnitStatType)31; return true; case "criticalstrikespell": statType = (UnitStatType)31; return true; case "spellcooldownreduction": statType = (UnitStatType)70; return true; case "weaponcooldownreduction": statType = (UnitStatType)71; return true; case "spellleech": statType = (UnitStatType)28; return true; default: { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(40, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Unmapped stat mod prefab: '"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("' → parsed '"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(text); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("'"); } log.LogWarning(val); return false; } } } public static string FormatWeaponStatValue(WeaponManager.WeaponStats.WeaponStatType statType, float value) { return WeaponManager.WeaponStats.WeaponStatFormats[statType] switch { "integer" => ((int)value).ToString(), "decimal" => value.ToString("F2"), "percentage" => (value * 100f).ToString("F1") + "%", _ => value.ToString(), }; } public static void ReplySCTDetails(ChatCommandContext ctx) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) ulong platformId = ctx.User.PlatformId; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.AppendLine("SCT Options:"); int num = 0; foreach (KeyValuePair item in ScrollingTextNameMap) { string key = item.Key; ScrollingTextMessage value = item.Value; if (ScrollingTextBoolKeyMap.TryGetValue(value, out var value2)) { string enabledDisabledBool = PlayerBoolsManager.GetEnabledDisabledBool(platformId, value2); StringBuilder stringBuilder2 = stringBuilder; StringBuilder.AppendInterpolatedStringHandler handler = new StringBuilder.AppendInterpolatedStringHandler(48, 3, stringBuilder2); handler.AppendLiteral(""); handler.AppendFormatted(++num); handler.AppendLiteral("| "); handler.AppendFormatted(key); handler.AppendLiteral(" ("); handler.AppendFormatted(enabledDisabledBool); handler.AppendLiteral(")"); stringBuilder2.AppendLine(ref handler); } } LocalizationService.HandleReply(ctx, stringBuilder.ToString()); } public static void GiveOrDropItem(User user, Entity playerCharacter, PrefabGUID itemType, int amount) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_001b: 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_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) NativeParallelHashMap itemHashLookupMap = GameDataSystem.ItemHashLookupMap; string message; if (InventoryUtilities.HasFreeStackSpaceOfType(EntityManager, playerCharacter, itemHashLookupMap, itemType, amount)) { ServerGameManager serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(playerCharacter, itemType, amount))) { message = "Your bag feels slightly heavier..."; LocalizationService.HandleServerReply(EntityManager, user, message); return; } } message = "Something fell out of your bag!"; InventoryUtilitiesServer.CreateDropItem(EntityManager, playerCharacter, itemType, amount, default(Entity)); LocalizationService.HandleServerReply(EntityManager, user, message); } public static bool RollForChance(float chance) { return _random.NextDouble() < (double)chance; } public static uint GetRandomSeed(uint salt = 0u) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) uint serverFrame = (uint)Core.ServerGameManager.ServerFrame; uint num = (uint)(Core.ServerGameManager.ServerTime * 1000.0 % 4294967295.0); uint num2 = math.hash(new uint4(serverFrame, num, salt, 2654435769u)); if (num2 != 0) { return num2; } return 1u; } } internal static class Progression { public static class ModifyUnitStatBuffSettings { public class ModifyUnitStatBuff { public Enum SourceStatType { get; } public UnitStatType TargetUnitStat { get; } public ModificationType ModificationType { get; } public AttributeCapType AttributeCapType { get; } public float BaseCap { get; } public bool Invert { get; } public ModifyUnitStatBuff(Enum sourceStatType, UnitStatType targetUnitStat, ModificationType modificationType = 3, AttributeCapType capType = -1, bool invert = false) { //IL_0008: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) SourceStatType = sourceStatType; TargetUnitStat = targetUnitStat; ModificationType = modificationType; AttributeCapType = capType; BaseCap = GetBaseCapValue(sourceStatType); Invert = invert; base..ctor(); } private static float GetBaseCapValue(object statType) { if (!(statType is BloodManager.BloodStats.BloodStatType bloodStatType)) { if (!(statType is WeaponManager.WeaponStats.WeaponStatType weaponStatType)) { if (statType is ClassManager.ClassStatType classStatType) { ClassManager.ClassStatType key = classStatType; if (ClassManager.ClassStatBaseCaps.TryGetValue(key, out var value)) { return value; } } } else { WeaponManager.WeaponStats.WeaponStatType key2 = weaponStatType; if (WeaponManager.WeaponStats.WeaponStatBaseCaps.TryGetValue(key2, out var value2)) { return value2; } } } else { BloodManager.BloodStats.BloodStatType key3 = bloodStatType; if (BloodManager.BloodStats.BloodStatBaseCaps.TryGetValue(key3, out var value3)) { return value3; } } return 0f; } } private static readonly Dictionary _modifyUnitExpertiseStatBuffs = new Dictionary { { WeaponManager.WeaponStats.WeaponStatType.MaxHealth, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.MaxHealth, (UnitStatType)4, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.MovementSpeed, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.MovementSpeed, (UnitStatType)5, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.PrimaryAttackSpeed, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.PrimaryAttackSpeed, (UnitStatType)59, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.PhysicalLifeLeech, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.PhysicalLifeLeech, (UnitStatType)27, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.SpellLifeLeech, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.SpellLifeLeech, (UnitStatType)28, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.PrimaryLifeLeech, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.PrimaryLifeLeech, (UnitStatType)61, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.PhysicalPower, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.PhysicalPower, (UnitStatType)0, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.SpellPower, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.SpellPower, (UnitStatType)25, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.PhysicalCritChance, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.PhysicalCritChance, (UnitStatType)29, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.PhysicalCritDamage, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.PhysicalCritDamage, (UnitStatType)30, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.SpellCritChance, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.SpellCritChance, (UnitStatType)31, (ModificationType)3, (AttributeCapType)(-1)) }, { WeaponManager.WeaponStats.WeaponStatType.SpellCritDamage, new ModifyUnitStatBuff(WeaponManager.WeaponStats.WeaponStatType.SpellCritDamage, (UnitStatType)32, (ModificationType)3, (AttributeCapType)(-1)) } }; private static readonly Dictionary _modifyUnitLegacyStatBuffs = new Dictionary { { BloodManager.BloodStats.BloodStatType.HealingReceived, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.HealingReceived, (UnitStatType)75, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.DamageReduction, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.DamageReduction, (UnitStatType)74, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.PhysicalResistance, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.PhysicalResistance, (UnitStatType)8, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.SpellResistance, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.SpellResistance, (UnitStatType)23, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.ResourceYield, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.ResourceYield, (UnitStatType)3, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.ReducedBloodDrain, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.ReducedBloodDrain, (UnitStatType)81, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.SpellCooldownRecoveryRate, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.SpellCooldownRecoveryRate, (UnitStatType)70, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.WeaponCooldownRecoveryRate, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.WeaponCooldownRecoveryRate, (UnitStatType)71, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.UltimateCooldownRecoveryRate, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.UltimateCooldownRecoveryRate, (UnitStatType)72, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.MinionDamage, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.MinionDamage, (UnitStatType)73, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.AbilityAttackSpeed, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.AbilityAttackSpeed, (UnitStatType)33, (ModificationType)3, (AttributeCapType)(-1)) }, { BloodManager.BloodStats.BloodStatType.CorruptionDamageReduction, new ModifyUnitStatBuff(BloodManager.BloodStats.BloodStatType.CorruptionDamageReduction, (UnitStatType)95, (ModificationType)3, (AttributeCapType)(-1)) } }; public static IReadOnlyDictionary ModifyUnitExpertiseStatBuffs => _modifyUnitExpertiseStatBuffs; public static IReadOnlyDictionary ModifyUnitLegacyStatBuffs => _modifyUnitLegacyStatBuffs; } public static class PlayerProgressionCacheManager { public class PlayerProgressionData { public int Level { get; set; } public bool HasPrestiged { get; set; } public PlayerProgressionData(int level, bool hasPrestiged) { Level = level; HasPrestiged = hasPrestiged; base..ctor(); } } private static readonly ConcurrentDictionary _playerProgressionCache = new ConcurrentDictionary(); public static IReadOnlyList IgnoreShared => DataService.PlayerDictionaries._ignoreSharedExperience; public static void UpdatePlayerProgression(ulong steamId, int level, bool hasPrestiged) { if (_playerProgressionCache.ContainsKey(steamId)) { _playerProgressionCache[steamId] = new PlayerProgressionData(level, hasPrestiged); } else { _playerProgressionCache.TryAdd(steamId, new PlayerProgressionData(level, hasPrestiged)); } } public static void UpdatePlayerProgressionLevel(ulong steamId, int level) { if (_playerProgressionCache.TryGetValue(steamId, out var value)) { value.Level = level; } else { UpdatePlayerProgression(steamId, level, hasPrestiged: false); } } public static void UpdatePlayerProgressionPrestige(ulong steamId, bool hasPrestiged) { if (_playerProgressionCache.TryGetValue(steamId, out var value)) { value.HasPrestiged = hasPrestiged; } else { UpdatePlayerProgression(steamId, 1, hasPrestiged); } } public static PlayerProgressionData GetProgressionCacheData(ulong steamId) { if (_playerProgressionCache.TryGetValue(steamId, out var value)) { return value; } int level = LevelingSystem.GetLevel(steamId); Dictionary prestiges; int value2; bool hasPrestiged = steamId.TryGetPlayerPrestiges(out prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out value2) && value2 >= 1; value = new PlayerProgressionData(level, hasPrestiged); _playerProgressionCache[steamId] = value; return value; } } private static readonly GameModeType _gameMode = SystemService.ServerGameSettingsSystem._Settings.GameModeType; private static readonly bool _isPvE = ((object)(GameModeType)(ref _gameMode)).Equals((object)(GameModeType)0); private static readonly bool _expShare = ConfigService.ExpShare; private static readonly int _shareLevelRange = ConfigService.ExpShareLevelRange; private static readonly float _shareDistance = ConfigService.ExpShareDistance; private static readonly PrefabGUID _pveCombatBuff = Buffs.PvECombatBuff; private static readonly PrefabGUID _draculaVBlood = PrefabGUIDs.CHAR_Vampire_Dracula_VBlood; private static readonly PrefabGUID _megaraVBlood = PrefabGUIDs.CHAR_Blackfang_Morgana_VBlood; private const float EXP_CONSTANT = 0.1f; private const float EXP_POWER = 2f; private const int SIMULATED_LEVEL_FACTOR = 2; private static readonly Dictionary _unitStatAttributeCaps = new Dictionary(); private static readonly HashSet _vampireAttributeUnitStatTypes = new HashSet { (UnitStatType)82, (UnitStatType)5, (UnitStatType)83, (UnitStatType)84, (UnitStatType)85, (UnitStatType)67, (UnitStatType)68, (UnitStatType)33, (UnitStatType)59, (UnitStatType)71, (UnitStatType)70, (UnitStatType)72, (UnitStatType)91, (UnitStatType)61, (UnitStatType)27, (UnitStatType)28, (UnitStatType)73, (UnitStatType)38, (UnitStatType)39, (UnitStatType)40, (UnitStatType)41, (UnitStatType)42, (UnitStatType)43, (UnitStatType)44, (UnitStatType)52, (UnitStatType)53, (UnitStatType)54, (UnitStatType)55, (UnitStatType)56, (UnitStatType)57, (UnitStatType)49, (UnitStatType)51, (UnitStatType)48, (UnitStatType)47, (UnitStatType)45, (UnitStatType)46, (UnitStatType)29, (UnitStatType)30, (UnitStatType)31, (UnitStatType)32, (UnitStatType)95, (UnitStatType)26, (UnitStatType)74, (UnitStatType)75, (UnitStatType)77, (UnitStatType)81, (UnitStatType)94, (UnitStatType)93, (UnitStatType)65, (UnitStatType)3, (UnitStatType)58, (UnitStatType)76, (UnitStatType)86, (UnitStatType)90, (UnitStatType)88, (UnitStatType)89 }; private static SystemService SystemService => Core.SystemService; private static UserActivityGridSystem UserActivityGridSystem => SystemService.UserActivityGridSystem; private static ServerBootstrapSystem ServerBootstrapSystem => SystemService.ServerBootstrapSystem; public static IReadOnlyDictionary UnitStatAtributeCaps => _unitStatAttributeCaps; public static HashSet GetDeathParticipants(Entity source) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Expected O, but got Unknown //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0084: 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_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_0115: 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) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) float3 position = source.GetPosition(); int level = PlayerProgressionCacheManager.GetProgressionCacheData(source.GetUser().PlatformId).Level; if (!_expShare) { return new HashSet { source }; } ServerBootstrapSystem serverBootstrapSystem = ServerBootstrapSystem; Dictionary dictionary = ((serverBootstrapSystem == null) ? null : serverBootstrapSystem._PlatformIdToApprovedUserIndex?.ReverseIl2CppDictionary()); HashSet hashSet = new HashSet { source }; try { UserActivityGrid userActivityGrid = UserActivityGridSystem.GetUserActivityGrid(); UserBitMask128 usersInRadius = ((UserActivityGrid)(ref userActivityGrid)).GetUsersInRadius(position, _shareDistance); Enumerable users = ((UserBitMask128)(ref usersInRadius)).GetUsers(); Enumerator enumerator = ((Enumerable)(ref users)).GetEnumerator(); while (((Enumerator)(ref enumerator)).MoveNext()) { int current = ((Enumerator)(ref enumerator)).Current; if (!dictionary.TryGetValue(current, out var value) || Enumerable.Contains(PlayerProgressionCacheManager.IgnoreShared, value) || !value.TryGetPlayerInfo(out var playerInfo) || !playerInfo.CharEntity.HasBuff(_pveCombatBuff)) { continue; } PlayerProgressionCacheManager.PlayerProgressionData progressionCacheData = PlayerProgressionCacheManager.GetProgressionCacheData(value); if (_isPvE) { if (progressionCacheData.HasPrestiged || _shareLevelRange.Equals(0) || source.IsAllied(playerInfo.CharEntity)) { hashSet.Add(playerInfo.CharEntity); } else if (Math.Abs(level - progressionCacheData.Level) <= _shareLevelRange) { hashSet.Add(playerInfo.CharEntity); } } else if (source.IsAllied(playerInfo.CharEntity)) { hashSet.Add(playerInfo.CharEntity); } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(49, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error getting users in range from activity grid: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } return hashSet; } public static List GetUsersNearPosition(float3 position, float radius) { //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Expected O, but got Unknown //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) ServerBootstrapSystem serverBootstrapSystem = ServerBootstrapSystem; Dictionary dictionary = ((serverBootstrapSystem == null) ? null : serverBootstrapSystem._PlatformIdToApprovedUserIndex?.ReverseIl2CppDictionary()); List list = new List(); try { UserActivityGrid userActivityGrid = UserActivityGridSystem.GetUserActivityGrid(); UserBitMask128 usersInRadius = ((UserActivityGrid)(ref userActivityGrid)).GetUsersInRadius(position, radius); Enumerable users = ((UserBitMask128)(ref usersInRadius)).GetUsers(); Enumerator enumerator = ((Enumerable)(ref users)).GetEnumerator(); while (((Enumerator)(ref enumerator)).MoveNext()) { int current = ((Enumerator)(ref enumerator)).Current; if (dictionary.TryGetValue(current, out var value) && value.TryGetPlayerInfo(out var playerInfo)) { list.Add(playerInfo); } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(49, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error getting users in range from activity grid: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } return list; } public static bool ConsumedDracula(Entity userEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) if (userEntity.TryGetComponent(out ProgressionMapper componentData) && ((NetworkedEntity)(ref componentData.ProgressionEntity)).GetEntityOnServer().TryGetBuffer(out DynamicBuffer dynamicBuffer)) { Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { UnlockedVBlood current = enumerator.Current; PrefabGUID vBlood = current.VBlood; if (((PrefabGUID)(ref vBlood)).Equals(_draculaVBlood)) { return true; } } } return false; } public static bool ConsumedMegara(Entity userEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) if (userEntity.TryGetComponent(out ProgressionMapper componentData) && ((NetworkedEntity)(ref componentData.ProgressionEntity)).GetEntityOnServer().TryGetBuffer(out DynamicBuffer dynamicBuffer)) { Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { UnlockedVBlood current = enumerator.Current; PrefabGUID vBlood = current.VBlood; if (((PrefabGUID)(ref vBlood)).Equals(_megaraVBlood)) { return true; } } } return false; } public static int GetSimulatedLevel(Entity userEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) if (userEntity.TryGetComponent(out ProgressionMapper componentData) && ((NetworkedEntity)(ref componentData.ProgressionEntity)).GetEntityOnServer().TryGetBuffer(out DynamicBuffer dynamicBuffer)) { return dynamicBuffer.Length * 2; } return 0; } public unsafe static void GetAttributeCaps() { //IL_0000: 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) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Expected O, but got Unknown //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) if (PrefabGUIDs.CHAR_VampireMale.GetPrefabEntity().TryGetComponent(out VampireAttributeCaps componentData)) { BlobAssetReference> caps = componentData.Caps; VampireAttributes_Unboxed* unsafePtr = (VampireAttributes_Unboxed*)caps.GetUnsafePtr(); { foreach (UnitStatType vampireAttributeUnitStatType in _vampireAttributeUnitStatTypes) { AttributeCap cap = unsafePtr->GetCap(vampireAttributeUnitStatType); _unitStatAttributeCaps[vampireAttributeUnitStatType] = cap; } return; } } ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(50, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to get "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("VampireAttributeCaps"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" from CHAR_VampireMale prefabEntity!"); } log.LogWarning(val); } public static int ConvertXpToLevel(float xp) { return (int)(0.10000000149011612 * Math.Sqrt(xp)); } public static int ConvertLevelToXp(int level) { return (int)Math.Pow((float)level / 0.1f, 2.0); } } internal static class Quests { private static readonly PrefabGUID _imprisonedBuff = PrefabGUIDs.ImprisonedBuff; private const float MAX_DISTANCE = 2000f; public static readonly Dictionary QuestTypeColor = new Dictionary { { QuestSystem.QuestType.Daily, "Daily Quest" }, { QuestSystem.QuestType.Weekly, "Weekly Quest" } }; private static readonly Dictionary _questTargetType = new Dictionary { { QuestSystem.TargetType.Kill, "Unit" }, { QuestSystem.TargetType.Craft, "Item" }, { QuestSystem.TargetType.Gather, "Resource" }, { QuestSystem.TargetType.Fish, "Fishing" } }; private static EntityManager EntityManager => Core.EntityManager; public static void QuestTrackReply(ChatCommandContext ctx, Dictionary questData, QuestSystem.QuestType questType) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; _ = ctx.Event.User; if (questData.TryGetValue(questType, out (QuestSystem.QuestObjective, int, DateTime) value) && value.Item1.Goal.Equals(QuestSystem.TargetType.Kill) && !value.Item1.Complete) { ReadOnly targetCache = Bloodcraft.Systems.QuestTargetSystem.TargetCache; if (!targetCache.IsCreated || !targetCache.ContainsKey(value.Item1.Target)) { LocalizationService.HandleReply(ctx, "Targets have all been killed, give them a chance to respawn! If this doesn't seem right consider rerolling your " + QuestTypeColor[questType] + "."); return; } float3 position = senderCharacterEntity.GetPosition(); Entity val = default(Entity); NativeParallelMultiHashMapIterator val2 = default(NativeParallelMultiHashMapIterator); bool flag = targetCache.TryGetFirstValue(value.Item1.Target, ref val, ref val2); Entity entity = Entity.Null; float num = float.MaxValue; while (flag) { if (val.Exists() && !val.HasBuff(_imprisonedBuff) && !val.IsFamiliar()) { float num2 = math.distance(position, val.GetPosition()); if (num2 <= 2000f && num2 < num) { entity = val; num = num2; } } flag = targetCache.TryGetNextValue(ref val, ref val2); } if (!entity.Exists()) { LocalizationService.HandleReply(ctx, "Targets have all been killed, give them a chance to respawn!"); return; } if (entity.IsVBloodOrGateBoss()) { LocalizationService.HandleReply(ctx, "Use the VBlood menu to track bosses!"); return; } float3 position2 = entity.GetPosition(); float num3 = math.distance(position, position2); float3 direction = math.normalize(position2 - position); string value2 = "" + GetCardinalDirection(direction) + ""; _ = (DateTime.UtcNow - QuestService._lastUpdate).TotalSeconds; LocalizationService.HandleReply(ctx, $"Nearest {value.Item1.Target.GetLocalizedName()} was {(int)num3}f away to the {value2}!"); } else { LocalizationService.HandleReply(ctx, "Tracking is only available for incomplete kill quests."); } } public static void QuestObjectiveReply(ChatCommandContext ctx, Dictionary questData, QuestSystem.QuestType questType) { //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) if (questData.TryGetValue(questType, out (QuestSystem.QuestObjective, int, DateTime) value) && !value.Item1.Complete) { string timeUntilReset = GetTimeUntilReset(value, questType); LocalizationService.HandleReply(ctx, $"{QuestTypeColor[questType]}: {value.Item1.Goal} {value.Item1.Target.GetLocalizedName()}x{value.Item1.RequiredAmount} [{value.Item2}/{value.Item1.RequiredAmount}]"); LocalizationService.HandleReply(ctx, $"Time until {questType} reset - {timeUntilReset} | {_questTargetType[value.Item1.Goal]} Prefab: {value.Item1.Target.GetPrefabName()}"); } else if (value.Item1.Complete) { string timeUntilReset2 = GetTimeUntilReset(value, questType); LocalizationService.HandleReply(ctx, $"You've already completed your {QuestTypeColor[questType]}! Time until {questType} reset - {timeUntilReset2}"); } else { LocalizationService.HandleReply(ctx, "You don't have a " + QuestTypeColor[questType] + "."); } } private static string GetTimeUntilReset((QuestSystem.QuestObjective Objective, int Progress, DateTime LastReset) questObjective, QuestSystem.QuestType questType) { DateTime item = questObjective.LastReset; DateTime obj = (questType.Equals(QuestSystem.QuestType.Daily) ? item.AddDays(1.0) : item.AddDays(7.0)); DateTime utcNow = DateTime.UtcNow; TimeSpan timeSpan = obj - utcNow; string result = ""; if (questType.Equals(QuestSystem.QuestType.Daily)) { result = $"{timeSpan.Hours:D2}:{timeSpan.Minutes:D2}:{timeSpan.Seconds:D2}"; } else if (questType.Equals(QuestSystem.QuestType.Weekly)) { result = $"{timeSpan.Days:D1}:{timeSpan.Hours:D2}:{timeSpan.Minutes:D2}:{timeSpan.Seconds:D2}"; } return result; } private static string GetCardinalDirection(float3 direction) { //IL_0000: 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) float num = math.degrees(math.atan2(direction.z, direction.x)); if (num < 0f) { num += 360f; } if ((double)num >= 337.5 || (double)num < 22.5) { return "East"; } if ((double)num >= 22.5 && (double)num < 67.5) { return "Northeast"; } if ((double)num >= 67.5 && (double)num < 112.5) { return "North"; } if ((double)num >= 112.5 && (double)num < 157.5) { return "Northwest"; } if ((double)num >= 157.5 && (double)num < 202.5) { return "West"; } if ((double)num >= 202.5 && (double)num < 247.5) { return "Southwest"; } if ((double)num >= 247.5 && (double)num < 292.5) { return "South"; } return "Southeast"; } } internal static class Recipes { private static class Requirements { public static PrefabGUID PrimalJewel { get; } = new PrefabGUID(ConfigService.PrimalJewelCost); } private static class Stations { public static PrefabGUID AdvancedGrinder { get; } = new PrefabGUID(-178579946); public static PrefabGUID PrimitiveGrinder { get; } = new PrefabGUID(-600683642); public static PrefabGUID AdvancedFurnace { get; } = new PrefabGUID(-222851985); public static PrefabGUID Fabricator { get; } = new PrefabGUID(-465055967); public static PrefabGUID ShardExtractor { get; } = new PrefabGUID(1794206684); public static PrefabGUID GemCuttingTable { get; } = new PrefabGUID(-21483617); public static PrefabGUID AdvancedBloodPress { get; } = new PrefabGUID(-684391635); } private static class Inventories { public static PrefabGUID RefinementLarge { get; } = new PrefabGUID(1436956144); public static PrefabGUID RefinementSmall { get; } = new PrefabGUID(-534407618); public static PrefabGUID Extractor { get; } = new PrefabGUID(-1814907421); } private static class RecipeIds { public static PrefabGUID IronBody { get; } = new PrefabGUID(-1270503528); public static PrefabGUID VampiricDust { get; } = new PrefabGUID(311920560); public static PrefabGUID CopperWires { get; } = new PrefabGUID(-2031309726); public static PrefabGUID SilverIngot { get; } = new PrefabGUID(-1633898285); public static PrefabGUID FakeFlower { get; } = new PrefabGUID(-2095604835); public static PrefabGUID ChargedBattery { get; } = new PrefabGUID(-40415372); public static PrefabGUID GoldIngot { get; } = new PrefabGUID(-882942445); public static PrefabGUID ExtractShard { get; } = new PrefabGUID(1743327679); public static PrefabGUID SolarusShard { get; } = new PrefabGUID(-958598508); public static PrefabGUID MonsterShard { get; } = new PrefabGUID(1791150988); public static PrefabGUID ManticoreShard { get; } = new PrefabGUID(-111826090); public static PrefabGUID DraculaShard { get; } = new PrefabGUID(-414358988); public static PrefabGUID MorganaShard { get; } = PrefabGUIDs.Recipe_MagicSource_General_T09_Morgana; public static PrefabGUID FakeGemdust { get; } = new PrefabGUID(-1105418306); public static PrefabGUID BloodCrystal { get; } = new PrefabGUID(-597461125); public static PrefabGUID PrimalStygian { get; } = new PrefabGUID(-259193408); } private static class Items { public static PrefabGUID BatHide { get; } = new PrefabGUID(1262845777); public static PrefabGUID LesserStygian { get; } = new PrefabGUID(2103989354); public static PrefabGUID BloodEssence { get; } = new PrefabGUID(862477668); public static PrefabGUID PlantThistle { get; } = new PrefabGUID(-598100816); public static PrefabGUID BatteryCharge { get; } = new PrefabGUID(-77555820); public static PrefabGUID TechScrap { get; } = new PrefabGUID(834864259); public static PrefabGUID PrimalEssence { get; } = new PrefabGUID(1566989408); public static PrefabGUID CopperWires { get; } = new PrefabGUID(-456161884); public static PrefabGUID EmpBuilding { get; } = new PrefabGUID(-1447213995); public static PrefabGUID DepletedBattery { get; } = new PrefabGUID(1270271716); public static PrefabGUID JewelTemplate { get; } = new PrefabGUID(1075994038); public static PrefabGUID GoldJewelry { get; } = new PrefabGUID(-1749304196); public static PrefabGUID GoldIngot { get; } = new PrefabGUID(-1027710236); public static PrefabGUID BloodCrystal { get; } = new PrefabGUID(-1913156733); public static PrefabGUID GreaterEssence { get; } = new PrefabGUID(271594022); public static PrefabGUID GreaterStygian { get; } = new PrefabGUID(576389135); public static PrefabGUID PrimalStygian { get; } = new PrefabGUID(28358550); } private static class Components { public static PrefabGUID PristineHeart { get; } = new PrefabGUID(-1413694594); public static PrefabGUID RadiantFibre { get; } = new PrefabGUID(-182923609); public static PrefabGUID Resonator { get; } = new PrefabGUID(-1629804427); public static PrefabGUID Document { get; } = new PrefabGUID(1334469825); public static PrefabGUID DemonFragment { get; } = new PrefabGUID(-77477508); public static PrefabGUID MagicalComponent { get; } = new PrefabGUID(1488205677); public static PrefabGUID TailoringComponent { get; } = new PrefabGUID(828271620); public static PrefabGUID GemGrindstone { get; } = new PrefabGUID(2115367516); public static PrefabGUID GoldOre { get; } = new PrefabGUID(660533034); public static PrefabGUID ProcessedSulphur { get; } = new PrefabGUID(880699252); public static PrefabGUID Crystal { get; } = new PrefabGUID(-257494203); } private static class Gems { public static PrefabGUID PerfectAmethyst { get; } = new PrefabGUID(-106283194); public static PrefabGUID PerfectEmerald { get; } = new PrefabGUID(1354115931); public static PrefabGUID PerfectRuby { get; } = new PrefabGUID(188653143); public static PrefabGUID PerfectSapphire { get; } = new PrefabGUID(-2020212226); public static PrefabGUID PerfectTopaz { get; } = new PrefabGUID(-1983566585); public static PrefabGUID PerfectMiststone { get; } = new PrefabGUID(750542699); } private static class Shards { public static PrefabGUID Solarus { get; } = new PrefabGUID(-21943750); public static PrefabGUID Monster { get; } = new PrefabGUID(-1581189572); public static PrefabGUID Manticore { get; } = new PrefabGUID(-1260254082); public static PrefabGUID Dracula { get; } = new PrefabGUID(666638454); public static PrefabGUID Morgana { get; } = PrefabGUIDs.Item_MagicSource_SoulShard_Morgana; } private static class Containers { public static PrefabGUID SolarusShard { get; } = new PrefabGUID(-824445631); public static PrefabGUID MonsterShard { get; } = new PrefabGUID(-1996942061); public static PrefabGUID ManticoreShard { get; } = new PrefabGUID(653759442); public static PrefabGUID DraculaShard { get; } = new PrefabGUID(1495743889); public static PrefabGUID MorganaShard { get; } = PrefabGUIDs.TM_Castle_Container_Specialized_Soulshards_Morgana; } private static class Collections { public static IReadOnlyList ShardRecipes { get; } = new List { RecipeIds.SolarusShard, RecipeIds.MonsterShard, RecipeIds.ManticoreShard, RecipeIds.DraculaShard, RecipeIds.MorganaShard }; public static IReadOnlyList SoulShards { get; } = new List { Shards.Solarus, Shards.Monster, Shards.Manticore, Shards.Dracula, Shards.Morgana }; public static IReadOnlyList ShardContainers { get; } = new List { Containers.SolarusShard, Containers.MonsterShard, Containers.ManticoreShard, Containers.DraculaShard, Containers.MorganaShard }; public static IReadOnlyDictionary RecipesToShards { get; } = new Dictionary { { RecipeIds.SolarusShard, Shards.Solarus }, { RecipeIds.MonsterShard, Shards.Monster }, { RecipeIds.ManticoreShard, Shards.Manticore }, { RecipeIds.DraculaShard, Shards.Dracula }, { RecipeIds.MorganaShard, Shards.Morgana } }; } private sealed class MiscItemAdjustment { public PrefabGUID ItemGuid { get; } public PrefabGUID SalvageRecipeGuid { get; } public float SalvageTimer { get; } public (PrefabGUID guid, int amount)[] Requirements { get; } public MiscItemAdjustment(PrefabGUID itemGuid, PrefabGUID salvageRecipeGuid, float salvageTimer, params (PrefabGUID guid, int amount)[] requirements) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: Unknown result type (might be due to invalid IL or missing references) ItemGuid = itemGuid; SalvageRecipeGuid = salvageRecipeGuid; SalvageTimer = salvageTimer; Requirements = requirements ?? Array.Empty<(PrefabGUID, int)>(); } } private sealed class StationAdjustment { public PrefabGUID StationGuid { get; } public PrefabGUID[] RecipesToAdd { get; } public PrefabGUID[] RecipesToRemove { get; } public StationAdjustment(PrefabGUID stationGuid, PrefabGUID[] recipesToAdd, PrefabGUID[] recipesToRemove) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) StationGuid = stationGuid; RecipesToAdd = recipesToAdd ?? Array.Empty(); RecipesToRemove = recipesToRemove ?? Array.Empty(); } } private static readonly IReadOnlyList MiscItemAdjustments = new List { new MiscItemAdjustment(Items.EmpBuilding, PrefabGUIDs.Recipe_CastleUpkeep_T02, 20f, (Items.DepletedBattery, 2), (Items.TechScrap, 15)), new MiscItemAdjustment(Items.PrimalEssence, PrefabGUIDs.Recipe_CastleUpkeep_T02, 10f, (Items.BatteryCharge, 5)), new MiscItemAdjustment(Items.CopperWires, PrefabGUIDs.Recipe_CastleUpkeep_T02, 15f, (Items.BatteryCharge, 1)), new MiscItemAdjustment(Items.BatHide, PrefabGUIDs.Recipe_CastleUpkeep_T02, 15f, (Items.LesserStygian, 3), (Items.BloodEssence, 5)), new MiscItemAdjustment(Components.GoldOre, PrefabGUIDs.Recipe_CastleUpkeep_T02, 10f, (Items.GoldJewelry, 2)), new MiscItemAdjustment(Components.RadiantFibre, PrefabGUIDs.Recipe_CastleUpkeep_T02, 10f, (PrefabGUIDs.Item_Ingredient_Gemdust, 8), (PrefabGUIDs.Item_Ingredient_Plant_PlantFiber, 16), (PrefabGUIDs.Item_Ingredient_Pollen, 24)) }; private static readonly IReadOnlyList StationAdjustments = new List { new StationAdjustment(Stations.AdvancedGrinder, (PrefabGUID[])(object)new PrefabGUID[1] { RecipeIds.VampiricDust }, (PrefabGUID[])(object)new PrefabGUID[2] { RecipeIds.PrimalStygian, RecipeIds.BloodCrystal }), new StationAdjustment(Stations.PrimitiveGrinder, Array.Empty(), (PrefabGUID[])(object)new PrefabGUID[2] { RecipeIds.PrimalStygian, RecipeIds.BloodCrystal }), new StationAdjustment(Stations.Fabricator, (PrefabGUID[])(object)new PrefabGUID[2] { RecipeIds.CopperWires, RecipeIds.ChargedBattery }, Array.Empty()), new StationAdjustment(Stations.GemCuttingTable, (PrefabGUID[])(object)new PrefabGUID[2] { RecipeIds.PrimalStygian, RecipeIds.ExtractShard }, Array.Empty()), new StationAdjustment(Stations.AdvancedBloodPress, (PrefabGUID[])(object)new PrefabGUID[1] { RecipeIds.BloodCrystal }, Array.Empty()) }; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static GameDataSystem GameDataSystem => SystemService.GameDataSystem; public static void ModifyRecipes() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) NativeParallelHashMap recipeHashLookupMap = GameDataSystem.RecipeHashLookupMap; ConfigurePrimalStygianRecipe(recipeHashLookupMap); ConfigureBloodCrystalRecipe(recipeHashLookupMap); RemoveRecipeLinks(PrefabCollectionSystem._PrefabGuidToEntityMap[RecipeIds.FakeGemdust], RecipeIds.PrimalStygian, RecipeIds.BloodCrystal); ApplyMiscItemAdjustments(); RemoveSalvageableAndRequirements(Items.BatteryCharge); ConfigureExtractShardRecipeIfJewelValid(); IncreaseShardContainerSlots(); ConfigureAdvancedGrinder(recipeHashLookupMap); ConfigureFabricator(recipeHashLookupMap); FixFakeFlowerRecipe(); ApplyStationAdjustments(); GameDataSystem.RegisterRecipes(); GameDataSystem.RegisterItems(); PrefabCollectionSystem.RegisterGameData(); } private static void EnsureSalvageable(Entity entity, PrefabGUID recipeGuid, float salvageTimer) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) if (!entity.Has()) { entity.Add(); } entity.With((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = recipeGuid; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = salvageTimer; }); } private static void AddRecipeRequirements(Entity entity, params (PrefabGUID guid, int amount)[] requirements) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001e: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) if (requirements != null && requirements.Length != 0) { DynamicBuffer val = (entity.Has() ? entity.ReadBuffer() : entity.AddBuffer()); for (int i = 0; i < requirements.Length; i++) { var (guid, amount) = requirements[i]; val.Add(new RecipeRequirementBuffer { Guid = guid, Amount = amount }); } } } private static void UpdateRecipeData(Entity recipeEntity, float craftDuration, bool alwaysUnlocked, bool hideInStation, int hudSortingOrder = 0) { //IL_0023: Unknown result type (might be due to invalid IL or missing references) recipeEntity.With((VExtensions.WithRefHandler)delegate(ref RecipeData recipeData) { recipeData.CraftDuration = craftDuration; recipeData.AlwaysUnlocked = alwaysUnlocked; recipeData.HideInStation = hideInStation; recipeData.HudSortingOrder = hudSortingOrder; }); } private static void AddRefinementRecipes(Entity stationEntity, params PrefabGUID[] recipeGuids) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) DynamicBuffer val = stationEntity.ReadBuffer(); foreach (PrefabGUID recipeGuid in recipeGuids) { val.Add(new RefinementstationRecipesBuffer { RecipeGuid = recipeGuid, Disabled = false, Unlocked = true }); } } private static void RemoveRefinementRecipes(Entity stationEntity, params PrefabGUID[] recipeGuids) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0034: Unknown result type (might be due to invalid IL or missing references) DynamicBuffer val = stationEntity.ReadBuffer(); for (int num = val.Length - 1; num >= 0; num--) { RefinementstationRecipesBuffer val2 = val[num]; foreach (PrefabGUID val3 in recipeGuids) { if (((PrefabGUID)(ref val2.RecipeGuid)).Equals(val3)) { val.RemoveAt(num); break; } } } } private static void RemoveRecipeLinks(Entity entity, params PrefabGUID[] guids) { //IL_0000: 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) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) if (!entity.Has()) { return; } DynamicBuffer val = entity.ReadBuffer(); for (int num = val.Length - 1; num >= 0; num--) { RecipeLinkBuffer val2 = val[num]; foreach (PrefabGUID val3 in guids) { if (((PrefabGUID)(ref val2.Guid)).Equals(val3)) { val.RemoveAt(num); break; } } } } private static void ConfigurePrimalStygianRecipe(NativeParallelHashMap recipeMap) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) Entity val = PrefabCollectionSystem._PrefabGuidToEntityMap[RecipeIds.PrimalStygian]; DynamicBuffer val2 = val.ReadBuffer(); RecipeRequirementBuffer val3 = val2[0]; val3.Guid = Items.GreaterStygian; val3.Amount = 8; val2[0] = val3; DynamicBuffer val4 = val.ReadBuffer(); RecipeOutputBuffer val5 = val4[0]; val5.Guid = Items.PrimalStygian; val5.Amount = 1; val4[0] = val5; UpdateRecipeData(val, 10f, alwaysUnlocked: true, hideInStation: false); recipeMap[RecipeIds.PrimalStygian] = val.Read(); } private static void ConfigureBloodCrystalRecipe(NativeParallelHashMap recipeMap) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) Entity val = PrefabCollectionSystem._PrefabGuidToEntityMap[RecipeIds.BloodCrystal]; DynamicBuffer val2 = val.ReadBuffer(); RecipeRequirementBuffer val3 = val2[0]; val3.Guid = Components.Crystal; val3.Amount = 100; val2[0] = val3; val2.Add(new RecipeRequirementBuffer { Guid = Items.GreaterEssence, Amount = 1 }); DynamicBuffer val4 = val.ReadBuffer(); RecipeOutputBuffer val5 = val4[0]; val5.Guid = Items.BloodCrystal; val5.Amount = 100; val4[0] = val5; UpdateRecipeData(val, 10f, alwaysUnlocked: true, hideInStation: false); recipeMap[RecipeIds.BloodCrystal] = val.Read(); } private static void ModifyMiscItem(PrefabGUID itemGuid, PrefabGUID salvageRecipeGuid, float salvageTimer, params (PrefabGUID guid, int amount)[] requirements) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: 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) Entity entity = default(Entity); if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(itemGuid, ref entity)) { EnsureSalvageable(entity, salvageRecipeGuid, salvageTimer); AddRecipeRequirements(entity, requirements); } } private static void ApplyMiscItemAdjustments() { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) foreach (MiscItemAdjustment miscItemAdjustment in MiscItemAdjustments) { ModifyMiscItem(miscItemAdjustment.ItemGuid, miscItemAdjustment.SalvageRecipeGuid, miscItemAdjustment.SalvageTimer, miscItemAdjustment.Requirements); } } private static void RemoveSalvageableAndRequirements(PrefabGUID itemGuid) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002e: Unknown result type (might be due to invalid IL or missing references) Entity entity = default(Entity); if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(itemGuid, ref entity)) { if (entity.Has()) { entity.Remove(); } if (entity.Has()) { entity.Remove(); } } } private static void ApplyStationAdjustments() { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) Entity stationEntity = default(Entity); foreach (StationAdjustment stationAdjustment in StationAdjustments) { if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(stationAdjustment.StationGuid, ref stationEntity)) { if (stationAdjustment.RecipesToAdd.Length != 0) { AddRefinementRecipes(stationEntity, stationAdjustment.RecipesToAdd); } if (stationAdjustment.RecipesToRemove.Length != 0) { RemoveRefinementRecipes(stationEntity, stationAdjustment.RecipesToRemove); } } } } private static void ConfigureExtractShardRecipeIfJewelValid() { //IL_0000: 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) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: 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_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) PrefabGUID primalJewel = Requirements.PrimalJewel; if (!((PrefabGUID)(ref primalJewel)).HasValue()) { return; } Entity entity = default(Entity); if (!PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(Requirements.PrimalJewel, ref entity) || !entity.Has()) { Core.Log.LogWarning((object)"Primal Jewel requirement doesn't appear to be a valid item (missing itemData component), correct this for the recipe to appear on gem cutting stations after placement!"); return; } Entity entity2 = PrefabCollectionSystem._PrefabGuidToEntityMap[RecipeIds.ExtractShard]; DynamicBuffer val = entity2.ReadBuffer(); RecipeRequirementBuffer val2 = val[0]; val2.Guid = Requirements.PrimalJewel; val[0] = val2; entity2.ReadBuffer().Add(new RecipeOutputBuffer { Guid = Items.JewelTemplate, Amount = 1 }); foreach (PrefabGUID shardRecipe in Collections.ShardRecipes) { DynamicBuffer val3 = PrefabCollectionSystem._PrefabGuidToEntityMap[shardRecipe].ReadBuffer(); val3.Add(new RecipeRequirementBuffer { Guid = Collections.RecipesToShards[shardRecipe], Amount = 1 }); val3.Add(new RecipeRequirementBuffer { Guid = Requirements.PrimalJewel, Amount = 1 }); } } private static void IncreaseShardContainerSlots() { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) Entity entity = default(Entity); foreach (PrefabGUID shardContainer in Collections.ShardContainers) { if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(shardContainer, ref entity) && entity.TryGetBuffer(out DynamicBuffer dynamicBuffer) && dynamicBuffer.Length != 0) { InventoryInstanceElement val = dynamicBuffer[0]; val.RestrictedCategory = -1L; val.Slots = 14; val.MaxSlots = 14; dynamicBuffer[0] = val; } } } private static void ConfigureAdvancedGrinder(NativeParallelHashMap recipeMap) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) Entity entity = PrefabCollectionSystem._PrefabGuidToEntityMap[RecipeIds.VampiricDust]; entity.With((VExtensions.WithRefHandler)delegate(ref RecipeData recipeData) { recipeData.AlwaysUnlocked = true; recipeData.HideInStation = false; recipeData.HudSortingOrder = 0; }); recipeMap[RecipeIds.VampiricDust] = entity.Read(); } private static void ConfigureFabricator(NativeParallelHashMap recipeMap) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) Entity val = PrefabCollectionSystem._PrefabGuidToEntityMap[RecipeIds.CopperWires]; UpdateRecipeData(val, 10f, alwaysUnlocked: true, hideInStation: false); recipeMap[RecipeIds.CopperWires] = val.Read(); Entity val2 = PrefabCollectionSystem._PrefabGuidToEntityMap[RecipeIds.ChargedBattery]; val2.ReadBuffer().Add(new RecipeRequirementBuffer { Guid = Items.BatteryCharge, Amount = 1 }); UpdateRecipeData(val2, 90f, alwaysUnlocked: true, hideInStation: false); recipeMap[RecipeIds.ChargedBattery] = val2.Read(); } private static void FixFakeFlowerRecipe() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) Entity entity = default(Entity); if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(RecipeIds.FakeFlower, ref entity) && entity.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { RecipeRequirementBuffer val = dynamicBuffer[0]; val.Guid = Items.PlantThistle; dynamicBuffer[0] = val; } } } internal static class Sequences { public struct SequenceRequest { public string SequenceName; public SequenceGUID SequenceGuid; public Entity Target; public Entity Secondary; public float Scale; } private static readonly Queue _sequenceQueue = new Queue(); private static void Enqueue(SequenceRequest sequenceRequest) { _sequenceQueue.Enqueue(sequenceRequest); } public static bool TryDequeue(out SequenceRequest sequenceRequest) { return _sequenceQueue.TryDequeue(out sequenceRequest); } public static void PlaySequence(this Entity primary, SequenceGUID sequenceGuid, Entity secondary = default(Entity)) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) SequenceRequest sequenceRequest = default(SequenceRequest); sequenceRequest.SequenceName = sequenceGuid.GetSequenceName(); sequenceRequest.Target = primary; sequenceRequest.SequenceGuid = sequenceGuid; sequenceRequest.Scale = 1f; sequenceRequest.Secondary = secondary; Enqueue(sequenceRequest); } } internal static class ShadowMatter { public readonly record struct PrimalData(ReadOnlyMemory Items) { public readonly record struct PrimalSettings(float WeaponLevel, float PhysicalPower, float SpellPower, float OffensiveCd, float DefensiveCd, float ProjectileCd, float UltimateCd, float DashCd) { public static PrimalSettings Default { get; } = new PrimalSettings(100f, 35f, 10f, 8f, 10f, 5f, 60f, 6f); public const float WEAPON_LVL = 100f; public const float PHYSICAL_PWR = 35f; public const float SPELL_PWR = 10f; public const float OFFENSIVE_CD = 8f; public const float DEFENSIVE_CD = 10f; public const float PROJECTILE_CD = 5f; public const float ULTIMATE_CD = 60f; public const float DASH_CD = 6f; } internal static PrimalItem[] PrimalItems { get; } = new PrimalItem[2] { new PrimalItem(new PrimalItem.PrimalBase(PrefabGUIDs.Item_Weapon_Spear_T09_ShadowMatter, PrefabGUIDs.EquipBuff_Weapon_Pollaxe_Ability01), PrimalItem.PrimalShared.PowerInfo.Default, PrimalItem.PrimalShared.AbilityInfo.Attack(PrefabGUIDs.AB_Vampire_Spear_Primary_Attack_Group), PrimalItem.PrimalShared.AbilityInfo.Offensive(PrefabGUIDs.AB_Vampire_BloodKnight_SkeweringLeap_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Defensive(PrefabGUIDs.AB_Vampire_BloodKnight_SpearTwirl_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Ultimate(PrefabGUIDs.AB_Vampire_BloodKnight_ThousandSpears_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Dash(PrefabGUIDs.AB_Vampire_BloodKnight_Dash_AbilityGroup)), new PrimalItem(new PrimalItem.PrimalBase(PrefabGUIDs.Item_Weapon_GreatSword_T09_ShadowMatter, PrefabGUIDs.EquipBuff_Weapon_Pollaxe_Ability02), PrimalItem.PrimalShared.PowerInfo.Default, PrimalItem.PrimalShared.AbilityInfo.Attack(PrefabGUIDs.AB_Vampire_GreatSword_Primary_Moving_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Offensive(PrefabGUIDs.AB_HighLord_SwordDashCleave_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Projectile(PrefabGUIDs.AB_HighLord_UnholySkill_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Ultimate(PrefabGUIDs.AB_HighLord_CorpseStorm_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Dash(PrefabGUIDs.AB_HighLord_UnholyWarp_AbilityGroup)) }; public static PrimalSettings Settings { get; } = PrimalSettings.Default; public ReadOnlySpan.Enumerator GetEnumerator() { return Items.Span.GetEnumerator(); } } public readonly struct PrimalItem { public readonly struct PrimalBase { public readonly int WeaponGuid; public readonly int BuffGuid; public PrimalBase(PrefabGUID itemWeapon, PrefabGUID equipBuff) { WeaponGuid = ((PrefabGUID)(ref itemWeapon)).GuidHash; BuffGuid = ((PrefabGUID)(ref equipBuff)).GuidHash; } } public readonly struct PrimalShared { public readonly struct PowerInfo { public readonly float WeaponLevel; public readonly float PhysicalPower; public readonly float SpellPower; public static readonly PowerInfo Default = new PowerInfo(100f, 35f, 10f); public static readonly PowerInfo Scholar = new PowerInfo(100f, 10f, 35f); public PowerInfo(float weaponLevel, float physicalPower, float spellPower) { WeaponLevel = weaponLevel; PhysicalPower = physicalPower; SpellPower = spellPower; } } public readonly struct AbilityInfo { public readonly PrefabGUID AbilityGroup; public readonly float Cooldown; public AbilityInfo(PrefabGUID abilityGroup, float cooldown = 0f) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) AbilityGroup = abilityGroup; Cooldown = cooldown; } public static AbilityInfo Attack(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup); } public static AbilityInfo Offensive(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 8f); } public static AbilityInfo Defensive(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 10f); } public static AbilityInfo Projectile(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 5f); } public static AbilityInfo Ultimate(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 60f); } public static AbilityInfo Dash(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 6f); } } public readonly record struct AbilityData(ReadOnlyMemory AbilityInfos) { public AbilityInfo this[int index] => AbilityInfos.Span[index]; public AbilityData(ReadOnlyMemory AbilityInfos) { this.AbilityInfos = AbilityInfos; } public ReadOnlySpan.Enumerator GetEnumerator() { return AbilityInfos.Span.GetEnumerator(); } public AbilityData(AbilityInfo attack, AbilityInfo primary, AbilityInfo secondary, AbilityInfo ultimate, AbilityInfo dash) : this(new AbilityInfo[5] { attack, primary, secondary, ultimate, dash }) { } [CompilerGenerated] private bool PrintMembers(StringBuilder builder) { builder.Append("AbilityInfos = "); builder.Append(AbilityInfos.ToString()); return true; } } public PowerInfo WeaponPower { get; } public AbilityInfo AttackSlot => AbilityInfos[0]; public AbilityInfo PrimarySlot => AbilityInfos[1]; public AbilityInfo SecondarySlot => AbilityInfos[2]; public AbilityInfo UltimateSlot => AbilityInfos[3]; public AbilityInfo DashSlot => AbilityInfos[4]; internal AbilityData AbilityInfos { get; } public PrimalShared(PowerInfo weaponPower, AbilityInfo attackAbility, AbilityInfo primaryAbility, AbilityInfo secondaryAbility, AbilityInfo ultimateAbility, AbilityInfo dashAbility) { WeaponPower = weaponPower; AbilityInfos = new AbilityData(attackAbility, primaryAbility, secondaryAbility, ultimateAbility, dashAbility); } } public PrefabGUID ItemWeapon => new PrefabGUID(WeaponBase.WeaponGuid); public PrefabGUID EquipBuff => new PrefabGUID(WeaponBase.BuffGuid); public PrimalBase WeaponBase { get; } public PrefabGUID AttackGroup => WeaponShared.AttackSlot.AbilityGroup; public PrefabGUID PrimaryGroup => WeaponShared.PrimarySlot.AbilityGroup; public PrefabGUID SecondaryGroup => WeaponShared.SecondarySlot.AbilityGroup; public PrefabGUID UltimateGroup => WeaponShared.UltimateSlot.AbilityGroup; public PrefabGUID DashGroup => WeaponShared.DashSlot.AbilityGroup; public PrimalShared WeaponShared { get; } public PrimalItem(PrimalBase weaponBase, PrimalShared.PowerInfo weaponPower = default(PrimalShared.PowerInfo), PrimalShared.AbilityInfo attackAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo primaryAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo secondaryAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo ultimateAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo dashAbility = default(PrimalShared.AbilityInfo)) { WeaponBase = weaponBase; WeaponShared = new PrimalShared(weaponPower, attackAbility, primaryAbility, secondaryAbility, ultimateAbility, dashAbility); } } private static PrimalData PrimalItems { get; } = new PrimalData(PrimalData.PrimalItems); public static void GatherShadows() { //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Expected O, but got Unknown //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Expected O, but got Unknown //IL_0047: Unknown result type (might be due to invalid IL or missing references) ReadOnlySpan.Enumerator enumerator = PrimalItems.GetEnumerator(); bool flag = default(bool); while (enumerator.MoveNext()) { PrimalItem current = enumerator.Current; try { PrimalItem primalItem = current; ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(24, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Forging Primal Weapon - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(primalItem.ItemWeapon.GetPrefabName()); } log.LogWarning(val); RefineMateria(ref primalItem); Core.Log.LogWarning((object)"Refining..."); ImbueAbilities(ref primalItem); Core.Log.LogWarning((object)"Imbuing..."); EnforceCooldowns(ref primalItem); Core.Log.LogWarning((object)"Complete!"); } catch (Exception ex) { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log2.LogError(val2); } } } private static void RefineMateria(ref PrimalItem primalItem) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) Entity prefabEntity = primalItem.ItemWeapon.GetPrefabEntity(); PrimalItem.PrimalShared.PowerInfo weaponPower = primalItem.WeaponShared.WeaponPower; prefabEntity.With((VExtensions.WithRefHandler)delegate(ref WeaponLevelSource weaponLevelSource) { weaponLevelSource.Level = weaponPower.WeaponLevel; }); prefabEntity.WithEdit(0, (VExtensions.WithRefHandler)delegate(ref ModifyUnitStatBuff_DOTS buff) { buff.Value = weaponPower.PhysicalPower; }); prefabEntity.WithInsert(1, new ModifyUnitStatBuff_DOTS { StatType = (UnitStatType)25, ModificationType = (ModificationType)6, AttributeCapType = (AttributeCapType)0, Value = weaponPower.SpellPower, Modifier = 1f }); } private static void ImbueAbilities(ref PrimalItem primalItem) { //IL_0007: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) PrefabGUID itemWeapon = primalItem.ItemWeapon; PrefabGUID equipBuff = primalItem.EquipBuff; itemWeapon.GetPrefabEntity().With((VExtensions.WithRefHandler)delegate(ref EquippableData equippableData) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) equippableData.BuffGuid = equipBuff; }); Entity prefabEntity = equipBuff.GetPrefabEntity(); prefabEntity.WithClear(); prefabEntity.AddSlot(primalItem.AttackGroup, 0); prefabEntity.AddSlot(primalItem.PrimaryGroup, 1); prefabEntity.AddSlot(primalItem.SecondaryGroup, 4); prefabEntity.AddSlot(primalItem.DashGroup, 2); prefabEntity.AddSlot(primalItem.UltimateGroup, 7); } private static void AddSlot(this Entity entity, PrefabGUID abilityGroup, int slot) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: 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) if (((PrefabGUID)(ref abilityGroup)).HasValue()) { entity.WithAdd(new ReplaceAbilityOnSlotBuff { Slot = slot, NewGroupId = abilityGroup, CopyCooldown = true }); } } private static void EnforceCooldowns(ref PrimalItem primalItem) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0013: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_019f: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) PrimalItem.PrimalShared weaponShared = primalItem.WeaponShared; Entity prefabEntity = primalItem.PrimaryGroup.GetPrefabEntity(); float primaryCooldown = weaponShared.PrimarySlot.Cooldown; Entity prefabEntity2 = primalItem.SecondaryGroup.GetPrefabEntity(); float secondaryCooldown = weaponShared.SecondarySlot.Cooldown; Entity prefabEntity3 = primalItem.UltimateGroup.GetPrefabEntity(); float ultimateCooldown = weaponShared.UltimateSlot.Cooldown; Entity prefabEntity4 = primalItem.DashGroup.GetPrefabEntity(); float dashCooldown = weaponShared.DashSlot.Cooldown; if (prefabEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer)) { Entity entity = (dynamicBuffer.IsIndexWithinRange(0) ? dynamicBuffer[0].PrefabGUID.GetPrefabEntity() : Entity.Null); entity.With((VExtensions.WithRefHandler)delegate(ref AbilityCooldownData cooldownData) { cooldownData.Cooldown._Value = primaryCooldown; }); VerifyCooldowns(entity.GetPrefabGuid(), primaryCooldown); } if (prefabEntity2.TryGetBuffer(out dynamicBuffer)) { Entity entity2 = (dynamicBuffer.IsIndexWithinRange(0) ? dynamicBuffer[0].PrefabGUID.GetPrefabEntity() : Entity.Null); entity2.With((VExtensions.WithRefHandler)delegate(ref AbilityCooldownData cooldownData) { cooldownData.Cooldown._Value = secondaryCooldown; }); VerifyCooldowns(entity2.GetPrefabGuid(), secondaryCooldown); } if (prefabEntity3.TryGetBuffer(out dynamicBuffer)) { Entity entity3 = (dynamicBuffer.IsIndexWithinRange(0) ? dynamicBuffer[0].PrefabGUID.GetPrefabEntity() : Entity.Null); entity3.With((VExtensions.WithRefHandler)delegate(ref AbilityCooldownData cooldownData) { cooldownData.Cooldown._Value = ultimateCooldown; }); VerifyCooldowns(entity3.GetPrefabGuid(), ultimateCooldown); } if (prefabEntity4.TryGetBuffer(out dynamicBuffer)) { Entity entity4 = (dynamicBuffer.IsIndexWithinRange(0) ? dynamicBuffer[0].PrefabGUID.GetPrefabEntity() : Entity.Null); entity4.With((VExtensions.WithRefHandler)delegate(ref AbilityCooldownData cooldownData) { cooldownData.Cooldown._Value = dashCooldown; }); VerifyCooldowns(entity4.GetPrefabGuid(), dashCooldown); } } private static void VerifyCooldowns(PrefabGUID castGuid, float cooldown) { //IL_0028: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) foreach (PlayerService.PlayerInfo value in PlayerService.SteamIdPlayerInfoCache.Values) { Entity charEntity = value.CharEntity; DynamicBuffer buffer = charEntity.ReadBuffer(); if (charEntity.Exists()) { ResolveCast(castGuid, ref buffer).With((VExtensions.WithRefHandler)delegate(ref AbilityCooldownData cooldownData) { cooldownData.Cooldown._Value = cooldown; }); } } } private static Entity ResolveCast(PrefabGUID castGuid, ref DynamicBuffer buffer) { //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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) Enumerator enumerator = buffer.GetEnumerator(); while (enumerator.MoveNext()) { AttachedBuffer current = enumerator.Current; Entity entity = current.Entity; PrefabGUID prefabGuid = current.PrefabGuid; if (((PrefabGUID)(ref castGuid)).Equals(prefabGuid)) { return entity; } } return default(Entity); } } internal static class Shapeshifts { public static class ShapeshiftRegistry { private static readonly Lazy> _forms = new Lazy>(() => new List(2) { new EvolvedVampire(), new CorruptedSerpent() }); private static readonly Lazy> _buffToForm = new Lazy>(() => _forms.Value.ToDictionary((IShapeshift f) => f.ShapeshiftBuff)); private static readonly Lazy> _abilityGroupToForm = new Lazy>(delegate { //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) Dictionary dictionary = new Dictionary(); foreach (IShapeshift item in _forms.Value) { foreach (PrefabGUID abilityGroup in item.AbilityGroups) { if (!dictionary.ContainsKey(abilityGroup)) { dictionary[abilityGroup] = item; } } } return dictionary; }); public static IEnumerable All => _forms.Value; public static bool TryGetByBuff(PrefabGUID buff, out IShapeshift form) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) return _buffToForm.Value.TryGetValue(buff, out form); } public static bool TryGetByAbilityGroup(PrefabGUID abilityGroup, out IShapeshift form) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) return _abilityGroupToForm.Value.TryGetValue(abilityGroup, out form); } } public static class ShapeshiftCache { private static readonly ConcurrentDictionary _playerShapeshifts = new ConcurrentDictionary(); public static IReadOnlyDictionary PlayerShapeshifts => _playerShapeshifts; public static void SetShapeshiftBuff(ulong steamId, ShapeshiftType shapeshiftType) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) _playerShapeshifts[steamId] = GetShapeshiftBuff(shapeshiftType); } public static bool TryGetShapeshiftBuff(ulong steamId, out PrefabGUID shapeshiftBuff) { return _playerShapeshifts.TryGetValue(steamId, out shapeshiftBuff); } } public const float BASE_DURATION = 15f; public const float MAX_ADDED_DURATION = 165f; private const float EXO_COUNTDOWN = 5f; private const float DAY_SECONDS = 86400f; private const int EXO_PRESTIGES = 100; private const float DELAY = 1f; private static readonly AssetGuid _assetGuid = AssetGuid.FromString("2a1f5c1b-5a50-4ff0-a982-ca37efb8f69d"); private static readonly PrefabGUID _sctInfoWarning = PrefabGUIDs.SCT_Type_InfoWarning; private static readonly float3 _yellow = new float3(1f, 1f, 0f); private static readonly WaitForSeconds _secondDelay = new WaitForSeconds(1f); private static readonly PrefabGUID _immortalBlood = PrefabGUIDs.BloodType_DraculaTheImmortal; private static readonly PrefabGUID _frailedBlood = PrefabGUIDs.BloodType_None; private static readonly Dictionary _shapeshiftForms = new Dictionary { [Buffs.EvolvedVampireBuff] = new EvolvedVampire(), [Buffs.CorruptedSerpentBuff] = new CorruptedSerpent() }; private static readonly Dictionary _shapeshiftBuffs = new Dictionary { [ShapeshiftType.EvolvedVampire] = Buffs.EvolvedVampireBuff, [ShapeshiftType.CorruptedSerpent] = Buffs.CorruptedSerpentBuff }; private static readonly ConcurrentDictionary _storedPlayerBloods = new ConcurrentDictionary(); private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => SystemService.EndSimulationEntityCommandBufferSystem; private static ReplaceAbilityOnSlotSystem ReplaceAbilityOnSlotSystem => SystemService.ReplaceAbilityOnSlotSystem; public static IReadOnlyDictionary ShapeshiftForms => _shapeshiftForms; public static IReadOnlyDictionary ShapeshiftBuffs => _shapeshiftBuffs; public static bool CheckExoFormCharge(User user, ulong steamId) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) UpdateExoFormChargeStored(steamId); if (steamId.TryGetPlayerExoFormData(out var exoFormData) && exoFormData.Value < 15f) { ReplyNotEnoughCharge(user, steamId, exoFormData.Value); return false; } if (steamId.TryGetPlayerExoFormData(out exoFormData) && exoFormData.Value >= 15f) { return true; } return false; } public static void ReplyNotEnoughCharge(User user, ulong steamId, float value) { //IL_0010: 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) string timeUntilCharged = GetTimeUntilCharged(steamId, value); if (!string.IsNullOrEmpty(timeUntilCharged)) { LocalizationService.HandleServerReply(EntityManager, user, "Not enough energy to maintain form... (" + timeUntilCharged + ")"); } } private static string GetTimeUntilCharged(ulong steamId, float value) { Dictionary prestiges; int value2; float num = CalculateFormDuration((steamId.TryGetPlayerPrestiges(out prestiges) && prestiges.TryGetValue(PrestigeType.Exo, out value2)) ? value2 : 0); float num2 = (15f - value) / num; TimeSpan timeSpan = TimeSpan.FromSeconds(86400f * num2); if (!(timeSpan.TotalHours >= 1.0)) { return $"{timeSpan.Minutes}m {timeSpan.Seconds}s"; } return $"{(int)timeSpan.TotalHours}h {timeSpan.Minutes}m {timeSpan.Seconds}s"; } public static float CalculateFormDuration(int prestigeLevel) { if (prestigeLevel == 1) { return 15f; } if (prestigeLevel > 1) { return 15f + 1.65f * (float)prestigeLevel; } return 0f; } public static void UpdateExoFormChargeStored(ulong steamId) { if (steamId.TryGetPlayerExoFormData(out var exoFormData)) { DateTime utcNow = DateTime.UtcNow; Dictionary prestiges; int value; float num = CalculateFormDuration((steamId.TryGetPlayerPrestiges(out prestiges) && prestiges.TryGetValue(PrestigeType.Exo, out value)) ? value : 0); float num2 = (float)((utcNow - exoFormData.Key).TotalSeconds / 86400.0 * (double)num); float value2 = Mathf.Min(exoFormData.Value + num2, num); KeyValuePair data = new KeyValuePair(utcNow, value2); steamId.SetPlayerExoFormData(data); } } public static void UpdatePartialExoFormChargeUsed(Entity buffEntity, ulong steamId) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) if (steamId.TryGetPlayerExoFormData(out var exoFormData) && buffEntity.TryGetComponent(out Age componentData)) { KeyValuePair data = new KeyValuePair(DateTime.UtcNow, exoFormData.Value - componentData.Value); steamId.SetPlayerExoFormData(data); } } public static IEnumerator ExoFormCountdown(Entity buffEntity, Entity playerCharacter, Entity userEntity, float countdownDelay) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) yield return (object)new WaitForSeconds(countdownDelay); float countdown = 5f; bool fullDuration = false; while (buffEntity.Exists() && countdown > 0f) { float3 position = playerCharacter.GetPosition(); ((float3)(ref position))..ctor(position.x, position.y + 1.5f, position.z); ScrollingCombatTextMessage.Create(EntityManager, ((EntityCommandBufferSystem)EndSimulationEntityCommandBufferSystem).CreateCommandBuffer(), _assetGuid, position, _yellow, playerCharacter, countdown, _sctInfoWarning, userEntity); countdown -= 1f; yield return _secondDelay; if (countdown <= 0f) { fullDuration = true; } } if (fullDuration) { UpdateFullExoFormChargeUsed(playerCharacter.GetSteamId()); } } public static void UpdateFullExoFormChargeUsed(ulong steamId) { KeyValuePair data = new KeyValuePair(DateTime.UtcNow, 0f); steamId.SetPlayerExoFormData(data); } public static void TrueImmortal(Entity buffEntity, Entity playerCharacter) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Expected O, but got Unknown //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Expected O, but got Unknown //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Expected O, but got Unknown //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) if (!buffEntity.Has()) { return; } DynamicBuffer buffer = buffEntity.ReadBuffer(); if (buffer.IsEmpty) { return; } ulong steamId = playerCharacter.GetSteamId(); bool flag2 = default(bool); Blood value; if (ShapeshiftBuffs.Any((KeyValuePair buff) => playerCharacter.HasBuff(buff.Value))) { bool flag = _storedPlayerBloods.TryAdd(steamId, playerCharacter.Read()); SetChangeBloodOnGameplayEvent(buffer, 100f, 100f, _immortalBlood); ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(37, 2, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[TrueImmortal] APPLY steamId:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" stored:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(flag); } log.LogWarning(val); } else if (_storedPlayerBloods.TryRemove(steamId, out value)) { SetChangeBloodOnGameplayEvent(buffer, value.Value, value.Quality, value.BloodType); ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(60, 4, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[TrueImmortal] RESTORE_EVENT steamId:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" blood:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(value.BloodType.GetPrefabName()); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" value:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(value.Value, "F1"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" quality:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(value.Quality, "F1"); } log2.LogWarning(val); } else { SetChangeBloodOnGameplayEvent(buffer, 100f, 100f, _frailedBlood); ManualLogSource log3 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(40, 1, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[TrueImmortal] FALLBACK_FRAILED steamId:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); } log3.LogWarning(val); } } public static bool RestoreStoredTrueImmortalBlood(Entity playerCharacter) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Expected O, but got Unknown //IL_006c: Unknown result type (might be due to invalid IL or missing references) ulong steamId = playerCharacter.GetSteamId(); if (_storedPlayerBloods.TryRemove(steamId, out var storedBlood)) { playerCharacter.With((VExtensions.WithRefHandler)delegate(ref Blood blood) { //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) blood.Value = storedBlood.Value; blood.Quality = storedBlood.Quality; blood.BloodType = storedBlood.BloodType; }); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(61, 4, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[TrueImmortal] RESTORE_DIRECT steamId:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" blood:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(storedBlood.BloodType.GetPrefabName()); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" value:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(storedBlood.Value, "F1"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" quality:"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(storedBlood.Quality, "F1"); } log.LogWarning(val); return true; } return false; } private static void SetChangeBloodOnGameplayEvent(DynamicBuffer buffer, float value, float quality, PrefabGUID bloodType) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) ChangeBloodOnGameplayEvent val = buffer[0]; val.BloodValue = value; val.BloodQuality = quality; val.BloodType = bloodType; val.GainBloodType = (GainBloodType)3; buffer[0] = val; } public static void ModifyShapeshiftBuff(Entity buffEntity, Entity playerCharacter, PrefabGUID buffPrefabGuid) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: 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) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015e: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0272: Unknown result type (might be due to invalid IL or missing references) Entity userEntity = playerCharacter.GetUserEntity(); ulong platformId = userEntity.GetUser().PlatformId; if (!ShapeshiftForms.TryGetValue(buffPrefabGuid, out var value)) { return; } KeyValuePair exoFormData; float duration = (platformId.TryGetPlayerExoFormData(out exoFormData) ? exoFormData.Value : 0f); UnitStats componentData; float value2 = (playerCharacter.TryGetComponent(out componentData) ? componentData.SpellPower._Value : 0f); if (buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { ApplyBuffOnGameplayEvent val = dynamicBuffer[0]; val.Buff0 = PrefabGUID.Empty; dynamicBuffer[0] = val; } buffEntity.Add(); buffEntity.Add(); buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = duration; lifeTime.EndAction = (LifeTimeEndAction)2; }); buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref ChangeKnockbackResistanceBuff knockback) { knockback.KnockbackResistanceIndex = 6; }); if (!buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer2)) { dynamicBuffer2 = buffEntity.AddBuffer(); } ModifyUnitStatBuff_DOTS val2 = new ModifyUnitStatBuff_DOTS { StatType = (UnitStatType)0, AttributeCapType = (AttributeCapType)(-1), ModificationType = (ModificationType)3, Value = value2, Modifier = 1f, IncreaseByStacks = false, ValueByStacks = 0f, Priority = 0 }; ModificationIDs val3 = ModificationIDs.Create(); val2.Id = ((ModificationIDs)(ref val3)).NewModificationId(); dynamicBuffer2.Add(val2); buffEntity.With((VExtensions.WithRefHandler)delegate(ref Buff buff) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) buff.BuffType = (BuffType)2; }); buffEntity.With((VExtensions.WithRefHandler)delegate(ref BuffCategory buffCategory) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) buffCategory.Groups = (BuffCategoryFlag)2101248; }); buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref AmplifyBuff amplifyBuff) { amplifyBuff.AmplifyModifier = -0.25f; }); if (!buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer3)) { dynamicBuffer3 = buffEntity.AddBuffer(); } foreach (var (slot, newGroupId) in value.Abilities) { dynamicBuffer3.Add(new ReplaceAbilityOnSlotBuff { Target = (ReplaceAbilityTarget)0, Slot = slot, NewGroupId = newGroupId, Priority = 99, CopyCooldown = true, CastBlockType = (GroupSlotModificationCastBlockType)0 }); } ((SystemBase)ReplaceAbilityOnSlotSystem).OnUpdate(); ExoFormCountdown(buffEntity, playerCharacter, userEntity, duration - 5f).Start(); } public static float GetShapeshiftAbilityCooldown(PrefabGUID abilityGroup) where T : Shapeshift, new() { //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (!new T().TryGetCooldown(abilityGroup, out var cooldown)) { return 0f; } return cooldown; } public static PrefabGUID GetShapeshiftBuff(ShapeshiftType shapeshiftType) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) return ShapeshiftBuffs[shapeshiftType]; } public static bool IsExoForm(this Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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) if (!playerCharacter.HasBuff(Buffs.EvolvedVampireBuff)) { return playerCharacter.HasBuff(Buffs.CorruptedSerpentBuff); } return true; } } internal static class VEvents { public enum GameplayEventType : ushort { None, ServantUpgrade } public interface IGameplayEvent { } public readonly struct GameplayEventId : IEquatable { public readonly GameplayEventType EventType; public readonly ushort EventKey; private static ushort _key = 1; public GameplayEventId(GameplayEventType eventType, ushort key) { EventType = eventType; EventKey = key; } internal static ushort GenerateId() { if (_key == 0) { _key = 1; } return _key++; } public bool IsValid() { if (EventType != 0) { return EventKey != 0; } return false; } public bool Equals(GameplayEventId other) { if (EventType == other.EventType) { return EventKey == other.EventKey; } return false; } public override bool Equals(object obj) { if (obj is GameplayEventId other) { return Equals(other); } return false; } public override int GetHashCode() { return (int)(((uint)EventType << 16) ^ EventKey); } public override string ToString() { return $"{EventType}:{EventKey}"; } } public readonly struct ServantUpgradeEvent : IGameplayEvent { public readonly GameplayEventId Id; public readonly string Player; public readonly string Servant; public ServantUpgradeEvent(string player, string servant) { Id = new GameplayEventId(GameplayEventType.ServantUpgrade, GameplayEventId.GenerateId()); Player = player; Servant = servant; } } private static readonly Queue _servantUpgradeQueue = new Queue(); private static readonly ConcurrentDictionary<(string, string), bool> _servantUpgradeReceipts = new ConcurrentDictionary<(string, string), bool>(); public static void Dispatch(ref ServantUpgradeEvent servantUpgradeEvent) { _servantUpgradeQueue.Enqueue(servantUpgradeEvent); } public static bool TryReceive(out ServantUpgradeEvent servantUpgradeEvent) { return _servantUpgradeQueue.TryDequeue(out servantUpgradeEvent); } public static void KeepReceipt(ref ServantUpgradeEvent servantUpgradeEvent, bool wasUpgraded = false) { _servantUpgradeReceipts.TryAdd((servantUpgradeEvent.Player, servantUpgradeEvent.Servant), wasUpgraded); } public static bool HasRefund((string Player, string Servant) tupleKey) { if (_servantUpgradeReceipts.TryRemove(tupleKey, out var value)) { return !value; } return false; } } } namespace Bloodcraft.Systems { public class PrimalWarEventSystem : SystemBase { private static class Constants { public const int UNIT_LVL = 10; public const int BOSS_LVL = 15; public const float LOW_AMP = 1.25f; public const float MED_AMP = 1.5f; public const float HIGH_AMP = 2f; public const float HEALTH_AMP = 3f; public const float BUFF_CHANCE = 0.2f; public const float HIGH_FREQ = 0.035f; public const float MED_FREQ = 0.0125f; public const float LOW_FREQ = 1f / 160f; public const float EQUAL_WGT = 0.5f; public const float BASE_WGT = 0.25f; public const float HEAVY_WGT = 0.1f; public const float GATE_HEIGHT = 4f; public const float RADIUS = 10f; public const int MINUTE_SECONDS = 60; public const int DAY_SECONDS = 86400; public const int DAY_HOURS = 24; public const int RIFT_DURATION = 1200; } private struct ActiveRift { public RiftHazard Hazard; public double Lifetime; public ActiveRift(RiftHazard hazard, double lifetime) { Hazard = hazard; Lifetime = lifetime; } } private readonly struct RiftHazard { private static Random _random; public PrefabGUID Primary { get; } public PrefabGUID Secondary { get; } public float Frequency { get; } public float Weight { get; } public RiftHazard(PrefabGUID primary, PrefabGUID secondary, float frequency, float weight = 0.25f) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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) Primary = primary; Secondary = secondary; Frequency = frequency; Weight = weight; } public void TrySpawnHazard(ServerGameManager serverGameManager, float3 position) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) EnsureSeeded(12648430u); if (_random.NextDouble() < (double)Frequency) { WeightedThrow(serverGameManager, position); } } private void WeightedThrow(ServerGameManager serverGameManager, float3 center) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) PrefabGUID val = ((_random.NextDouble() < (double)Weight) ? Secondary : Primary); float3 position = center + new float3(NextFloat(-10f, 10f), -4f, NextFloat(-10f, 10f)); ((ServerGameManager)(ref serverGameManager)).InstantiateEntityImmediate(Entity.Null, val).SetPosition(position); } private static void EnsureSeeded(uint salt = 0u) { if (_random == null) { _random = new Random((int)Misc.GetRandomSeed(salt)); } } private static float NextFloat(float min, float max) { return min + (float)_random.NextDouble() * (max - min); } } private ServerGameManager _serverGameManager; private static readonly ComponentType[] _eventComponents = (ComponentType[])(object)new ComponentType[3] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static readonly PrefabGUID _primalGate = PrefabGUIDs.UC_WarEvent_Legion_Bosses_Primal; private static readonly PrefabGUID _primalPortal = PrefabGUIDs.UC_WarEvent_Legion_Smallwaves_Primal; private static readonly PrefabGUID _bloodRainBuff = PrefabGUIDs.AB_Dracula_Final_TravelToCenter_Normal_BloodRainBuff; private static readonly List _variantBuffs = new List(4) { PrefabGUIDs.Shared_Affix_LevelAura_Self, PrefabGUIDs.AB_CastleMan_HolyBeam_PowerBuff_01, PrefabGUIDs.AB_Chaos_PowerSurge_Buff, PrefabGUIDs.AB_Bandit_Foreman_BloodRage_Buff }; private readonly List _riftHazards = new List(1) { new RiftHazard(PrefabGUIDs.AB_LightningStorm_Throw, PrefabGUIDs.AB_LightningStorm_Throw_Big, 0.035f) }; private static double _nextRiftTime = double.MaxValue; private static double _lastNotified = -1.0; private static bool _isEdited; private EntityQuery _gateQuery; private EntityQuery _portalQuery; private ComponentLookup _vBloodLookup; private ComponentLookup _translationLookup; private ComponentTypeHandle _gateHandle; private ComponentTypeHandle _portalHandle; private BufferTypeHandle _unitBufferHandle; private EntityTypeHandle _entityHandle; private EntityStorageInfoLookup _entityStorageInfoLookup; private NativeParallelHashSet _handled; private readonly ConcurrentDictionary _activeRifts = new ConcurrentDictionary(); public static PrimalWarEventSystem Instance { get; set; } private static int PrimalRifts { get; } = Math.Min(ConfigService.RiftFrequency, 24); private static int RiftInterval { get; } = (PrimalRifts > 0) ? (86400 / PrimalRifts) : 0; public override void OnCreate() { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Expected O, but got Unknown //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Expected O, but got Unknown //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0123: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) Instance = this; EntityQueryDesc[] array = new EntityQueryDesc[1]; EntityQueryDesc val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[2] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.Options = (EntityQueryOptions)2; array[0] = val; _gateQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array); EntityQueryDesc[] array2 = new EntityQueryDesc[1]; val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[2] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.Options = (EntityQueryOptions)2; array2[0] = val; _portalQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array2); _vBloodLookup = ((SystemBase)this).GetComponentLookup(true); _translationLookup = ((SystemBase)this).GetComponentLookup(true); _gateHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _portalHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _unitBufferHandle = ((ComponentSystemBase)this).GetBufferTypeHandle(true); _entityHandle = ((ComponentSystemBase)this).GetEntityTypeHandle(); _entityStorageInfoLookup = ((SystemBase)this).GetEntityStorageInfoLookup(); _handled = new NativeParallelHashSet(512, AllocatorHandle.op_Implicit((Allocator)4)); ((ComponentSystemBase)this).RequireForUpdate(_gateQuery); ((ComponentSystemBase)this).RequireForUpdate(_portalQuery); ((ComponentSystemBase)this).Enabled = true; } public override void OnStartRunning() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) _serverGameManager = ((ComponentSystemBase)this).World.GetExistingSystemManaged().GetServerGameManager(); if (!_isEdited) { _isEdited = TryModifyPrimalUnitCompositions(); } } public override void OnUpdate() { //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) _vBloodLookup.Update((SystemBase)(object)this); _translationLookup.Update((SystemBase)(object)this); _gateHandle.Update((SystemBase)(object)this); _portalHandle.Update((SystemBase)(object)this); _unitBufferHandle.Update((SystemBase)(object)this); ((EntityTypeHandle)(ref _entityHandle)).Update((SystemBase)(object)this); ((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Update((SystemBase)(object)this); HandleActiveGates(_gateQuery); HandleActivePortals(_portalQuery); OnSweep(); } private void HandleActiveGates(EntityQuery query) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Expected O, but got Unknown //IL_0010: 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_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Expected O, but got Unknown //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0220: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) NativeArray val = ((EntityQuery)(ref query)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); bool flag2 = default(bool); try { Enumerator enumerator = val.GetEnumerator(); Translation val5 = default(Translation); while (enumerator.MoveNext()) { ArchetypeChunk current = enumerator.Current; NativeArray nativeArray = ((ArchetypeChunk)(ref current)).GetNativeArray(_gateHandle); BufferAccessor bufferAccessor = ((ArchetypeChunk)(ref current)).GetBufferAccessor(_unitBufferHandle); NativeArray nativeArray2 = ((ArchetypeChunk)(ref current)).GetNativeArray(_entityHandle); for (int i = 0; i < ((ArchetypeChunk)(ref current)).Count; i++) { WarEvent_ActiveGate val2 = nativeArray[i]; Entity val3 = nativeArray2[i]; if (!((PrefabGUID)(ref val2.UnitComposition)).Equals(_primalGate)) { continue; } DynamicBuffer val4 = bufferAccessor[i]; bool flag = false; Enumerator enumerator2 = val4.GetEnumerator(); while (enumerator2.MoveNext()) { WarEvent_ActiveUnit current2 = enumerator2.Current; Entity unitEntity = current2.Instance; bool isGateBoss = _vBloodLookup.HasComponent(unitEntity); if (!((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(unitEntity)) { continue; } if (_handled.Contains(unitEntity)) { flag = true; continue; } Core.Delayed(delegate { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) unitEntity.TryApplyBuffWithLifeTimeNone(_variantBuffs.DrawRandom()); }); ModifyPrimalUnit(unitEntity, isGateBoss); flag = true; _handled.Add(unitEntity); } if (!flag || !_translationLookup.TryGetComponent(val3, ref val5)) { continue; } if (!_activeRifts.TryGetValue(val3, out var value)) { value = new ActiveRift(_riftHazards.DrawRandom(), _serverGameManager.ServerTime + 1200.0); _activeRifts.TryAdd(val3, value); ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val6 = new BepInExWarningLogInterpolatedStringHandler(75, 2, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val6).AppendLiteral("[PrimalWarEventSystem.HandleActiveGates] Adding rift hazard for gate! ("); ((BepInExLogInterpolatedStringHandler)val6).AppendFormatted(val3); ((BepInExLogInterpolatedStringHandler)val6).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val6).AppendFormatted(_riftHazards.IndexOf(value.Hazard)); ((BepInExLogInterpolatedStringHandler)val6).AppendLiteral(")"); } log.LogWarning(val6); } if (flag) { value.Hazard.TrySpawnHazard(_serverGameManager, val5.Value); } } } } catch (Exception ex) { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val7 = new BepInExErrorLogInterpolatedStringHandler(52, 1, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val7).AppendLiteral("[PrimalWarEventSystem.HandleActiveGates] Exception: "); ((BepInExLogInterpolatedStringHandler)val7).AppendFormatted(ex); } log2.LogError(val7); } finally { val.Dispose(); } } private void HandleActivePortals(EntityQuery query) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_015e: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Expected O, but got Unknown //IL_0010: 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_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: 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_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) NativeArray val = ((EntityQuery)(ref query)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { ArchetypeChunk current = enumerator.Current; NativeArray nativeArray = ((ArchetypeChunk)(ref current)).GetNativeArray(_portalHandle); BufferAccessor bufferAccessor = ((ArchetypeChunk)(ref current)).GetBufferAccessor(_unitBufferHandle); NativeArray nativeArray2 = ((ArchetypeChunk)(ref current)).GetNativeArray(_entityHandle); for (int i = 0; i < ((ArchetypeChunk)(ref current)).Count; i++) { WarEvent_ActivePortal val2 = nativeArray[i]; _ = nativeArray2[i]; if (!((PrefabGUID)(ref val2.UnitComposition)).Equals(_primalPortal)) { continue; } Enumerator enumerator2 = bufferAccessor[i].GetEnumerator(); while (enumerator2.MoveNext()) { WarEvent_ActiveUnit current2 = enumerator2.Current; Entity unitEntity = current2.Instance; if (!((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(unitEntity) || _handled.Contains(unitEntity)) { continue; } if (Misc.RollForChance(0.2f)) { Core.Delayed(delegate { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) unitEntity.TryApplyBuffWithLifeTimeNone(_variantBuffs.DrawRandom()); }); } ModifyPrimalUnit(unitEntity); _handled.Add(unitEntity); } } } } catch (Exception ex) { ManualLogSource logSource = Plugin.MiniBehaviour.LogSource; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val3 = new BepInExErrorLogInterpolatedStringHandler(54, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral("[PrimalWarEventSystem.HandleActivePortals] Exception: "); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(ex); } logSource.LogError(val3); } finally { val.Dispose(); } } private bool TryModifyPrimalUnitCompositions() { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001b: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) bool flag = false; bool flag2 = false; Entity prefabEntity = ((ServerGameManager)(ref _serverGameManager)).GetPrefabEntity(PrefabGUIDs.UC_WarEvent_Legion_Smallwaves_Primal); Entity prefabEntity2 = ((ServerGameManager)(ref _serverGameManager)).GetPrefabEntity(PrefabGUIDs.UC_WarEvent_Legion_Smallwaves_Major); Entity prefabEntity3 = ((ServerGameManager)(ref _serverGameManager)).GetPrefabEntity(PrefabGUIDs.UC_WarEvent_Legion_Bosses_Primal); Entity prefabEntity4 = ((ServerGameManager)(ref _serverGameManager)).GetPrefabEntity(PrefabGUIDs.UC_WarEvent_Legion_Bosses_Major); DynamicBuffer val = default(DynamicBuffer); DynamicBuffer val2 = default(DynamicBuffer); DynamicBuffer val3 = default(DynamicBuffer); DynamicBuffer val4 = default(DynamicBuffer); if (((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity, ref val) && ((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity, ref val2) && ((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity2, ref val3) && ((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity2, ref val4)) { val.Clear(); val.CopyFrom(val3); val2.Clear(); val2.CopyFrom(val4); flag = true; } if (((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity3, ref val) && ((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity3, ref val2) && ((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity4, ref val3) && ((ServerGameManager)(ref _serverGameManager)).TryGetBuffer(prefabEntity4, ref val4)) { val.Clear(); val.CopyFrom(val3); val2.Clear(); val2.CopyFrom(val4); flag2 = true; } return flag && flag2; } private void OnSweep() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) NativeArray val = _handled.ToNativeArray(AllocatorHandle.op_Implicit((Allocator)2)); Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(current)) { _handled.Remove(current); } } val.Dispose(); foreach (KeyValuePair activeRift in _activeRifts) { if (_serverGameManager.ServerTime >= activeRift.Value.Lifetime) { _activeRifts.TryRemove(activeRift.Key, out var _); } } } public static void OnSchedule() { //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Expected O, but got Unknown //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Expected O, but got Unknown bool flag = default(bool); if (_nextRiftTime == double.MaxValue) { _nextRiftTime = Core.ServerGameManager.ServerTime + (double)RiftInterval; DateTime dateTime = DateTime.UtcNow.AddSeconds(RiftInterval).ToLocalTime(); ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(58, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[PrimalWarEventSystem]: ~It's The Primal Countdown~ ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(RiftInterval / 60); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("m | "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(dateTime, "HH:mm"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogWarning(val); return; } double num = _nextRiftTime - Core.ServerGameManager.ServerTime; if (num <= 0.0) { TryStartPrimalRifts(); return; } int num2 = (int)(num / 60.0); if (num2 != RiftInterval / 60 && num2 % 15 == 0 && (double)num2 != _lastNotified) { _lastNotified = num2; DateTime dateTime2 = DateTime.UtcNow.AddSeconds(num).ToLocalTime(); ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(38, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[PrimalWarEventSystem]: #SoonTM ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(num2); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("m | "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(dateTime2, "HH:mm"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log2.LogWarning(val); } } public static void TryStartPrimalRifts() { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Expected O, but got Unknown _nextRiftTime = Core.ServerGameManager.ServerTime + (double)RiftInterval; if (PlayerService.SteamIdOnlinePlayerInfoCache.Any()) { PlayerService.PlayerInfo playerInfo = PlayerService.SteamIdOnlinePlayerInfoCache.Values.FirstOrDefault(); NetworkEventType val = default(NetworkEventType); val.EventId = NetworkEvents.EventId_WarEvent_StartEvent; val.IsAdminEvent = true; val.IsDebugEvent = true; NetworkEventType componentData = val; WarEvent_StartEvent val2 = default(WarEvent_StartEvent); val2.EventType = (WarEventType)2; val2.EnableAllGates = true; WarEvent_StartEvent componentData2 = val2; FromCharacter val3 = default(FromCharacter); val3.Character = playerInfo.CharEntity; val3.User = playerInfo.UserEntity; FromCharacter componentData3 = val3; EntityManager entityManager = Core.EntityManager; Entity entity = ((EntityManager)(ref entityManager)).CreateEntity(_eventComponents); entity.Write(componentData2); entity.Write(componentData3); entity.Write(componentData); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val4 = new BepInExWarningLogInterpolatedStringHandler(45, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val4).AppendLiteral("[PrimalWarEventSystem]: Primal Rifts - Active"); } log.LogWarning(val4); } } private static void ModifyPrimalUnit(Entity entity, bool isGateBoss = false) { //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_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0004: Unknown result type (might be due to invalid IL or missing references) if (isGateBoss) { entity.TryApplyBuffWithLifeTimeNone(_bloodRainBuff); } SetLevel(entity, isGateBoss); SetAttackSpeed(entity); SetHealth(entity); SetPower(entity, isGateBoss); SetMoveSpeed(entity); } private static void SetLevel(Entity entity, bool isGateBoss) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) int modifier = (isGateBoss ? 15 : 10); entity.With((VExtensions.WithRefHandler)delegate(ref UnitLevel unitLevel) { unitLevel.Level._Value += modifier; }); } private static void SetAttackSpeed(Entity entity) { //IL_0007: 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) float modifier = (entity.IsDreadful() ? 2f : 1.25f); entity.With((VExtensions.WithRefHandler)delegate(ref AbilityBar_Shared abilityBarShared) { abilityBarShared.AbilityAttackSpeed._Value *= modifier; abilityBarShared.PrimaryAttackSpeed._Value *= modifier; }); } private static void SetHealth(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref Health health) { health.MaxHealth._Value *= 3f; health.Value = health.MaxHealth._Value; }); } private static void SetPower(Entity entity, bool isGateBoss) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref UnitStats unitStats) { unitStats.PhysicalPower._Value *= 2f; unitStats.SpellPower._Value *= 2f; unitStats.FireResistance._Value = (isGateBoss ? 1 : unitStats.FireResistance._Value); }); if (isGateBoss) { entity.With((VExtensions.WithRefHandler)delegate(ref ResistanceData resistanceData) { resistanceData.FireResistance_DamageReductionPerRating = 100f; resistanceData.FireResistance_RedcuedIgiteChancePerRating = 100f; }); } } private static void SetMoveSpeed(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref AiMoveSpeeds aiMoveSpeeds) { aiMoveSpeeds.Walk._Value *= 1.5f; aiMoveSpeeds.Run._Value *= 1.5f; aiMoveSpeeds.Circle._Value *= 1.5f; }); } } public class QuestTargetSystem : SystemBase { private ServerGameManager _serverGameManager; private static readonly HashSet _filteredStrings = QuestService.FilteredTargetUnits; private static readonly HashSet _shardBearers; private NativeParallelMultiHashMap _targetUnits; private NativeParallelHashSet _imprisonedUnits; private NativeParallelHashSet _blacklistedUnits; private EntityQuery _targetQuery; private EntityQuery _imprisonedQuery; private ComponentTypeHandle _prefabGuidHandle; private ComponentTypeHandle _buffHandle; private EntityTypeHandle _entityHandle; private EntityStorageInfoLookup _entityStorageInfoLookup; public static QuestTargetSystem Instance { get; set; } public static ReadOnly TargetCache { get { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_001a: 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) QuestTargetSystem instance = Instance; if (instance == null || !instance._targetUnits.IsCreated) { return default(ReadOnly); } return Instance._targetUnits.AsReadOnly(); } } public override void OnCreate() { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Expected O, but got Unknown //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Expected O, but got Unknown //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_01ae: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01ba: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) Instance = this; EntityQueryDesc[] array = new EntityQueryDesc[1]; EntityQueryDesc val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[6] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.None = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[4] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.Options = (EntityQueryOptions)2; array[0] = val; _targetQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array); EntityQueryDesc[] array2 = new EntityQueryDesc[1]; val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[2] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.Options = (EntityQueryOptions)2; array2[0] = val; _imprisonedQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array2); _targetUnits = new NativeParallelMultiHashMap(1024, AllocatorHandle.op_Implicit((Allocator)4)); _blacklistedUnits = new NativeParallelHashSet(256, AllocatorHandle.op_Implicit((Allocator)4)); _imprisonedUnits = new NativeParallelHashSet(512, AllocatorHandle.op_Implicit((Allocator)4)); _prefabGuidHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _buffHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _entityHandle = ((ComponentSystemBase)this).GetEntityTypeHandle(); _entityStorageInfoLookup = ((SystemBase)this).GetEntityStorageInfoLookup(); ((ComponentSystemBase)this).RequireForUpdate(_targetQuery); ((ComponentSystemBase)this).Enabled = true; } public override void OnStartRunning() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) _serverGameManager = ((ComponentSystemBase)this).World.GetExistingSystemManaged().GetServerGameManager(); Enumerator enumerator = ((ComponentSystemBase)this).World.GetExistingSystemManaged()._SpawnableNameToPrefabGuidDictionary.GetEnumerator(); while (enumerator.MoveNext()) { KeyValuePair current = enumerator.Current; PrefabGUID value = current.Value; string key = current.Key; foreach (string filteredString in _filteredStrings) { if (key.Contains(filteredString, StringComparison.CurrentCultureIgnoreCase)) { _blacklistedUnits.Add(value); break; } } } foreach (PrefabGUID shardBearer in _shardBearers) { _blacklistedUnits.Add(shardBearer); } } public override void OnUpdate() { //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) _imprisonedUnits.Clear(); _targetUnits.Clear(); _buffHandle.Update((SystemBase)(object)this); _prefabGuidHandle.Update((SystemBase)(object)this); ((EntityTypeHandle)(ref _entityHandle)).Update((SystemBase)(object)this); ((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Update((SystemBase)(object)this); NativeArray val = ((EntityQuery)(ref _imprisonedQuery)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); int num = 0; try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { ArchetypeChunk current = enumerator.Current; NativeArray nativeArray = ((ArchetypeChunk)(ref current)).GetNativeArray(_buffHandle); for (int i = 0; i < ((ArchetypeChunk)(ref current)).Count; i++) { Entity target = nativeArray[i].Target; if (((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(target)) { _imprisonedUnits.Add(nativeArray[i].Target); num++; } } } } finally { val.Dispose(); } NativeArray val2 = ((EntityQuery)(ref _targetQuery)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); int num2 = 0; try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { ArchetypeChunk current2 = enumerator.Current; NativeArray nativeArray2 = ((ArchetypeChunk)(ref current2)).GetNativeArray(_prefabGuidHandle); NativeArray nativeArray3 = ((ArchetypeChunk)(ref current2)).GetNativeArray(_entityHandle); for (int j = 0; j < ((ArchetypeChunk)(ref current2)).Count; j++) { PrefabGUID val3 = nativeArray2[j]; Entity val4 = nativeArray3[j]; if (((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(val4) && !_blacklistedUnits.Contains(val3) && !_imprisonedUnits.Contains(val4)) { _targetUnits.Add(val3, val4); num2++; } } } } finally { val2.Dispose(); } Sequences.SequenceRequest sequenceRequest; while (Sequences.TryDequeue(out sequenceRequest)) { ((ServerGameManager)(ref _serverGameManager)).PlaySequenceOnTarget(sequenceRequest.Target, sequenceRequest.SequenceGuid, sequenceRequest.Scale, sequenceRequest.Secondary); } } static QuestTargetSystem() { //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) HashSet hashSet = new HashSet(); foreach (PrefabGUID shardBearer in QuestService.ShardBearers) { hashSet.Add(shardBearer); } _shardBearers = hashSet; } } public sealed class ServantUpgradeSystem : SystemBase { private EntityQuery _servantQuery; private EntityTypeHandle _entityHandle; private ComponentTypeHandle _coffinHandle; private ComponentTypeHandle _powerHandle; private ComponentLookup _stationLookup; private ComponentLookup _ownerLookup; private ComponentLookup _userLookup; private const float QUALITY = 100f; private const float EXPERTISE = 0.5f; private const float POWER = 20f; public override void OnCreate() { ((ComponentSystemBase)this).Enabled = true; OnCreateInternal(); } private void OnCreateInternal() { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Expected O, but got Unknown //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) _entityHandle = ((ComponentSystemBase)this).GetEntityTypeHandle(); _coffinHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _powerHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(false); _stationLookup = ((SystemBase)this).GetComponentLookup(true); _ownerLookup = ((SystemBase)this).GetComponentLookup(true); _userLookup = ((SystemBase)this).GetComponentLookup(true); EntityQueryDesc[] array = new EntityQueryDesc[1]; EntityQueryDesc val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[2] { ComponentType.op_Implicit(VExtensions.Il2CppTypeOf()), ComponentType.op_Implicit(VExtensions.Il2CppTypeOf()) }); val.None = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[1] { ComponentType.op_Implicit(VExtensions.Il2CppTypeOf()) }); val.Options = (EntityQueryOptions)2; array[0] = val; _servantQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array); ((ComponentSystemBase)this).RequireForUpdate(_servantQuery); } private void OnBeforeUpdate() { ((EntityTypeHandle)(ref _entityHandle)).Update((SystemBase)(object)this); _coffinHandle.Update((SystemBase)(object)this); _powerHandle.Update((SystemBase)(object)this); _stationLookup.Update((SystemBase)(object)this); _ownerLookup.Update((SystemBase)(object)this); _userLookup.Update((SystemBase)(object)this); } public override void OnUpdate() { if (VEvents.TryReceive(out var servantUpgradeEvent)) { OnBeforeUpdate(); OnReceive(ref servantUpgradeEvent); } } private void OnReceive(ref VEvents.ServantUpgradeEvent servantUpgradeEvent) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Expected O, but got Unknown //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Expected O, but got Unknown NativeArray val = ((EntityQuery)(ref _servantQuery)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); bool flag = false; bool flag3 = default(bool); try { Enumerator enumerator = val.GetEnumerator(); ServantCoffinstation val5 = default(ServantCoffinstation); UserOwner val6 = default(UserOwner); Entity val7 = default(Entity); User val8 = default(User); while (enumerator.MoveNext()) { ArchetypeChunk current = enumerator.Current; NativeArray nativeArray = ((ArchetypeChunk)(ref current)).GetNativeArray(_entityHandle); NativeArray nativeArray2 = ((ArchetypeChunk)(ref current)).GetNativeArray(_coffinHandle); NativeArray nativeArray3 = ((ArchetypeChunk)(ref current)).GetNativeArray(_powerHandle); for (int i = 0; i < ((ArchetypeChunk)(ref current)).Count; i++) { Entity val2 = nativeArray[i]; ServantPower val3 = nativeArray3[i]; ServantConnectedCoffin val4 = nativeArray2[i]; Entity entityOnServer = ((NetworkedEntity)(ref val4.CoffinEntity)).GetEntityOnServer(); if (!((SystemBase)this).Exists(val2) || !_stationLookup.TryGetComponent(entityOnServer, ref val5) || !_ownerLookup.TryGetComponent(entityOnServer, ref val6) || !((NetworkedEntity)(ref val6.Owner)).TryGetSyncedEntity(ref val7) || !((SystemBase)this).Exists(val7) || !_userLookup.TryGetComponent(val7, ref val8)) { continue; } FixedString64Bytes characterName = val8.CharacterName; FixedString64Bytes servantName = val5.ServantName; bool num = !((FixedString64Bytes)(ref characterName)).IsEmpty && ((FixedString64Bytes)(ref characterName)).Value.Equals(servantUpgradeEvent.Player); bool flag2 = !((FixedString64Bytes)(ref servantName)).IsEmpty && ((FixedString64Bytes)(ref servantName)).Value.Equals(servantUpgradeEvent.Servant); if (num && flag2) { val5.BloodQuality = 100f; val5.ServantProficiency = 0.5f; val3.Power = 20f; val3.Expertise = 0.5f; ((SystemBase)this).SetComponent(entityOnServer, val5); ((SystemBase)this).SetComponent(val2, val3); flag = true; VEvents.KeepReceipt(ref servantUpgradeEvent, flag); ManualLogSource log = Core.Log; BepInExInfoLogInterpolatedStringHandler val9 = new BepInExInfoLogInterpolatedStringHandler(15, 2, ref flag3); if (flag3) { ((BepInExLogInterpolatedStringHandler)val9).AppendLiteral("Upgraded "); ((BepInExLogInterpolatedStringHandler)val9).AppendFormatted(servantUpgradeEvent.Servant); ((BepInExLogInterpolatedStringHandler)val9).AppendLiteral(" for "); ((BepInExLogInterpolatedStringHandler)val9).AppendFormatted(servantUpgradeEvent.Player); ((BepInExLogInterpolatedStringHandler)val9).AppendLiteral("!"); } log.LogInfo(val9); } } } } catch (Exception ex) { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val10 = new BepInExErrorLogInterpolatedStringHandler(0, 1, ref flag3); if (flag3) { ((BepInExLogInterpolatedStringHandler)val10).AppendFormatted(ex); } log2.LogError(val10); } finally { if (val.IsCreated) { val.Dispose(); } } if (!flag) { VEvents.KeepReceipt(ref servantUpgradeEvent, flag); } } } } namespace Bloodcraft.Systems.Quests { internal static class QuestSystem { public enum QuestType { Daily, Weekly } public enum TargetType { Kill, Craft, Gather, Fish } public class QuestObjective { public TargetType Goal { get; set; } public PrefabGUID Target { get; set; } public int RequiredAmount { get; set; } public bool Complete { get; set; } } private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _legacy = ConfigService.LegacySystem; private static readonly bool _progression = _leveling || _expertise || _legacy; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _expertiseAndLegacies = _expertise && _legacy; private static readonly bool _infiniteDailies = ConfigService.InfiniteDailies; private static readonly bool _recipes = ConfigService.ExtraRecipes; private static readonly int _maxPlayerLevel = ConfigService.MaxLevel; private static readonly int _maxExpertiseLevel = ConfigService.MaxExpertiseLevel; private static readonly int _maxLegacyLevel = ConfigService.MaxBloodLevel; private static readonly int _maxFamiliarLevel = ConfigService.MaxFamiliarLevel; private static readonly float _dailyPerfectChance = ConfigService.DailyPerfectChance; private static readonly float _resourceYieldModifier = SystemService.ServerGameSettingsSystem._Settings.MaterialYieldModifier_Global; private static readonly Random _random = new Random(); private static readonly Regex _regex = new Regex("T\\d{2}", RegexOptions.Compiled); public static readonly HashSet CraftPrefabs = new HashSet(); public static readonly HashSet ResourcePrefabs = new HashSet(); private static readonly PrefabGUID _invulnerableBuff = Buffs.AdminInvulnerableBuff; private static readonly PrefabGUID _graveyardSkeleton = PrefabGUIDs.CHAR_Undead_SkeletonCrossbow_Graveyard; private static readonly PrefabGUID _forestWolf = PrefabGUIDs.CHAR_Forest_Wolf; private static readonly PrefabGUID _reinforcedBoneSword = PrefabGUIDs.Item_Weapon_Sword_T02_Bone_Reinforced; private static readonly PrefabGUID _reinforcedBoneMace = PrefabGUIDs.Item_Weapon_Mace_T02_Bone_Reinforced; private static readonly PrefabGUID _standardWood = PrefabGUIDs.Item_Ingredient_Wood_Standard; private static readonly PrefabGUID _hallowedWood = PrefabGUIDs.Item_Ingredient_Wood_Hallow; private static readonly PrefabGUID _gloomWood = PrefabGUIDs.Item_Ingredient_Wood_Gloom; private static readonly PrefabGUID _cursedWood = PrefabGUIDs.Item_Ingredient_Wood_Cursed; private static readonly PrefabGUID _corruptedWood = PrefabGUIDs.Item_Ingredient_Wood_CorruptedOak; private static readonly PrefabGUID _itemIngredientStone = PrefabGUIDs.Item_Ingredient_Stone; private const int DEFAULT_MAX_LEVEL = 90; private const float XP_PERCENTAGE = 0.03f; private const int VBLOOD_FACTOR = 3; private const float DELAY = 0.75f; private static readonly List _perfectGems = new List(6) { PrefabGUIDs.Item_Ingredient_Gem_Amethyst_T04, PrefabGUIDs.Item_Ingredient_Gem_Ruby_T04, PrefabGUIDs.Item_Ingredient_Gem_Sapphire_T04, PrefabGUIDs.Item_Ingredient_Gem_Emerald_T04, PrefabGUIDs.Item_Ingredient_Gem_Topaz_T04, PrefabGUIDs.Item_Ingredient_Gem_Miststone_T04 }; private static readonly List _targetTypes = new List(4) { TargetType.Kill, TargetType.Craft, TargetType.Gather, TargetType.Fish }; private static readonly Dictionary _questMultipliers = new Dictionary { { QuestType.Daily, 1 }, { QuestType.Weekly, 5 } }; public static readonly Dictionary QuestRewards = new Dictionary(); private static readonly Dictionary _woodTierLevelRange = new Dictionary { { PrefabGUIDs.Item_Ingredient_Wood_Standard, (0, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Ingredient_Wood_Hallow, (30, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Ingredient_Wood_Gloom, (40, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Ingredient_Wood_Cursed, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Ingredient_Wood_CorruptedOak, (60, ConfigService.MaxLevel) } }; private static readonly Dictionary _equipmentTierLevelRangeMap = new Dictionary { { "T01", (0, 15) }, { "T02", (20, 30) }, { "T03", (30, 45) }, { "T04", (40, 60) }, { "T05", (50, ConfigService.MaxLevel) }, { "T06", (60, ConfigService.MaxLevel) }, { "T07", (70, ConfigService.MaxLevel) } }; private static readonly Dictionary _consumableTierLevelRangeMap = new Dictionary { { PrefabGUIDs.Item_Consumable_Salve_Vermin, (0, 30) }, { PrefabGUIDs.Item_Consumable_PhysicalPowerPotion_T01, (15, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_SpellPowerPotion_T01, (15, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_WranglersPotion_T01, (15, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_SunResistancePotion_T01, (15, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_HealingPotion_T01, (15, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_FireResistancePotion_T01, (15, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_DuskCaller, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_PhysicalPowerPotion_T02, (65, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_SpellPowerPotion_T02, (65, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_HealingPotion_T02, (40, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_HolyResistancePotion_T01, (40, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Consumable_HolyResistancePotion_T02, (40, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Bat_T01, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Beast_T01, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Blasphemous_T01, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Crow_T01, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Prowler_T01, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Raven_T01, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Twisted_T01, (50, ConfigService.MaxLevel) }, { PrefabGUIDs.Item_Elixir_Werewolf_T01, (50, ConfigService.MaxLevel) } }; private static readonly List _amounts = new List(11) { 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000 }; private static readonly Dictionary> _delayedQuestMessages = new Dictionary>(); private static readonly WaitForSeconds _questMessageDelay = new WaitForSeconds(0.1f); private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static IEnumerable GetKillPrefabsForLevelEnumerable(int playerLevel) { NativeParallelHashMap prefabMap = PrefabCollectionSystem._PrefabGuidToEntityMap; ReadOnly targetCache = QuestTargetSystem.TargetCache; EntityManager entityManager = EntityManager; ComponentLookup unitLevelLookup = ((EntityManager)(ref entityManager)).GetComponentLookup(true); if (!targetCache.IsCreated) { yield break; } NativeKeyValueArrays keyValueIterator = targetCache.GetKeyValueArrays(AllocatorHandle.op_Implicit((Allocator)2)); try { Entity val2 = default(Entity); UnitLevel val3 = default(UnitLevel); for (int i = 0; i < keyValueIterator.Keys.Length; i++) { PrefabGUID val = keyValueIterator.Keys[i]; if (prefabMap.TryGetValue(val, ref val2) && unitLevelLookup.TryGetComponent(val2, ref val3)) { bool num = val2.IsVBlood(); int value = val3.Level._Value; bool flag = Math.Abs(value - playerLevel) <= 10; bool flag2 = playerLevel >= 90 && value >= 80; if ((!num || value <= playerLevel || playerLevel >= 90) && (flag || flag2)) { yield return val; } } } } finally { keyValueIterator.Dispose(); } } private static IEnumerable GetCraftPrefabsForLevelEnumerable(int playerLevel) { NativeParallelHashMap prefabMap = PrefabCollectionSystem._PrefabGuidToEntityMap; Entity entity = default(Entity); foreach (PrefabGUID craftPrefab in CraftPrefabs) { if (!prefabMap.TryGetValue(craftPrefab, ref entity) || !entity.TryGetComponent(out ItemData componentData)) { continue; } string prefabName = craftPrefab.GetPrefabName(); Match match = _regex.Match(prefabName); if (!match.Success) { continue; } string value = match.Value; if ((int)componentData.ItemType == 2) { if (IsWithinLevelRange(value, playerLevel)) { yield return craftPrefab; } } else if ((int)componentData.ItemType == 1 && IsConsumableWithinLevelRange(craftPrefab, playerLevel)) { yield return craftPrefab; } } } private static IEnumerable GetGatherPrefabsForLevelEnumerable(int playerLevel) { NativeParallelHashMap prefabMap = PrefabCollectionSystem._PrefabGuidToEntityMap; Entity entity = default(Entity); foreach (PrefabGUID resourcePrefab in ResourcePrefabs) { if (!prefabMap.TryGetValue(resourcePrefab, ref entity) || !entity.TryGetComponent(out EntityCategory componentData) || componentData.ResourceLevel._Value > playerLevel) { continue; } Enumerator enumerator2 = entity.ReadBuffer().GetEnumerator(); while (enumerator2.MoveNext()) { DropTableBuffer current2 = enumerator2.Current; if ((int)current2.DropTrigger != 5 || !prefabMap[current2.DropTableGuid].TryGetBuffer(out DynamicBuffer dynamicBuffer)) { continue; } Enumerator enumerator3 = dynamicBuffer.GetEnumerator(); while (enumerator3.MoveNext()) { DropTableDataBuffer current3 = enumerator3.Current; string prefabName = current3.ItemGuid.GetPrefabName(); if (prefabName.Contains("Ingredient_Wood")) { if (IsWoodWithinLevelRange(resourcePrefab, playerLevel)) { yield return current3.ItemGuid; break; } } else if (prefabName.Contains("Item_Ingredient")) { yield return current3.ItemGuid; break; } } break; } } } private static bool IsWithinLevelRange(string tier, int playerLevel) { if (_equipmentTierLevelRangeMap.TryGetValue(tier, out (int, int) value)) { if (playerLevel >= value.Item1) { return playerLevel <= value.Item2; } return false; } return false; } private static bool IsConsumableWithinLevelRange(PrefabGUID prefabGuid, int playerLevel) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) if (_consumableTierLevelRangeMap.TryGetValue(prefabGuid, out (int, int) value)) { if (playerLevel >= value.Item1) { return playerLevel <= value.Item2; } return false; } return false; } private static bool IsWoodWithinLevelRange(PrefabGUID prefabGuid, int playerLevel) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) if (_woodTierLevelRange.TryGetValue(prefabGuid, out (int, int) value)) { if (playerLevel >= value.Item1) { return playerLevel <= value.Item2; } return false; } return false; } private static QuestObjective GenerateQuestObjective(TargetType goal, HashSet targets, QuestType questType) { //IL_0000: 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) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0255: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_015e: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) PrefabGUID val = PrefabGUID.Empty; int num; switch (goal) { case TargetType.Kill: if (targets.Any()) { val = targets.ElementAt(_random.Next(targets.Count)); targets.Remove(val); } else if (questType.Equals(QuestType.Daily)) { val = _graveyardSkeleton; } else if (questType.Equals(QuestType.Weekly)) { val = _forestWolf; } num = 6 * _questMultipliers[questType]; if (val.GetPrefabName().ToLower().ContainsAny(new List(2) { "vblood", "vhunter" })) { if (questType.Equals(QuestType.Daily)) { num = 1; } else if (questType.Equals(QuestType.Weekly)) { num = 5; } } break; case TargetType.Craft: if (targets.Any()) { val = targets.ElementAt(_random.Next(targets.Count)); targets.Remove(val); } else if (questType.Equals(QuestType.Daily)) { val = _reinforcedBoneSword; } else if (questType.Equals(QuestType.Weekly)) { val = _reinforcedBoneMace; } num = _random.Next(2, 4) * _questMultipliers[questType]; break; case TargetType.Gather: if (targets.Any()) { val = targets.ElementAt(_random.Next(targets.Count)); targets.Remove(val); } else if (questType.Equals(QuestType.Daily)) { val = _standardWood; } else if (questType.Equals(QuestType.Weekly)) { val = _itemIngredientStone; } num = (int)((float)(_amounts.ElementAt(_random.Next(_amounts.Count)) * _questMultipliers[questType]) * _resourceYieldModifier); if (((PrefabGUID)(ref val)).Equals(_cursedWood) || ((PrefabGUID)(ref val)).Equals(_gloomWood) || ((PrefabGUID)(ref val)).Equals(_hallowedWood) || ((PrefabGUID)(ref val)).Equals(_corruptedWood)) { num /= 2; } break; case TargetType.Fish: val = targets.FirstOrDefault(); num = _random.Next(2, 4) * _questMultipliers[questType]; break; default: throw new ArgumentOutOfRangeException(goal.ToString(), "Unknown quest goal type encountered when generating quest objective!"); } return new QuestObjective { Goal = goal, Target = val, RequiredAmount = num }; } private static IEnumerable GetGoalPrefabsForLevelEnumerable(TargetType goal, int level) { //IL_0033: Unknown result type (might be due to invalid IL or missing references) return goal switch { TargetType.Kill => GetKillPrefabsForLevelEnumerable(level), TargetType.Craft => GetCraftPrefabsForLevelEnumerable(level), TargetType.Gather => GetGatherPrefabsForLevelEnumerable(level), TargetType.Fish => new <>z__ReadOnlySingleElementList(PrefabGUIDs.FakeItem_AnyFish), _ => throw new ArgumentOutOfRangeException(goal.ToString(), "Unknown quest goal type encountered when generating quest objective!"), }; } public static void InitializePlayerQuests(ulong steamId, int level) { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) List randomQuestTypes = GetRandomQuestTypes(); TargetType goal = randomQuestTypes.First(); TargetType goal2 = randomQuestTypes.Last(); HashSet hashSet = new HashSet(); foreach (PrefabGUID item in GetGoalPrefabsForLevelEnumerable(goal, level)) { hashSet.Add(item); } HashSet targets = hashSet; hashSet = new HashSet(); foreach (PrefabGUID item2 in GetGoalPrefabsForLevelEnumerable(goal2, level)) { hashSet.Add(item2); } HashSet targets2 = hashSet; Dictionary data = new Dictionary { { QuestType.Daily, (GenerateQuestObjective(goal, targets, QuestType.Daily), 0, DateTime.UtcNow) }, { QuestType.Weekly, (GenerateQuestObjective(goal2, targets2, QuestType.Weekly), 0, DateTime.UtcNow) } }; steamId.SetPlayerQuests(data); } public static void RefreshQuests(User user, ulong steamId, int level) { //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a0: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_025e: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) if (steamId.TryGetPlayerQuests(out Dictionary quests)) { DateTime item = quests[QuestType.Daily].Item3; DateTime item2 = quests[QuestType.Weekly].Item3; DateTime dateTime = item.AddDays(1.0); DateTime dateTime2 = item2.AddDays(7.0); DateTime utcNow = DateTime.UtcNow; bool flag = utcNow >= dateTime; bool flag2 = utcNow >= dateTime2; if (!(flag || flag2)) { return; } if (flag && flag2) { List randomQuestTypes = GetRandomQuestTypes(); TargetType goal = randomQuestTypes.First(); HashSet hashSet = new HashSet(); foreach (PrefabGUID item3 in GetGoalPrefabsForLevelEnumerable(goal, level)) { hashSet.Add(item3); } HashSet targets = hashSet; quests[QuestType.Daily] = (GenerateQuestObjective(goal, targets, QuestType.Daily), 0, utcNow); LocalizationService.HandleServerReply(EntityManager, user, "Your Daily Quest has been refreshed!"); goal = randomQuestTypes.Last(); hashSet = new HashSet(); foreach (PrefabGUID item4 in GetGoalPrefabsForLevelEnumerable(goal, level)) { hashSet.Add(item4); } targets = hashSet; quests[QuestType.Weekly] = (GenerateQuestObjective(goal, targets, QuestType.Weekly), 0, utcNow); LocalizationService.HandleServerReply(EntityManager, user, "Your Weekly Quest has been refreshed!"); } else if (flag) { TargetType goal = GetRandomQuestType(); HashSet hashSet = new HashSet(); foreach (PrefabGUID item5 in GetGoalPrefabsForLevelEnumerable(goal, level)) { hashSet.Add(item5); } HashSet targets = hashSet; quests[QuestType.Daily] = (GenerateQuestObjective(goal, targets, QuestType.Daily), 0, utcNow); LocalizationService.HandleServerReply(EntityManager, user, "Your Daily Quest has been refreshed!"); } else if (flag2) { TargetType goal = GetUniqueQuestType(quests, QuestType.Daily); HashSet hashSet = new HashSet(); foreach (PrefabGUID item6 in GetGoalPrefabsForLevelEnumerable(goal, level)) { hashSet.Add(item6); } HashSet targets = hashSet; quests[QuestType.Weekly] = (GenerateQuestObjective(goal, targets, QuestType.Weekly), 0, utcNow); LocalizationService.HandleServerReply(EntityManager, user, "Your Weekly Quest has been refreshed!"); } steamId.SetPlayerQuests(quests); } else { InitializePlayerQuests(steamId, level); } } public static void ForceRefresh(ulong steamId, int level) { //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) List randomQuestTypes = GetRandomQuestTypes(); TargetType goal = randomQuestTypes.First(); TargetType goal2 = randomQuestTypes.Last(); if (steamId.TryGetPlayerQuests(out Dictionary quests)) { HashSet hashSet = new HashSet(); foreach (PrefabGUID item in GetGoalPrefabsForLevelEnumerable(goal, level)) { hashSet.Add(item); } HashSet targets = hashSet; quests[QuestType.Daily] = (GenerateQuestObjective(goal, targets, QuestType.Daily), 0, DateTime.UtcNow); hashSet = new HashSet(); foreach (PrefabGUID item2 in GetGoalPrefabsForLevelEnumerable(goal2, level)) { hashSet.Add(item2); } targets = hashSet; quests[QuestType.Weekly] = (GenerateQuestObjective(goal2, targets, QuestType.Weekly), 0, DateTime.UtcNow); steamId.SetPlayerQuests(quests); } else { InitializePlayerQuests(steamId, level); } } public static void ForceDaily(ulong steamId, int level) { //IL_0028: 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_0030: Unknown result type (might be due to invalid IL or missing references) if (!steamId.TryGetPlayerQuests(out Dictionary quests)) { return; } TargetType randomQuestType = GetRandomQuestType(); HashSet hashSet = new HashSet(); foreach (PrefabGUID item in GetGoalPrefabsForLevelEnumerable(randomQuestType, level)) { hashSet.Add(item); } HashSet targets = hashSet; quests[QuestType.Daily] = (GenerateQuestObjective(randomQuestType, targets, QuestType.Daily), 0, DateTime.UtcNow); steamId.SetPlayerQuests(quests); } public static void ForceWeekly(ulong steamId, int level) { //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) if (!steamId.TryGetPlayerQuests(out Dictionary quests)) { return; } TargetType uniqueQuestType = GetUniqueQuestType(quests, QuestType.Daily); HashSet hashSet = new HashSet(); foreach (PrefabGUID item in GetGoalPrefabsForLevelEnumerable(uniqueQuestType, level)) { hashSet.Add(item); } HashSet targets = hashSet; quests[QuestType.Weekly] = (GenerateQuestObjective(uniqueQuestType, targets, QuestType.Weekly), 0, DateTime.UtcNow); steamId.SetPlayerQuests(quests); } private static TargetType GetUniqueQuestType(Dictionary questData, QuestType questType) { List targetTypes = _targetTypes; List list = new List(targetTypes.Count); list.AddRange(targetTypes); List list2 = list; if (questData.TryGetValue(questType, out (QuestObjective, int, DateTime) value)) { list2.Remove(value.Item1.Goal); } return list2[_random.Next(list2.Count)]; } private static TargetType GetRandomQuestType() { List targetTypes = _targetTypes; List list = new List(targetTypes.Count); list.AddRange(targetTypes); List list2 = list; return list2[_random.Next(list2.Count)]; } private static List GetRandomQuestTypes() { List targetTypes = _targetTypes; List list = new List(targetTypes.Count); list.AddRange(targetTypes); List list2 = list; TargetType item = list2[_random.Next(list2.Count)]; list2.Remove(item); TargetType item2 = list2[_random.Next(list2.Count)]; return new List(2) { item, item2 }; } public static void OnUpdate(object sender, DeathEventListenerSystemPatch.DeathEventArgs deathEvent) { //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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) PrefabGUID prefabGuid = deathEvent.Target.GetPrefabGuid(); foreach (Entity deathParticipant in deathEvent.DeathParticipants) { User user = deathParticipant.GetUser(); if (deathParticipant.GetSteamId().TryGetPlayerQuests(out Dictionary quests)) { ProcessQuestProgress(quests, prefabGuid, 1, user); } } } public static void ProcessQuestProgress(Dictionary questData, PrefabGUID target, int amount, User user) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0267: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) bool flag = false; ulong platformId = user.PlatformId; for (int i = 0; i < questData.Count; i++) { KeyValuePair quest = questData.ElementAt(i); if (!(quest.Value.Item1.Target == target)) { continue; } flag = true; string colorType = ((quest.Key == QuestType.Daily) ? $"{0} Quest" : $"{1} Quest"); questData[quest.Key] = (quest.Value.Item1, quest.Value.Item2 + amount, quest.Value.Item3); if (!_delayedQuestMessages.ContainsKey(platformId)) { _delayedQuestMessages[platformId] = new Dictionary(); } if (!_delayedQuestMessages[platformId].ContainsKey(quest.Key)) { (int, bool) value = (questData[quest.Key].Progress, true); _delayedQuestMessages[platformId].Add(quest.Key, value); QuestProgressDelayRoutine(questData, quest, user, platformId, colorType).Run(); } else { _delayedQuestMessages[platformId][quest.Key] = (questData[quest.Key].Progress, true); } if (quest.Value.Item1.RequiredAmount > questData[quest.Key].Progress || quest.Value.Item1.Complete) { continue; } quest.Value.Item1.Complete = true; if (QuestRewards.Any()) { HandleItemReward(user, quest.Key, quest.Value.Item1, colorType); } if (_progression) { HandleExperienceReward(user, quest.Key); } if (_recipes) { HandlePerfectGemReward(user, quest.Key); } if (quest.Key != 0 || !_infiniteDailies) { continue; } KeyValuePair experience; int level = ((_leveling && platformId.TryGetPlayerExperience(out experience)) ? experience.Key : Progression.GetSimulatedLevel(PlayerService.GetPlayerInfo(((FixedString64Bytes)(ref user.CharacterName)).Value).UserEntity)); TargetType randomQuestType = GetRandomQuestType(); HashSet hashSet = new HashSet(); foreach (PrefabGUID item in GetGoalPrefabsForLevelEnumerable(randomQuestType, level)) { hashSet.Add(item); } HashSet targets = hashSet; questData[QuestType.Daily] = (GenerateQuestObjective(randomQuestType, targets, QuestType.Daily), 0, DateTime.UtcNow); (QuestObjective, int, DateTime) tuple = questData[QuestType.Daily]; LocalizationService.HandleServerReply(EntityManager, user, $"New Daily Quest available: {tuple.Item1.Goal} {tuple.Item1.Target.GetLocalizedName()}x{tuple.Item1.RequiredAmount} [{tuple.Item2}/{tuple.Item1.RequiredAmount}]"); } if (flag) { platformId.SetPlayerQuests(questData); } } private static void HandlePerfectGemReward(User user, QuestType questType) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) PrefabGUID itemType = _perfectGems.ElementAt(_random.Next(_perfectGems.Count)); if (questType.Equals(QuestType.Weekly)) { Misc.GiveOrDropItem(user, ((NetworkedEntity)(ref user.LocalCharacter)).GetEntityOnServer(), itemType, 1); } else if (questType.Equals(QuestType.Daily) && Misc.RollForChance(_dailyPerfectChance)) { Misc.GiveOrDropItem(user, ((NetworkedEntity)(ref user.LocalCharacter)).GetEntityOnServer(), itemType, 1); } } private static void HandleItemReward(User user, QuestType questType, QuestObjective objective, string colorType) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: 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_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0175: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) PrefabGUID val = QuestRewards.Keys.ElementAt(_random.Next(QuestRewards.Count)); int num = QuestRewards[val]; if (questType == QuestType.Weekly) { num *= _questMultipliers[questType]; } if (objective.Target.GetPrefabName().Contains("vblood", StringComparison.CurrentCultureIgnoreCase)) { num *= 3; } ServerGameManager serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(user.LocalCharacter._Entity, val, num))) { string message = $"You've received {val.GetLocalizedName()}x{num} for completing your {colorType}!"; LocalizationService.HandleServerReply(EntityManager, user, message); } else { InventoryUtilitiesServer.CreateDropItem(EntityManager, user.LocalCharacter._Entity, val, num, default(Entity)); string message2 = $"You've received {val.GetLocalizedName()}x{num} for completing your {colorType}! It dropped on the ground because your inventory was full."; LocalizationService.HandleServerReply(EntityManager, user, message2); } } private static void HandleExperienceReward(User user, QuestType questType) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) string text = ProcessQuestExperienceGain(user, _questMultipliers[questType], 0.03f); if (!string.IsNullOrEmpty(text)) { float num = 0.03f * (float)_questMultipliers[questType] * 100f; if (text.Contains("expertise") && text.Contains("essence")) { num *= 0.5f; } string message = $"You've been awarded {num:F1}% of your total {text}!"; LocalizationService.HandleServerReply(EntityManager, user, message); } } private static string ProcessQuestExperienceGain(User user, int multiplier, float percentOfTotalXP) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001b: 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_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0241: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_0295: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_019f: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) string empty = string.Empty; ulong platformId = user.PlatformId; Entity entityOnServer = ((NetworkedEntity)(ref user.LocalCharacter)).GetEntityOnServer(); Entity userEntity = entityOnServer.GetUserEntity(); KeyValuePair experience; int num = (platformId.TryGetPlayerExperience(out experience) ? experience.Key : 0); if (_leveling && num < _maxPlayerLevel) { float gainedXP = (float)Progression.ConvertLevelToXp(num) * percentOfTotalXP * (float)multiplier; return GainPlayerExperience(entityOnServer, platformId, gainedXP); } int num2 = 0; int num3 = 0; if (_expertiseAndLegacies) { WeaponType currentWeaponType = WeaponManager.GetCurrentWeaponType(entityOnServer); IWeaponExpertise expertise = WeaponExpertiseFactory.GetExpertise(currentWeaponType); BloodType currentBloodType = BloodManager.GetCurrentBloodType(entityOnServer.GetBlood()); IBloodLegacy bloodHandler = BloodLegacyFactory.GetBloodHandler(currentBloodType); if (expertise != null) { num2 = expertise.GetExpertiseData(platformId).Key; } if (bloodHandler != null) { num3 = bloodHandler.GetLegacyData(platformId).Key; } bool flag = num2 >= _maxExpertiseLevel; bool flag2 = num3 >= _maxLegacyLevel; if (flag && flag2 && _familiars) { return TryGainFamiliarExperience(entityOnServer, platformId, percentOfTotalXP, multiplier); } if (flag && !flag2 && bloodHandler != null) { float gainedXP = (float)Progression.ConvertLevelToXp(num3) * percentOfTotalXP * (float)multiplier; return GainLegacyExperience(entityOnServer, userEntity, user, platformId, currentBloodType, bloodHandler, gainedXP); } if (!flag && flag2 && expertise != null) { float gainedXP = (float)Progression.ConvertLevelToXp(num2) * percentOfTotalXP * (float)multiplier; return GainExpertiseExperience(entityOnServer, userEntity, user, platformId, currentWeaponType, expertise, gainedXP); } if (!flag && !flag2) { percentOfTotalXP *= 0.5f; string text = string.Empty; string text2 = string.Empty; if (expertise == null || bloodHandler == null) { percentOfTotalXP *= 2f; } if (expertise != null) { float gainedXP = (float)Progression.ConvertLevelToXp(num2) * percentOfTotalXP * (float)multiplier; text = GainExpertiseExperience(entityOnServer, userEntity, user, platformId, currentWeaponType, expertise, gainedXP); } if (bloodHandler != null) { float gainedXP = (float)Progression.ConvertLevelToXp(num3) * percentOfTotalXP * (float)multiplier; text2 = GainLegacyExperience(entityOnServer, userEntity, user, platformId, currentBloodType, bloodHandler, gainedXP); } if (!string.IsNullOrEmpty(text) && !string.IsNullOrEmpty(text2)) { return text + " & " + text2; } return text + text2; } } else if (_expertise) { WeaponType currentWeaponType2 = WeaponManager.GetCurrentWeaponType(entityOnServer); IWeaponExpertise expertise2 = WeaponExpertiseFactory.GetExpertise(currentWeaponType2); if (expertise2 != null) { num2 = expertise2.GetExpertiseData(platformId).Key; float gainedXP = (float)Progression.ConvertLevelToXp(num2) * percentOfTotalXP * (float)multiplier; return GainExpertiseExperience(entityOnServer, userEntity, user, platformId, currentWeaponType2, expertise2, gainedXP); } } else if (_legacy) { BloodType currentBloodType2 = BloodManager.GetCurrentBloodType(entityOnServer.GetBlood()); IBloodLegacy bloodHandler2 = BloodLegacyFactory.GetBloodHandler(currentBloodType2); if (bloodHandler2 != null) { num3 = bloodHandler2.GetLegacyData(platformId).Key; float gainedXP = (float)Progression.ConvertLevelToXp(num3) * percentOfTotalXP * (float)multiplier; return GainLegacyExperience(entityOnServer, userEntity, user, platformId, currentBloodType2, bloodHandler2, gainedXP); } } return empty; } private static string GainPlayerExperience(Entity playerCharacter, ulong steamId, float gainedXP) { //IL_000b: Unknown result type (might be due to invalid IL or missing references) LevelingSystem.SaveLevelingExperience(steamId, gainedXP, out var leveledUp, out var newLevel); LevelingSystem.NotifyPlayer(playerCharacter, steamId, gainedXP, leveledUp, newLevel, 0.75f); return "experience"; } private static string GainExpertiseExperience(Entity playerCharacter, Entity userEntity, User user, ulong steamId, WeaponType weaponType, IWeaponExpertise handler, float gainedXP) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) WeaponSystem.SaveExpertiseExperience(steamId, handler, gainedXP, out var leveledUp, out var newLevel); WeaponSystem.NotifyPlayer(playerCharacter, userEntity, user, steamId, weaponType, gainedXP, leveledUp, newLevel, handler, 0.75f); return "expertise"; } private static string GainLegacyExperience(Entity playerCharacter, Entity userEntity, User user, ulong steamId, BloodType bloodType, IBloodLegacy handler, float gainedXP) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) BloodSystem.SaveBloodExperience(steamId, handler, gainedXP, out var leveledUp, out var newLevel); BloodSystem.NotifyPlayer(playerCharacter, userEntity, user, steamId, bloodType, gainedXP, leveledUp, newLevel, handler, 0.75f); return "essence"; } private static string GainFamiliarExperience(Entity character, Entity familiar, int familiarId, ulong steamId, KeyValuePair xpData, float gainedXP, int currentLevel) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) FamiliarLevelingSystem.UpdateFamiliarExperience(character, familiar, familiarId, steamId, xpData, gainedXP, currentLevel); return "familiar experience"; } private static string TryGainFamiliarExperience(Entity character, ulong steamId, float percentOfTotalXP, int multiplier) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) Entity activeFamiliar = Bloodcraft.Utilities.Familiars.GetActiveFamiliar(character); int guidHash = activeFamiliar.GetGuidHash(); if (!activeFamiliar.IsDisabled() && !activeFamiliar.HasBuff(_invulnerableBuff)) { KeyValuePair familiarExperience = FamiliarLevelingSystem.GetFamiliarExperience(steamId, guidHash); int key = familiarExperience.Key; if (key >= _maxFamiliarLevel) { return string.Empty; } float gainedXP = (float)Progression.ConvertLevelToXp(key) * percentOfTotalXP * (float)multiplier; return GainFamiliarExperience(character, activeFamiliar, guidHash, steamId, familiarExperience, gainedXP, key); } return string.Empty; } private static IEnumerator QuestProgressDelayRoutine(Dictionary questData, KeyValuePair quest, User user, ulong steamId, string colorType) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) if (questData[quest.Key].Progress < questData[quest.Key].Objective.RequiredAmount) { yield return _questMessageDelay; if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "QuestLogging") && !quest.Value.Objective.Complete) { string message = $"Progress added to {colorType}: {quest.Value.Objective.Goal} {quest.Value.Objective.Target.GetLocalizedName()} [{questData[quest.Key].Progress}/{quest.Value.Objective.RequiredAmount}]"; LocalizationService.HandleServerReply(EntityManager, user, message); } _delayedQuestMessages[steamId].Remove(quest.Key); if (_delayedQuestMessages[steamId].Count == 0) { _delayedQuestMessages.Remove(steamId); } } } } [HarmonyPatch] public static class WorldBootstrapPatch { [HarmonyPatch(typeof(WorldBootstrapUtilities), "AddSystemsToWorld")] [HarmonyPrefix] public static void Prefix(World world, WorldBootstrap worldConfig, WorldSystemConfig worldSystemConfig) { //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Expected O, but got Unknown try { if (world.Name.Equals("Server")) { UpdateGroup orCreateSystemManaged = world.GetOrCreateSystemManaged(); ClassInjector.RegisterTypeInIl2Cpp(); ClassInjector.RegisterTypeInIl2Cpp(); QuestTargetSystem orCreateSystemManaged2 = world.GetOrCreateSystemManaged(); PrimalWarEventSystem orCreateSystemManaged3 = world.GetOrCreateSystemManaged(); ((ComponentSystemGroup)orCreateSystemManaged).AddSystemToUpdateList((ComponentSystemBase)(object)orCreateSystemManaged2); ((ComponentSystemGroup)orCreateSystemManaged).AddSystemToUpdateList((ComponentSystemBase)(object)orCreateSystemManaged3); ((ComponentSystemGroup)orCreateSystemManaged).SortSystems(); } } catch (Exception ex) { ManualLogSource logSource = Plugin.MiniBehaviour.LogSource; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(53, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[WorldBootstrap_Server.AddSystemsToWorld] Exception: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } logSource.LogError(val); } } } public class QuestTargetSystem : SystemBase { private ServerGameManager _serverGameManager; private static readonly HashSet _filteredStrings = QuestService.FilteredTargetUnits; private static readonly HashSet _shardBearers; private NativeParallelMultiHashMap _targetUnits; private NativeParallelHashSet _imprisonedUnits; private NativeParallelHashSet _blacklistedUnits; private EntityQuery _targetQuery; private EntityQuery _imprisonedQuery; private ComponentTypeHandle _prefabGuidHandle; private ComponentTypeHandle _buffHandle; private EntityTypeHandle _entityHandle; private EntityStorageInfoLookup _entityStorageInfoLookup; public static QuestTargetSystem Instance { get; set; } public static ReadOnly TargetCache { get { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_001a: 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) QuestTargetSystem instance = Instance; if (instance == null || !instance._targetUnits.IsCreated) { return default(ReadOnly); } return Instance._targetUnits.AsReadOnly(); } } public override void OnCreate() { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Expected O, but got Unknown //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Expected O, but got Unknown //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_01ae: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01ba: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) Instance = this; EntityQueryDesc[] array = new EntityQueryDesc[1]; EntityQueryDesc val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[6] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.None = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[4] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.Options = (EntityQueryOptions)2; array[0] = val; _targetQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array); EntityQueryDesc[] array2 = new EntityQueryDesc[1]; val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[2] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); val.Options = (EntityQueryOptions)2; array2[0] = val; _imprisonedQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array2); _targetUnits = new NativeParallelMultiHashMap(1024, AllocatorHandle.op_Implicit((Allocator)4)); _blacklistedUnits = new NativeParallelHashSet(256, AllocatorHandle.op_Implicit((Allocator)4)); _imprisonedUnits = new NativeParallelHashSet(512, AllocatorHandle.op_Implicit((Allocator)4)); _prefabGuidHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _buffHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _entityHandle = ((ComponentSystemBase)this).GetEntityTypeHandle(); _entityStorageInfoLookup = ((SystemBase)this).GetEntityStorageInfoLookup(); ((ComponentSystemBase)this).RequireForUpdate(_targetQuery); ((ComponentSystemBase)this).Enabled = true; } public override void OnStartRunning() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) _serverGameManager = ((ComponentSystemBase)this).World.GetExistingSystemManaged().GetServerGameManager(); Enumerator enumerator = ((ComponentSystemBase)this).World.GetExistingSystemManaged()._SpawnableNameToPrefabGuidDictionary.GetEnumerator(); while (enumerator.MoveNext()) { KeyValuePair current = enumerator.Current; PrefabGUID value = current.Value; string key = current.Key; foreach (string filteredString in _filteredStrings) { if (key.Contains(filteredString, StringComparison.CurrentCultureIgnoreCase)) { _blacklistedUnits.Add(value); break; } } } foreach (PrefabGUID shardBearer in _shardBearers) { _blacklistedUnits.Add(shardBearer); } } public override void OnUpdate() { //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) _imprisonedUnits.Clear(); _targetUnits.Clear(); _buffHandle.Update((SystemBase)(object)this); _prefabGuidHandle.Update((SystemBase)(object)this); ((EntityTypeHandle)(ref _entityHandle)).Update((SystemBase)(object)this); ((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Update((SystemBase)(object)this); NativeArray val = ((EntityQuery)(ref _imprisonedQuery)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); int num = 0; try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { ArchetypeChunk current = enumerator.Current; NativeArray nativeArray = ((ArchetypeChunk)(ref current)).GetNativeArray(_buffHandle); for (int i = 0; i < ((ArchetypeChunk)(ref current)).Count; i++) { Entity target = nativeArray[i].Target; if (((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(target)) { _imprisonedUnits.Add(nativeArray[i].Target); num++; } } } } finally { val.Dispose(); } NativeArray val2 = ((EntityQuery)(ref _targetQuery)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); int num2 = 0; try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { ArchetypeChunk current2 = enumerator.Current; NativeArray nativeArray2 = ((ArchetypeChunk)(ref current2)).GetNativeArray(_prefabGuidHandle); NativeArray nativeArray3 = ((ArchetypeChunk)(ref current2)).GetNativeArray(_entityHandle); for (int j = 0; j < ((ArchetypeChunk)(ref current2)).Count; j++) { PrefabGUID val3 = nativeArray2[j]; Entity val4 = nativeArray3[j]; if (((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(val4) && !_blacklistedUnits.Contains(val3) && !_imprisonedUnits.Contains(val4)) { _targetUnits.Add(val3, val4); num2++; } } } } finally { val2.Dispose(); } Sequences.SequenceRequest sequenceRequest; while (Sequences.TryDequeue(out sequenceRequest)) { ((ServerGameManager)(ref _serverGameManager)).PlaySequenceOnTarget(sequenceRequest.Target, sequenceRequest.SequenceGuid, sequenceRequest.Scale, sequenceRequest.Secondary); } } static QuestTargetSystem() { //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) HashSet hashSet = new HashSet(); foreach (PrefabGUID shardBearer in QuestService.ShardBearers) { hashSet.Add(shardBearer); } _shardBearers = hashSet; } } } namespace Bloodcraft.Systems.Professions { internal static class EquipmentQualityManager { private const float MAX_DURABILITY_BONUS = 1f; private const float MAX_WEAPON_BONUS = 0.1f; private const float MAX_ARMOR_BONUS = 0.1f; private const float MAX_MAGIC_BONUS = 0.1f; private const int MAX_PROFESSION_LEVEL = 100; private static ServerGameManager ServerGameManager => Core.ServerGameManager; public static void ApplyPlayerEquipmentStats(ulong steamId, Entity equipmentEntity) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) if (!equipmentEntity.Exists()) { return; } IProfession profession = ProfessionFactory.GetProfession(equipmentEntity.GetPrefabGuid()); int key = profession.GetProfessionData(steamId).Key; float scaledBonus = 0f; if (equipmentEntity.Has()) { scaledBonus = CalculateDurabilityBonus(key); equipmentEntity.With((VExtensions.WithRefHandler)delegate(ref Durability durability) { durability.MaxDurability *= scaledBonus; durability.Value = durability.MaxDurability; }); } ServerGameManager serverGameManager = ServerGameManager; DynamicBuffer val = default(DynamicBuffer); if (!((ServerGameManager)(ref serverGameManager)).TryGetBuffer(equipmentEntity, ref val)) { return; } scaledBonus = CalculateStatBonus(profession, key); for (int i = 0; i < val.Length; i++) { ModifyUnitStatBuff_DOTS val2 = val[i]; if (!((object)(UnitStatType)(ref val2.StatType)).Equals((object)(UnitStatType)78)) { val2.Value *= scaledBonus; val[i] = val2; } } } public static void ApplyFamiliarEquipmentStats(int professionLevel, int currentDurability, Entity equipmentEntity) { //IL_000d: 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_0024: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) IProfession profession = ProfessionFactory.GetProfession(equipmentEntity.GetPrefabGuid()); float scaledBonus = 0f; if (equipmentEntity.Has()) { scaledBonus = CalculateDurabilityBonus(professionLevel); equipmentEntity.With((VExtensions.WithRefHandler)delegate(ref Durability durability) { durability.MaxDurability *= scaledBonus; durability.Value = currentDurability; }); } ServerGameManager serverGameManager = ServerGameManager; DynamicBuffer val = default(DynamicBuffer); if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(equipmentEntity, ref val)) { scaledBonus = CalculateStatBonus(profession, professionLevel); for (int i = 0; i < val.Length; i++) { ModifyUnitStatBuff_DOTS val2 = val[i]; val2.Value *= scaledBonus; val[i] = val2; } } } private static float CalculateStatBonus(IProfession handler, int professionLevel) { if (handler == null) { return 0f; } float num = ((handler is BlacksmithingProfession) ? 0.1f : ((handler is TailoringProfession) ? 0.1f : ((!(handler is EnchantingProfession)) ? 0f : 0.1f))); float num2 = num; return 1f + num2 * ((float)professionLevel / 100f); } private static float CalculateDurabilityBonus(int professionLevel) { return 1f + 1f * ((float)professionLevel / 100f); } public static int CalculateProfessionLevelOfEquipmentFromMaxDurability(Entity equipmentEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) Entity prefabEntity = equipmentEntity.GetPrefabEntity(); float maxDurability = equipmentEntity.GetMaxDurability(); float maxDurability2 = prefabEntity.GetMaxDurability(); return Math.Clamp((int)((maxDurability / maxDurability2 - 1f) * 100f / 1f), 0, 100); } } internal static class ProfessionSystem { private static readonly Random _random = new Random(); private const float SCT_DELAY = 0.75f; private const float SCT_DELAY_ADD = 1f; private const int FISH_STEP = 20; private const int GREASE_STEP = 4; private static readonly float _professionMultiplier = ConfigService.ProfessionFactor; public const int MAX_PROFESSION_LEVEL = 100; private static readonly AssetGuid _experienceAssetGuid = AssetGuid.FromString("4210316d-23d4-4274-96f5-d6f0944bd0bb"); private static readonly AssetGuid _bonusYieldAssetGuid = AssetGuid.FromString("5a8b7a32-c3e3-4794-bd62-ace36c10e89e"); private static readonly PrefabGUID _experienceGainSCT = new PrefabGUID(1876501183); private static readonly PrefabGUID _bonusYieldSCT = new PrefabGUID(106212079); private static readonly float3 _bonusYieldColor = new float3(0.6f, 0.8f, 1f); private static readonly float3 _mutantGreaseColor = new float3(0.8f, 1f, 0.1f); private static readonly float3 _goldOreColor = new float3(1f, 0.8f, 0f); private static readonly float3 _seedColor = new float3(0.6f, 0.9f, 0.6f); private static readonly float3 _saplingColor = new float3(0.4f, 0.25f, 0.2f); private static readonly float3 _radiantFiberColor = new float3(0.8f, 0.1f, 0.5f); private static readonly PrefabGUID _goldOre = PrefabGUIDs.Item_Ingredient_Mineral_GoldOre; private static readonly PrefabGUID _radiantFibre = PrefabGUIDs.Item_Ingredient_Plant_RadiantFiber; private static readonly PrefabGUID _mutantGrease = PrefabGUIDs.Item_Ingredient_MutantGrease; private static readonly List _plantSeeds = new List(13) { new PrefabGUID(-1463158090), new PrefabGUID(531984050), new PrefabGUID(-1289010178), new PrefabGUID(675013523), new PrefabGUID(1762839393), new PrefabGUID(-1681104075), new PrefabGUID(-1987586694), new PrefabGUID(-1495639636), new PrefabGUID(-1386314668), new PrefabGUID(1985892973), new PrefabGUID(-473351958), new PrefabGUID(-1370210913), new PrefabGUID(1915695899) }; private static readonly List _treeSaplings = new List(8) { new PrefabGUID(-1897495615), new PrefabGUID(1226559814), new PrefabGUID(1996361886), new PrefabGUID(-2035190786), new PrefabGUID(1552240197), new PrefabGUID(2000981302), new PrefabGUID(-1043479168), new PrefabGUID(-1800289670) }; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => SystemService.EndSimulationEntityCommandBufferSystem; public static void UpdateProfessions(Entity playerCharacter, Entity target) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0023: 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_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) Entity userEntity = playerCharacter.GetUserEntity(); User user = userEntity.GetUser(); ulong platformId = user.PlatformId; PrefabGUID val = PrefabGUID.Empty; if (!target.Has() || !target.Has()) { return; } DynamicBuffer val2 = target.ReadBuffer(); if (val2.IsCreated && !val2.IsEmpty) { val = val2[0].ItemType; } float num = (target.TryGetComponent(out EntityCategory componentData) ? ((float)componentData.ResourceLevel._Value) : 0f); PrefabGUID prefabGuid = target.GetPrefabGuid(); Entity entity = default(Entity); if (!PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(val, ref entity)) { return; } if (entity.TryGetComponent(out componentData) && (float)componentData.ResourceLevel._Value > num) { num = entity.Read().ResourceLevel._Value; } if ((float)target.GetUnitLevel() > num && !prefabGuid.GetPrefabName().Contains("iron", StringComparison.CurrentCultureIgnoreCase)) { num = ModifiableInt.op_Implicit(target.Read().Level); } if (num.Equals(0f)) { num = 10f; } IProfession profession = ProfessionFactory.GetProfession(val); if (profession == null) { return; } Profession professionEnum = profession.GetProfessionEnum(); if (!professionEnum.IsDisabled()) { if (professionEnum.Equals(Profession.Woodcutting)) { num *= (float)ProfessionMappings.GetWoodcuttingModifier(val); num *= 10f; } else if (professionEnum.Equals(Profession.Mining)) { num *= 10f; } float delay = 0.75f; SetProfession(target, playerCharacter, platformId, num, profession, ref delay); GiveProfessionBonus(target, prefabGuid, playerCharacter, userEntity, user, platformId, profession, delay); } } public static void GiveProfessionBonus(Entity target, PrefabGUID prefabGuid, Entity playerCharacter, Entity userEntity, User user, ulong steamId, IProfession handler, float delay) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: 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_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Invalid comparison between Unknown and I4 //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: 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_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02ed: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f0: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0212: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0320: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_0374: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_0377: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_034d: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_027c: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02b7: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) Entity entity = default(Entity); if (!PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(prefabGuid, ref entity)) { return; } int level = GetLevel(steamId, handler); string professionName = handler.GetProfessionName(); bool playerBool = Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ProfessionLogging"); bool playerBool2 = Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ProfessionYieldSCT"); ServerGameManager serverGameManager; if (professionName.Contains("Fishing")) { int num = level / 20; int num2 = level / 4; if (num <= 0 && num2 <= 0) { return; } List fishingAreaDrops = ProfessionMappings.GetFishingAreaDrops(prefabGuid); int index = _random.Next(fishingAreaDrops.Count); PrefabGUID val = fishingAreaDrops[index]; if (num > 0) { serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(playerCharacter, val, num))) { HandleExperienceAndBonusYield(user, userEntity, playerCharacter, target, val, professionName, num, playerBool, playerBool2, ref delay); } else { InventoryUtilitiesServer.CreateDropItem(EntityManager, playerCharacter, val, num, default(Entity)); HandleExperienceAndBonusYield(user, userEntity, playerCharacter, target, val, professionName, num, playerBool, playerBool2, ref delay); } HandleMutantGrease(user, userEntity, playerCharacter, target, professionName, num2, playerBool, playerBool2, ref delay); } else { HandleMutantGrease(user, userEntity, playerCharacter, target, professionName, num2, playerBool, playerBool2, ref delay); } } else { if (!entity.Has()) { return; } Enumerator enumerator = entity.ReadBuffer().GetEnumerator(); while (enumerator.MoveNext()) { DropTableBuffer current = enumerator.Current; if ((int)current.DropTrigger != 5) { continue; } Enumerator enumerator2 = PrefabCollectionSystem._PrefabGuidToEntityMap[current.DropTableGuid].ReadBuffer().GetEnumerator(); while (enumerator2.MoveNext()) { DropTableDataBuffer current2 = enumerator2.Current; string prefabName = current2.ItemGuid.GetPrefabName(); if (!prefabName.Contains("ingredient", StringComparison.CurrentCultureIgnoreCase) && !prefabName.Contains("trippyshroom", StringComparison.CurrentCultureIgnoreCase)) { continue; } int num3 = ((!prefabName.Contains("plant", StringComparison.CurrentCultureIgnoreCase) && !prefabName.Contains("trippyshroom", StringComparison.CurrentCultureIgnoreCase)) ? (level / 2) : (level / 10)); if (num3 <= 0) { return; } serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(playerCharacter, current2.ItemGuid, num3))) { HandleExperienceAndBonusYield(user, userEntity, playerCharacter, target, current2.ItemGuid, professionName, num3, playerBool, playerBool2, ref delay); if (professionName.Contains("Mining")) { int num4 = GoldOreRoll(level); if (num4 > 0) { HandleGoldOre(user, userEntity, playerCharacter, target, professionName, num4, playerBool, playerBool2, ref delay); } } else if (professionName.Contains("Harvesting")) { int num5 = RadiantFiberRoll(level); if (num5 > 0) { HandleRadiantFiber(user, userEntity, playerCharacter, target, professionName, num5, playerBool, playerBool2, ref delay); } } else if (professionName.Contains("Woodcutting")) { List list = TreeSaplingsRoll(level); if (list.Any()) { HandleTreeSaplings(user, userEntity, playerCharacter, target, professionName, list, playerBool, playerBool2, ref delay); } } break; } InventoryUtilitiesServer.CreateDropItem(EntityManager, playerCharacter, current2.ItemGuid, num3, default(Entity)); HandleExperienceAndBonusYield(user, userEntity, playerCharacter, target, current2.ItemGuid, professionName, num3, playerBool, playerBool2, ref delay); if (professionName.Contains("Mining")) { int num6 = GoldOreRoll(level); if (num6 > 0) { HandleGoldOre(user, userEntity, playerCharacter, target, professionName, num6, playerBool, playerBool2, ref delay); } } else if (professionName.Contains("Harvesting")) { int num7 = RadiantFiberRoll(level); if (num7 > 0) { HandleRadiantFiber(user, userEntity, playerCharacter, target, professionName, num7, playerBool, playerBool2, ref delay); } } else if (professionName.Contains("Woodcutting")) { List saplings = TreeSaplingsRoll(level); HandleTreeSaplings(user, userEntity, playerCharacter, target, professionName, saplings, playerBool, playerBool2, ref delay); } break; } } } } public static void SetProfession(Entity target, Entity source, ulong steamID, float value, IProfession handler, ref float delay) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) value *= _professionMultiplier; KeyValuePair professionData = handler.GetProfessionData(steamID); if (professionData.Key < 100) { UpdateProfessionExperience(target, source, steamID, professionData, value, handler, ref delay); } } private static void UpdateProfessionExperience(Entity target, Entity source, ulong steamId, KeyValuePair xpData, float gainedXP, IProfession handler, ref float delay) { //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) float num = xpData.Value + gainedXP; int num2 = Progression.ConvertXpToLevel(num); bool leveledUp = false; if (num2 > xpData.Key) { leveledUp = true; if (num2 > 100) { num2 = 100; num = Progression.ConvertLevelToXp(100); } } KeyValuePair xpData2 = new KeyValuePair(num2, num); handler.SetProfessionData(steamId, xpData2); NotifyPlayer(target, source, steamId, gainedXP, leveledUp, handler, ref delay); } private static void NotifyPlayer(Entity target, Entity playerCharacter, ulong steamID, float gainedXP, bool leveledUp, IProfession handler, ref float delay) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) Entity userEntity = playerCharacter.GetUserEntity(); User user = userEntity.GetUser(); string professionName = handler.GetProfessionName(); if (leveledUp) { int num = Progression.ConvertXpToLevel(handler.GetProfessionData(steamID).Value); if (num < 100) { LocalizationService.HandleServerReply(EntityManager, user, $"{professionName} improved to [{num}]"); } } if (Misc.PlayerBoolsManager.GetPlayerBool(steamID, "ProfessionLogging")) { int levelProgress = GetLevelProgress(steamID, handler); LocalizationService.HandleServerReply(EntityManager, user, $"+{(int)gainedXP} proficiency in {professionName.ToLower()} ({levelProgress}%)"); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamID, "ProfessionExperienceSCT")) { float3 position = target.GetPosition(); float3 professionColor = handler.GetProfessionColor(); ProfessionSCTDelayRoutine(_experienceGainSCT, _experienceAssetGuid, playerCharacter, userEntity, position, professionColor, gainedXP, delay).Run(); } } private static IEnumerator ProfessionSCTDelayRoutine(PrefabGUID sctPrefabGuid, AssetGuid assetGuid, Entity playerCharacter, Entity userEntity, float3 position, float3 color, float value, float delay) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0025: 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) yield return (object)new WaitForSeconds(delay); try { ScrollingCombatTextMessage.Create(EntityManager, ((EntityCommandBufferSystem)EndSimulationEntityCommandBufferSystem).CreateCommandBuffer(), assetGuid, position, color, playerCharacter, value, sctPrefabGuid, userEntity); } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(36, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error in ProfessionSCTDelayRoutine: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogError(val); } } private static float GetXp(ulong steamID, IProfession handler) { return handler.GetProfessionData(steamID).Value; } private static int GetLevel(ulong steamID, IProfession handler) { return Progression.ConvertXpToLevel(GetXp(steamID, handler)); } public static int GetLevelProgress(ulong steamID, IProfession handler) { float xp = GetXp(steamID, handler); int num = Progression.ConvertLevelToXp(GetLevel(steamID, handler)); int num2 = Progression.ConvertLevelToXp(GetLevel(steamID, handler) + 1); double num3 = num2 - num; double num4 = (float)num2 - xp; return 100 - (int)Math.Ceiling(num4 / num3 * 100.0); } private static void HandleBonusYieldScrollingText(Entity target, PrefabGUID sctPrefabGuid, AssetGuid assetGuid, Entity playerCharacter, Entity userEntity, float3 color, float bonusYield, ref float delay) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) float3 position = target.GetPosition(); ProfessionSCTDelayRoutine(sctPrefabGuid, assetGuid, playerCharacter, userEntity, position, color, bonusYield, delay).Run(); delay += 1f; } private static void HandleExperienceAndBonusYield(User user, Entity userEntity, Entity playerCharacter, Entity target, PrefabGUID resource, string professionName, float bonusYield, bool professionLogging, bool sctYield, ref float delay) { //IL_0004: 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) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) if (professionLogging) { LocalizationService.HandleServerReply(EntityManager, user, $"{resource.GetLocalizedName()}x{bonusYield} received from {professionName}"); } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _bonusYieldColor, bonusYield, ref delay); } } private static int GoldOreRoll(int level) { if (level < 20) { return 0; } int num = Math.Min(5, (level - 20) / 20 + 1); int num2 = 0; int[] array = new int[5] { 10, 20, 30, 40, 50 }; for (int i = 0; i < num; i++) { if (_random.Next(1, 101) <= array[i]) { num2++; } } return num2; } private static void HandleGoldOre(User user, Entity userEntity, Entity playerCharacter, Entity target, string professionName, int goldOre, bool professionLogging, bool sctYield, ref float delay) { //IL_0000: 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) //IL_0008: 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) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(playerCharacter, _goldOre, goldOre))) { if (professionLogging) { LocalizationService.HandleServerReply(EntityManager, user, $"Gold Orex{goldOre} received from {professionName}"); } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _goldOreColor, goldOre, ref delay); } return; } InventoryUtilitiesServer.CreateDropItem(EntityManager, playerCharacter, _goldOre, goldOre, default(Entity)); if (professionLogging) { LocalizationService.HandleServerReply(EntityManager, user, $"Gold Orex{goldOre} received from {professionName}, but it dropped on the ground since your inventory is full."); } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _goldOreColor, goldOre, ref delay); } } private static int RadiantFiberRoll(int level) { if (level < 20) { return 0; } int num = Math.Min(5, (level - 20) / 20 + 1); int num2 = 0; int[] array = new int[5] { 1, 2, 3, 4, 5 }; for (int i = 0; i < num; i++) { if (_random.Next(1, 101) <= array[i]) { num2++; } } return num2; } private static void HandleRadiantFiber(User user, Entity userEntity, Entity playerCharacter, Entity target, string professionName, int amount, bool professionLogging, bool sctYield, ref float delay) { //IL_0000: 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) //IL_0008: 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) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(playerCharacter, _radiantFibre, amount))) { if (professionLogging) { LocalizationService.HandleServerReply(EntityManager, user, $"Gold Orex{amount} received from {professionName}"); } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _radiantFiberColor, amount, ref delay); } return; } InventoryUtilitiesServer.CreateDropItem(EntityManager, playerCharacter, _radiantFibre, amount, default(Entity)); if (professionLogging) { LocalizationService.HandleServerReply(EntityManager, user, $"Gold Orex{amount} received from {professionName}, but it dropped on the ground since your inventory is full."); } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _radiantFiberColor, amount, ref delay); } } private static List TreeSaplingsRoll(int level) { //IL_0068: Unknown result type (might be due to invalid IL or missing references) if (level < 20) { return new List(); } int num = Math.Min(5, (level - 20) / 20 + 1); List list = new List(); int[] array = new int[5] { 4, 8, 12, 16, 20 }; for (int i = 0; i < num; i++) { if (_random.Next(1, 101) <= array[i]) { int index = _random.Next(0, _treeSaplings.Count); list.Add(_treeSaplings[index]); } } return list; } private static void HandleTreeSaplings(User user, Entity userEntity, Entity playerCharacter, Entity target, string professionName, List saplings, bool professionLogging, bool sctYield, ref float delay) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) int count = saplings.Count; bool flag = false; bool flag2 = false; foreach (PrefabGUID sapling in saplings) { ServerGameManager serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(playerCharacter, sapling, 1))) { flag2 = true; continue; } InventoryUtilitiesServer.CreateDropItem(EntityManager, playerCharacter, sapling, 1, default(Entity)); flag = true; flag2 = true; } if (!flag2) { return; } if (professionLogging) { if (!flag) { LocalizationService.HandleServerReply(EntityManager, user, $"Bonus Saplings(s)x{count} received from {professionName}!"); } else { LocalizationService.HandleServerReply(EntityManager, user, $"Bonus Saplings(s)x{count} received from {professionName}, but some fell on the ground since your inventory is full."); } } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _saplingColor, count, ref delay); } } private static void HandleMutantGrease(User user, Entity userEntity, Entity playerCharacter, Entity target, string professionName, int mutantGrease, bool professionLogging, bool sctYield, ref float delay) { //IL_0000: 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) //IL_0008: 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) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0102: 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) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(playerCharacter, _mutantGrease, mutantGrease))) { if (professionLogging) { LocalizationService.HandleServerReply(EntityManager, user, $"Mutant Greasex{mutantGrease} received from {professionName}"); } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _mutantGreaseColor, mutantGrease, ref delay); } return; } InventoryUtilitiesServer.CreateDropItem(EntityManager, playerCharacter, _mutantGrease, mutantGrease, default(Entity)); if (professionLogging) { LocalizationService.HandleServerReply(EntityManager, user, $"Mutant Greasex{mutantGrease} received from {professionName}, but it dropped on the ground since your inventory is full."); } if (sctYield) { HandleBonusYieldScrollingText(target, _bonusYieldSCT, _bonusYieldAssetGuid, playerCharacter, userEntity, _mutantGreaseColor, mutantGrease, ref delay); } } } internal static class ProfessionMappings { private static readonly Dictionary _fishingMultipliers = new Dictionary { { "farbane", 2 }, { "dunley", 2 }, { "gloomrot", 3 }, { "cursed", 4 }, { "silverlight", 5 }, { "strongblade", 4 } }; private static readonly List _farbaneFishDrops = new List { new PrefabGUID(-1642545082) }; private static readonly List _dunleyFishDrops = new List { new PrefabGUID(-1642545082), new PrefabGUID(447901086), new PrefabGUID(-149778795) }; private static readonly List _gloomrotFishDrops = new List { new PrefabGUID(-1642545082), new PrefabGUID(447901086), new PrefabGUID(-149778795), new PrefabGUID(736318803), new PrefabGUID(-1779269313) }; private static readonly List _cursedFishDrops = new List { new PrefabGUID(-1642545082), new PrefabGUID(447901086), new PrefabGUID(-149778795), new PrefabGUID(736318803), new PrefabGUID(-1779269313), new PrefabGUID(177845365) }; private static readonly List _silverlightFishDrops = new List { new PrefabGUID(-1642545082), new PrefabGUID(447901086), new PrefabGUID(-149778795), new PrefabGUID(736318803), new PrefabGUID(-1779269313), new PrefabGUID(67930804) }; private static readonly List _oakveilFishDrops = new List { new PrefabGUID(-1642545082), new PrefabGUID(447901086), new PrefabGUID(-149778795), new PrefabGUID(736318803), new PrefabGUID(-1779269313), new PrefabGUID(67930804), PrefabGUIDs.Item_Ingredient_Fish_Corrupted_T03 }; private static readonly Dictionary> _fishingAreaDrops = new Dictionary> { { "farbane", _farbaneFishDrops }, { "dunley", _dunleyFishDrops }, { "gloomrot", _gloomrotFishDrops }, { "cursed", _cursedFishDrops }, { "silverlight", _silverlightFishDrops }, { "strongblade", _oakveilFishDrops } }; private static readonly Dictionary _woodcuttingMultipliers = new Dictionary { { "hallow", 2 }, { "gloom", 3 }, { "cursed", 4 }, { "corrupted", 4 } }; private static readonly Dictionary _tierMultiplier = new Dictionary { { "t01", 1 }, { "t02", 2 }, { "t03", 3 }, { "t04", 4 }, { "t05", 5 }, { "t06", 6 }, { "t07", 7 }, { "t08", 8 }, { "t09", 9 } }; public static int GetFishingModifier(PrefabGUID prefab) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) foreach (KeyValuePair fishingMultiplier in _fishingMultipliers) { if (prefab.GetPrefabName().ToLower().Contains(fishingMultiplier.Key)) { return fishingMultiplier.Value; } } return 1; } public static List GetFishingAreaDrops(PrefabGUID prefab) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) foreach (KeyValuePair> fishingAreaDrop in _fishingAreaDrops) { if (prefab.GetPrefabName().ToLower().Contains(fishingAreaDrop.Key)) { return fishingAreaDrop.Value; } if (prefab.GetPrefabName().Contains("general", StringComparison.CurrentCultureIgnoreCase)) { return _farbaneFishDrops; } } throw new InvalidOperationException("Unrecognized fishing area"); } public static int GetWoodcuttingModifier(PrefabGUID prefab) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) foreach (KeyValuePair woodcuttingMultiplier in _woodcuttingMultipliers) { if (prefab.GetPrefabName().ToLower().Contains(woodcuttingMultiplier.Key)) { return woodcuttingMultiplier.Value; } } return 1; } public static int GetTierMultiplier(PrefabGUID prefab) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) foreach (KeyValuePair item in _tierMultiplier) { if (prefab.GetPrefabName().ToLower().Contains(item.Key)) { return item.Value; } } return 1; } public static bool IsDisabled(this Profession profession) { return Core.DisabledProfessions.Contains(profession); } } } namespace Bloodcraft.Systems.Leveling { internal static class ClassManager { public enum PlayerClass { BloodKnight, DemonHunter, VampireLord, ShadowBlade, ArcaneSorcerer, DeathMage } public enum ClassStatType { PhysicalPower = 0, ResourcePower = 1, SiegePower = 2, ResourceYield = 3, MaxHealth = 4, MovementSpeed = 5, CooldownRecoveryRate = 7, PhysicalResistance = 8, FireResistance = 9, HolyResistance = 10, SilverResistance = 11, SunChargeTime = 12, SunResistance = 19, GarlicResistance = 20, Vision = 22, SpellResistance = 23, Radial_SpellResistance = 24, SpellPower = 25, PassiveHealthRegen = 26, PhysicalLifeLeech = 27, SpellLifeLeech = 28, PhysicalCriticalStrikeChance = 29, PhysicalCriticalStrikeDamage = 30, SpellCriticalStrikeChance = 31, SpellCriticalStrikeDamage = 32, AbilityAttackSpeed = 33, DamageVsUndeads = 38, DamageVsHumans = 39, DamageVsDemons = 40, DamageVsMechanical = 41, DamageVsBeasts = 42, DamageVsCastleObjects = 43, DamageVsVampires = 44, ResistVsUndeads = 45, ResistVsHumans = 46, ResistVsDemons = 47, ResistVsMechanical = 48, ResistVsBeasts = 49, ResistVsCastleObjects = 50, ResistVsVampires = 51, DamageVsWood = 52, DamageVsMineral = 53, DamageVsVegetation = 54, DamageVsLightArmor = 55, DamageVsVBloods = 56, DamageVsMagic = 57, ReducedResourceDurabilityLoss = 58, PrimaryAttackSpeed = 59, ImmuneToHazards = 60, PrimaryLifeLeech = 61, HealthRecovery = 62, PrimaryCooldownModifier = 63, FallGravity = 64, PvPResilience = 65, BloodDrain = 66, BonusPhysicalPower = 67, BonusSpellPower = 68, CCReduction = 69, SpellCooldownRecoveryRate = 70, WeaponCooldownRecoveryRate = 71, UltimateCooldownRecoveryRate = 72, MinionDamage = 73, DamageReduction = 74, HealingReceived = 75, IncreasedShieldEfficiency = 76, BloodEfficiency = 77, InventorySlots = 78, SilverCoinResistance = 79, TravelCooldownRecoveryRate = 80, ReducedBloodDrain = 81, BonusMaxHealth = 82, BonusMovementSpeed = 83, BonusShapeshiftMovementSpeed = 84, BonusMountMovementSpeed = 85, UltimateEfficiency = 86, SpellFreeCast = 88, WeaponFreeCast = 89, WeaponSkillPower = 90, FeedCooldownRecoveryRate = 91, BloodMendHealEfficiency = 92, DemountProtection = 93, BloodDrainMultiplier = 94, CorruptionDamageReduction = 95 } public class ClassOnHitSettings { public class OnHitEffects { public PrefabGUID Primary { get; } public PrefabGUID Secondary { get; } public bool IsDebuff { get; } public OnHitEffects(PrefabGUID primary, PrefabGUID secondary, bool isDebuff) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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) Primary = primary; Secondary = secondary; IsDebuff = isDebuff; base..ctor(); } public void ApplyEffect(Entity source, Entity target) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0002: 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_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) if (!target.HasBuff(Primary)) { target.TryApplyBuffWithOwner(source, Primary); } else if (IsDebuff) { target.TryApplyBuffWithOwner(source, Secondary); } else { source.TryApplyBuff(Secondary); } } } private static readonly Dictionary _classOnDamageEffects = new Dictionary { { PlayerClass.BloodKnight, new OnHitEffects(Buffs.VampireLeechDebuff, Buffs.BloodCurseBuff, isDebuff: true) }, { PlayerClass.DemonHunter, new OnHitEffects(Buffs.VampireStaticDebuff, Buffs.StormChargeBuff, isDebuff: false) }, { PlayerClass.VampireLord, new OnHitEffects(Buffs.VampireChillDebuff, Buffs.FrostWeaponBuff, isDebuff: false) }, { PlayerClass.ShadowBlade, new OnHitEffects(Buffs.VampireIgniteDebuff, Buffs.ChaosHeatedBuff, isDebuff: false) }, { PlayerClass.ArcaneSorcerer, new OnHitEffects(Buffs.VampireWeakenDebuff, Buffs.IllusionShieldBuff, isDebuff: false) }, { PlayerClass.DeathMage, new OnHitEffects(Buffs.VampireCondemnDebuff, Buffs.UnholyAmplifyBuff, isDebuff: true) } }; public static IReadOnlyDictionary ClassOnDamageEffects => _classOnDamageEffects; } private static readonly Dictionary _classStatTypes = new Dictionary { { ClassStatType.PhysicalPower, (UnitStatType)0 }, { ClassStatType.ResourcePower, (UnitStatType)1 }, { ClassStatType.SiegePower, (UnitStatType)2 }, { ClassStatType.ResourceYield, (UnitStatType)3 }, { ClassStatType.MaxHealth, (UnitStatType)4 }, { ClassStatType.MovementSpeed, (UnitStatType)5 }, { ClassStatType.CooldownRecoveryRate, (UnitStatType)7 }, { ClassStatType.PhysicalResistance, (UnitStatType)8 }, { ClassStatType.FireResistance, (UnitStatType)9 }, { ClassStatType.HolyResistance, (UnitStatType)10 }, { ClassStatType.SilverResistance, (UnitStatType)11 }, { ClassStatType.SpellResistance, (UnitStatType)23 }, { ClassStatType.Radial_SpellResistance, (UnitStatType)24 }, { ClassStatType.SpellPower, (UnitStatType)25 }, { ClassStatType.PassiveHealthRegen, (UnitStatType)26 }, { ClassStatType.PhysicalLifeLeech, (UnitStatType)27 }, { ClassStatType.SpellLifeLeech, (UnitStatType)28 }, { ClassStatType.PhysicalCriticalStrikeChance, (UnitStatType)29 }, { ClassStatType.PhysicalCriticalStrikeDamage, (UnitStatType)30 }, { ClassStatType.SpellCriticalStrikeChance, (UnitStatType)31 }, { ClassStatType.SpellCriticalStrikeDamage, (UnitStatType)32 }, { ClassStatType.AbilityAttackSpeed, (UnitStatType)33 }, { ClassStatType.DamageVsUndeads, (UnitStatType)38 }, { ClassStatType.DamageVsHumans, (UnitStatType)39 }, { ClassStatType.DamageVsDemons, (UnitStatType)40 }, { ClassStatType.DamageVsMechanical, (UnitStatType)41 }, { ClassStatType.DamageVsBeasts, (UnitStatType)42 }, { ClassStatType.DamageVsCastleObjects, (UnitStatType)43 }, { ClassStatType.DamageVsVampires, (UnitStatType)44 }, { ClassStatType.ResistVsUndeads, (UnitStatType)45 }, { ClassStatType.ResistVsHumans, (UnitStatType)46 }, { ClassStatType.ResistVsDemons, (UnitStatType)47 }, { ClassStatType.ResistVsMechanical, (UnitStatType)48 }, { ClassStatType.ResistVsBeasts, (UnitStatType)49 }, { ClassStatType.ResistVsCastleObjects, (UnitStatType)50 }, { ClassStatType.ResistVsVampires, (UnitStatType)51 }, { ClassStatType.DamageVsWood, (UnitStatType)52 }, { ClassStatType.DamageVsMineral, (UnitStatType)53 }, { ClassStatType.DamageVsVegetation, (UnitStatType)54 }, { ClassStatType.DamageVsLightArmor, (UnitStatType)55 }, { ClassStatType.DamageVsVBloods, (UnitStatType)56 }, { ClassStatType.DamageVsMagic, (UnitStatType)57 }, { ClassStatType.ReducedResourceDurabilityLoss, (UnitStatType)58 }, { ClassStatType.PrimaryAttackSpeed, (UnitStatType)59 }, { ClassStatType.ImmuneToHazards, (UnitStatType)60 }, { ClassStatType.PrimaryLifeLeech, (UnitStatType)61 }, { ClassStatType.HealthRecovery, (UnitStatType)62 }, { ClassStatType.PrimaryCooldownModifier, (UnitStatType)63 }, { ClassStatType.FallGravity, (UnitStatType)64 }, { ClassStatType.PvPResilience, (UnitStatType)65 }, { ClassStatType.BloodDrain, (UnitStatType)66 }, { ClassStatType.BonusPhysicalPower, (UnitStatType)67 }, { ClassStatType.BonusSpellPower, (UnitStatType)68 }, { ClassStatType.CCReduction, (UnitStatType)69 }, { ClassStatType.SpellCooldownRecoveryRate, (UnitStatType)70 }, { ClassStatType.WeaponCooldownRecoveryRate, (UnitStatType)71 }, { ClassStatType.UltimateCooldownRecoveryRate, (UnitStatType)72 }, { ClassStatType.MinionDamage, (UnitStatType)73 }, { ClassStatType.DamageReduction, (UnitStatType)74 }, { ClassStatType.HealingReceived, (UnitStatType)75 }, { ClassStatType.IncreasedShieldEfficiency, (UnitStatType)76 }, { ClassStatType.BloodEfficiency, (UnitStatType)77 }, { ClassStatType.InventorySlots, (UnitStatType)78 }, { ClassStatType.SilverCoinResistance, (UnitStatType)79 }, { ClassStatType.TravelCooldownRecoveryRate, (UnitStatType)80 }, { ClassStatType.ReducedBloodDrain, (UnitStatType)81 }, { ClassStatType.BonusMaxHealth, (UnitStatType)82 }, { ClassStatType.BonusMovementSpeed, (UnitStatType)83 }, { ClassStatType.BonusShapeshiftMovementSpeed, (UnitStatType)84 }, { ClassStatType.BonusMountMovementSpeed, (UnitStatType)85 }, { ClassStatType.UltimateEfficiency, (UnitStatType)86 }, { ClassStatType.SpellFreeCast, (UnitStatType)88 }, { ClassStatType.WeaponFreeCast, (UnitStatType)89 }, { ClassStatType.WeaponSkillPower, (UnitStatType)90 }, { ClassStatType.FeedCooldownRecoveryRate, (UnitStatType)91 }, { ClassStatType.BloodMendHealEfficiency, (UnitStatType)92 }, { ClassStatType.DemountProtection, (UnitStatType)93 }, { ClassStatType.BloodDrainMultiplier, (UnitStatType)94 }, { ClassStatType.CorruptionDamageReduction, (UnitStatType)95 } }; private static readonly Dictionary _classStatBaseCaps = new Dictionary(); private static readonly Dictionary> _classWeaponStatSynergies = new Dictionary> { { PlayerClass.BloodKnight, Configuration.ParseEnumsFromString(ConfigService.BloodKnightWeaponSynergies) }, { PlayerClass.DemonHunter, Configuration.ParseEnumsFromString(ConfigService.DemonHunterWeaponSynergies) }, { PlayerClass.VampireLord, Configuration.ParseEnumsFromString(ConfigService.VampireLordWeaponSynergies) }, { PlayerClass.ShadowBlade, Configuration.ParseEnumsFromString(ConfigService.ShadowBladeWeaponSynergies) }, { PlayerClass.ArcaneSorcerer, Configuration.ParseEnumsFromString(ConfigService.ArcaneSorcererWeaponSynergies) }, { PlayerClass.DeathMage, Configuration.ParseEnumsFromString(ConfigService.DeathMageWeaponSynergies) } }; private static readonly Dictionary> _classBloodStatSynergies = new Dictionary> { { PlayerClass.BloodKnight, Configuration.ParseEnumsFromString(ConfigService.BloodKnightBloodSynergies) }, { PlayerClass.DemonHunter, Configuration.ParseEnumsFromString(ConfigService.DemonHunterBloodSynergies) }, { PlayerClass.VampireLord, Configuration.ParseEnumsFromString(ConfigService.VampireLordBloodSynergies) }, { PlayerClass.ShadowBlade, Configuration.ParseEnumsFromString(ConfigService.ShadowBladeBloodSynergies) }, { PlayerClass.ArcaneSorcerer, Configuration.ParseEnumsFromString(ConfigService.ArcaneSorcererBloodSynergies) }, { PlayerClass.DeathMage, Configuration.ParseEnumsFromString(ConfigService.DeathMageBloodSynergies) } }; public static IReadOnlyDictionary ClassStatTypes => _classStatTypes; public static IReadOnlyDictionary ClassStatBaseCaps => _classStatBaseCaps; public static IReadOnlyDictionary> ClassWeaponStatSynergies => _classWeaponStatSynergies; public static IReadOnlyDictionary> ClassBloodStatSynergies => _classBloodStatSynergies; } internal static class LevelingSystem { private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _restedXPSystem = ConfigService.RestedXPSystem; private static readonly int _maxPlayerLevel = ConfigService.MaxLevel; private static readonly float _groupMultiplier = ConfigService.GroupLevelingMultiplier; private static readonly int _restedXPMax = ConfigService.RestedXPMax; private static readonly float _unitSpawnerMultiplier = ConfigService.UnitSpawnerMultiplier; private static readonly float _warEventMultiplier = ConfigService.WarEventMultiplier; private static readonly float _docileUnitMultiplier = ConfigService.DocileUnitMultiplier; private static readonly float _levelScalingMultiplier = ConfigService.LevelScalingMultiplier; private static readonly float _vBloodLevelingMultiplier = ConfigService.VBloodLevelingMultiplier; private static readonly float _unitLevelingMultiplier = ConfigService.UnitLevelingMultiplier; private static readonly float _levelingPrestigeReducer = ConfigService.LevelingPrestigeReducer; private const float DELAY_ADD = 1f; private static readonly Lazy _levelUpBuff = new Lazy((Func)(() => new PrefabGUID(-1133938228))); private static readonly Lazy _warEventTrash = new Lazy((Func)(() => new PrefabGUID(2090187901))); private static readonly Lazy _gold = new Lazy((Func)(() => new float3(1f, 0.75f, 0f))); private static readonly Lazy _experienceAssetGuid = new Lazy((Func)(() => AssetGuid.FromString("4210316d-23d4-4274-96f5-d6f0944bd0bb"))); private static readonly Lazy _sctGeneric = new Lazy((Func)(() => new PrefabGUID(-1687715009))); private static readonly Lazy> _extraGearLevelBuffs = new Lazy>(() => new HashSet { new PrefabGUID(-1567599344), new PrefabGUID(244750581), new PrefabGUID(-1469378405) }); private static readonly HashSet _emptyPrefabSet = new HashSet(); private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => SystemService.EndSimulationEntityCommandBufferSystem; internal static bool EnablePrefabEffects { get; set; } = true; private static PrefabGUID LevelUpBuff { get { //IL_0016: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) if (!EnablePrefabEffects) { return default(PrefabGUID); } return _levelUpBuff.Value; } } private static PrefabGUID WarEventTrash { get { //IL_0016: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) if (!EnablePrefabEffects) { return default(PrefabGUID); } return _warEventTrash.Value; } } private static PrefabGUID ScrollingTextGeneric { get { //IL_0016: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) if (!EnablePrefabEffects) { return default(PrefabGUID); } return _sctGeneric.Value; } } private static AssetGuid ExperienceAssetGuid { get { //IL_0016: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) if (!EnablePrefabEffects) { return default(AssetGuid); } return _experienceAssetGuid.Value; } } private static float3 Gold { get { //IL_0016: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) if (!EnablePrefabEffects) { return default(float3); } return _gold.Value; } } private static HashSet ExtraGearLevelBuffs { get { if (!EnablePrefabEffects) { return _emptyPrefabSet; } return _extraGearLevelBuffs.Value; } } public static void OnUpdate(object sender, DeathEventListenerSystemPatch.DeathEventArgs deathEvent) { ProcessExperience(deathEvent); } public static void ProcessExperience(DeathEventListenerSystemPatch.DeathEventArgs deathEvent) { //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_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) Entity target = deathEvent.Target; HashSet deathParticipants = deathEvent.DeathParticipants; float groupMultiplier = 1f; bool flag = deathParticipants.Count > 1; if (flag) { groupMultiplier = _groupMultiplier; } foreach (Entity item in deathParticipants) { ulong steamId = item.GetSteamId(); if (_familiars) { FamiliarLevelingSystem.ProcessFamiliarExperience(item, target, steamId, groupMultiplier); } KeyValuePair experience; int num = (steamId.TryGetPlayerExperience(out experience) ? experience.Key : 0); bool flag2 = num >= _maxPlayerLevel; if (flag2 && flag) { WeaponSystem.ProcessExpertise(deathEvent, groupMultiplier); deathEvent.ScrollingTextDelay += 1f; continue; } if (flag2) { break; } ProcessExperienceGain(item, target, steamId, num, deathEvent.ScrollingTextDelay, groupMultiplier); deathEvent.ScrollingTextDelay += 1f; } } public static void ProcessExperienceGain(Entity playerCharacter, Entity target, ulong steamId, int currentLevel, float delay, float groupMultiplier = 1f) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) UnitLevel val = target.Read(); Health val2 = target.Read(); bool flag = target.IsVBlood(); int num = (int)(val2.MaxHealth._Value / 2.5f); float baseExperience = GetBaseExperience(val.Level._Value, flag); baseExperience += (float)num; baseExperience = ApplyScalingFactor(baseExperience, currentLevel, val.Level._Value); if (steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value) && value > 0) { int value2; int num2 = (prestiges.TryGetValue(PrestigeType.Exo, out value2) ? value2 : 0); float num3 = 1f - _levelingPrestigeReducer * (float)value; if (num2 == 0) { baseExperience *= num3; } } if (_unitSpawnerMultiplier < 1f && target.IsUnitSpawnerSpawned()) { baseExperience *= _unitSpawnerMultiplier; if (baseExperience <= 0f) { return; } } if (_warEventMultiplier < 1f && target.Has()) { DynamicBuffer val3 = target.ReadBuffer(); for (int i = 0; i < val3.Length; i++) { if (EnablePrefabEffects) { SpawnBuffElement val4 = val3[i]; if (((PrefabGUID)(ref val4.Buff)).Equals(WarEventTrash)) { baseExperience *= _warEventMultiplier; break; } } } } if (_docileUnitMultiplier < 1f && !flag && target.TryGetComponent(out AggroConsumer componentData) && componentData.AlertDecayPerSecond == 99f) { baseExperience *= _docileUnitMultiplier; } baseExperience *= groupMultiplier; int rested = 0; if (_restedXPSystem) { baseExperience = AddRestedXP(steamId, baseExperience, ref rested); } SaveLevelingExperience(steamId, baseExperience, out var leveledUp, out var newLevel); if (leveledUp) { HandlePlayerLevelUpEffects(playerCharacter, steamId); } NotifyPlayer(playerCharacter, steamId, (int)baseExperience, leveledUp, newLevel, delay, rested); } private static float AddRestedXP(ulong steamId, float gainedXP, ref int rested) { if (steamId.TryGetPlayerRestedXP(out var restedXP) && restedXP.Value > 0f) { float value = restedXP.Value; float num = Math.Min(gainedXP, value); float result = gainedXP + num; value -= num; steamId.SetPlayerRestedXP(new KeyValuePair(restedXP.Key, value)); rested = (int)num; return result; } return gainedXP; } private static float GetBaseExperience(int targetLevel, bool isVBlood) { if (isVBlood) { return (float)targetLevel * _vBloodLevelingMultiplier; } return (float)targetLevel * _unitLevelingMultiplier; } public static void SaveLevelingExperience(ulong steamId, float gainedXP, out bool leveledUp, out int newLevel) { if (!steamId.TryGetPlayerExperience(out var experience)) { experience = new KeyValuePair(0, 0f); } int key = experience.Key; float num = experience.Value + gainedXP; newLevel = Progression.ConvertXpToLevel(num); leveledUp = false; if (newLevel > _maxPlayerLevel) { newLevel = _maxPlayerLevel; num = Progression.ConvertLevelToXp(_maxPlayerLevel); } if (newLevel > key) { leveledUp = true; } steamId.SetPlayerExperience(new KeyValuePair(newLevel, num)); } private static void HandlePlayerLevelUpEffects(Entity playerCharacter, ulong steamId) { //IL_0008: 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) //IL_001b: Unknown result type (might be due to invalid IL or missing references) if (EnablePrefabEffects) { playerCharacter.TryApplyBuff(LevelUpBuff); if (_classes) { Classes.ApplyClassBuffs(playerCharacter, steamId); } } } public static void NotifyPlayer(Entity playerCharacter, ulong steamId, float gainedXP, bool leveledUp, int newLevel, float delay, int restedXP = 0) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0004: 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) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) int value = (int)gainedXP; Entity userEntity = playerCharacter.GetUserEntity(); User user = userEntity.GetUser(); if (newLevel >= _maxPlayerLevel || gainedXP <= 0f) { return; } if (leveledUp) { SetLevel(playerCharacter); if (newLevel <= _maxPlayerLevel) { LocalizationService.HandleServerReply(EntityManager, user, $"Congratulations, you've reached level {newLevel}!"); } if (_classes && Misc.PlayerBoolsManager.GetPlayerBool(steamId, "Reminders") && !steamId.HasClass(out var _)) { LocalizationService.HandleServerReply(EntityManager, user, "Don't forget to choose a class! Use '.class l' to view choices and see what they have to offer with '.class lb [Class]' (buffs), '.class lsp [Class]' (spells), and '.class lst [Class]' (synergies). (toggle reminders with '.misc remindme')"); } } if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ExperienceLogging")) { int levelProgress = GetLevelProgress(steamId); string message = ((restedXP > 0) ? $"+{value} rested experience ({levelProgress}%)" : $"+{value} experience ({levelProgress}%)"); LocalizationService.HandleServerReply(EntityManager, user, message); } if (EnablePrefabEffects && Misc.PlayerBoolsManager.GetPlayerBool(steamId, "PlayerExperienceSCT")) { PlayerExperienceSCTDelayRoutine(playerCharacter, userEntity, Gold, gainedXP, delay).Run(); } } private static IEnumerator PlayerExperienceSCTDelayRoutine(Entity playerCharacter, Entity userEntity, float3 color, float gainedXP, float delay) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) yield return (object)new WaitForSeconds(delay); float3 position = playerCharacter.GetPosition(); ScrollingCombatTextMessage.Create(EntityManager, ((EntityCommandBufferSystem)EndSimulationEntityCommandBufferSystem).CreateCommandBuffer(), ExperienceAssetGuid, position, color, playerCharacter, gainedXP, ScrollingTextGeneric, userEntity); } private static float GetXp(ulong steamId) { if (steamId.TryGetPlayerExperience(out var experience)) { return experience.Value; } return 0f; } public static int GetLevel(ulong steamId) { if (steamId.TryGetPlayerExperience(out var experience)) { return experience.Key; } return 0; } private static int GetLevelFromXp(ulong steamId) { return Progression.ConvertXpToLevel(GetXp(steamId)); } public static int GetLevelProgress(ulong steamId) { float xp = GetXp(steamId); int num = Progression.ConvertLevelToXp(GetLevelFromXp(steamId)); int num2 = Progression.ConvertLevelToXp(GetLevelFromXp(steamId) + 1); double num3 = num2 - num; double num4 = (float)num2 - xp; return 100 - (int)Math.Ceiling(num4 / num3 * 100.0); } private static float ApplyScalingFactor(float gainedXP, int currentLevel, int victimLevel) { float levelScalingMultiplier = _levelScalingMultiplier; int num = currentLevel - victimLevel; if (levelScalingMultiplier <= 0f) { return gainedXP; } float num2 = ((num > 0) ? MathF.Exp((0f - levelScalingMultiplier) * (float)num) : 1f); return gainedXP * num2; } public static void SetLevel(Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) ulong steamId = playerCharacter.GetSteamId(); if (steamId.TryGetPlayerExperience(out var experience) && playerCharacter.Has()) { int playerLevel = experience.Key; Progression.PlayerProgressionCacheManager.UpdatePlayerProgressionLevel(steamId, playerLevel); HandleExtraLevel(playerCharacter, ref playerLevel); playerCharacter.With((VExtensions.WithRefHandler)delegate(ref Equipment equipment) { equipment.ArmorLevel._Value = 0f; equipment.SpellLevel._Value = 0f; equipment.WeaponLevel._Value = playerLevel; }); } } private static void HandleExtraLevel(Entity playerCharacter, ref int playerLevel) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (EnablePrefabEffects && ExtraGearLevelBuffs.Any((PrefabGUID buff) => playerCharacter.HasBuff(buff))) { playerLevel++; } } public static void UpdateMaxRestedXP(ulong steamId, KeyValuePair expData) { if (steamId.TryGetPlayerRestedXP(out var restedXP) && restedXP.Value > 0f) { float value = restedXP.Value; int key = expData.Key; float val = Progression.ConvertLevelToXp(Math.Min(_restedXPMax + key, _maxPlayerLevel)) - Progression.ConvertLevelToXp(key); value = Math.Min(value, val); steamId.SetPlayerRestedXP(new KeyValuePair(restedXP.Key, value)); } } } internal static class PrestigeManager { private const int EXO_PRESTIGES = 100; private static readonly SequenceGUID _prestigeSequence = SequenceGUIDs.SEQ_Vampire_LevelUp; public static readonly Dictionary Data)>> TryGetExtensionMap = new Dictionary)>> { { PrestigeType.Experience, (ulong steamId) => steamId.TryGetPlayerExperience(out var experience2) ? (true, experience2) : (false, default(KeyValuePair)) }, { PrestigeType.Exo, (ulong steamId) => steamId.TryGetPlayerExperience(out var experience) ? (true, experience) : (false, default(KeyValuePair)) }, { PrestigeType.SwordExpertise, (ulong steamId) => steamId.TryGetPlayerSwordExpertise(out var expertise16) ? (true, expertise16) : (false, default(KeyValuePair)) }, { PrestigeType.AxeExpertise, (ulong steamId) => steamId.TryGetPlayerAxeExpertise(out var expertise15) ? (true, expertise15) : (false, default(KeyValuePair)) }, { PrestigeType.MaceExpertise, (ulong steamId) => steamId.TryGetPlayerMaceExpertise(out var expertise14) ? (true, expertise14) : (false, default(KeyValuePair)) }, { PrestigeType.SpearExpertise, (ulong steamId) => steamId.TryGetPlayerSpearExpertise(out var expertise13) ? (true, expertise13) : (false, default(KeyValuePair)) }, { PrestigeType.CrossbowExpertise, (ulong steamId) => steamId.TryGetPlayerCrossbowExpertise(out var expertise12) ? (true, expertise12) : (false, default(KeyValuePair)) }, { PrestigeType.GreatSwordExpertise, (ulong steamId) => steamId.TryGetPlayerGreatSwordExpertise(out var expertise11) ? (true, expertise11) : (false, default(KeyValuePair)) }, { PrestigeType.SlashersExpertise, (ulong steamId) => steamId.TryGetPlayerSlashersExpertise(out var expertise10) ? (true, expertise10) : (false, default(KeyValuePair)) }, { PrestigeType.PistolsExpertise, (ulong steamId) => steamId.TryGetPlayerPistolsExpertise(out var expertise9) ? (true, expertise9) : (false, default(KeyValuePair)) }, { PrestigeType.ReaperExpertise, (ulong steamId) => steamId.TryGetPlayerReaperExpertise(out var expertise8) ? (true, expertise8) : (false, default(KeyValuePair)) }, { PrestigeType.LongbowExpertise, (ulong steamId) => steamId.TryGetPlayerLongbowExpertise(out var expertise7) ? (true, expertise7) : (false, default(KeyValuePair)) }, { PrestigeType.WhipExpertise, (ulong steamId) => steamId.TryGetPlayerWhipExpertise(out var expertise6) ? (true, expertise6) : (false, default(KeyValuePair)) }, { PrestigeType.UnarmedExpertise, (ulong steamId) => steamId.TryGetPlayerUnarmedExpertise(out var expertise5) ? (true, expertise5) : (false, default(KeyValuePair)) }, { PrestigeType.FishingPoleExpertise, (ulong steamId) => steamId.TryGetPlayerFishingPoleExpertise(out var expertise4) ? (true, expertise4) : (false, default(KeyValuePair)) }, { PrestigeType.TwinBladesExpertise, (ulong steamId) => steamId.TryGetPlayerTwinBladesExpertise(out var expertise3) ? (true, expertise3) : (false, default(KeyValuePair)) }, { PrestigeType.DaggersExpertise, (ulong steamId) => steamId.TryGetPlayerDaggersExpertise(out var expertise2) ? (true, expertise2) : (false, default(KeyValuePair)) }, { PrestigeType.ClawsExpertise, (ulong steamId) => steamId.TryGetPlayerClawsExpertise(out var expertise) ? (true, expertise) : (false, default(KeyValuePair)) }, { PrestigeType.WorkerLegacy, (ulong steamId) => steamId.TryGetPlayerWorkerLegacy(out var workerLegacy) ? (true, workerLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.WarriorLegacy, (ulong steamId) => steamId.TryGetPlayerWarriorLegacy(out var warriorLegacy) ? (true, warriorLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.ScholarLegacy, (ulong steamId) => steamId.TryGetPlayerScholarLegacy(out var scholarLegacy) ? (true, scholarLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.RogueLegacy, (ulong steamId) => steamId.TryGetPlayerRogueLegacy(out var rogueLegacy) ? (true, rogueLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.MutantLegacy, (ulong steamId) => steamId.TryGetPlayerMutantLegacy(out var mutantLegacy) ? (true, mutantLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.DraculinLegacy, (ulong steamId) => steamId.TryGetPlayerDraculinLegacy(out var draculinLegacy) ? (true, draculinLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.ImmortalLegacy, (ulong steamId) => steamId.TryGetPlayerImmortalLegacy(out var immortalLegacy) ? (true, immortalLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.CreatureLegacy, (ulong steamId) => steamId.TryGetPlayerCreatureLegacy(out var creatureLegacy) ? (true, creatureLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.BruteLegacy, (ulong steamId) => steamId.TryGetPlayerBruteLegacy(out var bruteLegacy) ? (true, bruteLegacy) : (false, default(KeyValuePair)) }, { PrestigeType.CorruptionLegacy, (ulong steamId) => steamId.TryGetPlayerCorruptionLegacy(out var corruptedLegacy) ? (true, corruptedLegacy) : (false, default(KeyValuePair)) } }; public static readonly Dictionary>> SetExtensionMap = new Dictionary>> { { PrestigeType.Experience, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerExperience(data); } }, { PrestigeType.Exo, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerExperience(data); } }, { PrestigeType.SwordExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerSwordExpertise(data); } }, { PrestigeType.AxeExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerAxeExpertise(data); } }, { PrestigeType.MaceExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerMaceExpertise(data); } }, { PrestigeType.SpearExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerSpearExpertise(data); } }, { PrestigeType.CrossbowExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerCrossbowExpertise(data); } }, { PrestigeType.GreatSwordExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerGreatSwordExpertise(data); } }, { PrestigeType.SlashersExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerSlashersExpertise(data); } }, { PrestigeType.PistolsExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerPistolsExpertise(data); } }, { PrestigeType.ReaperExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerReaperExpertise(data); } }, { PrestigeType.LongbowExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerLongbowExpertise(data); } }, { PrestigeType.WhipExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerWhipExpertise(data); } }, { PrestigeType.UnarmedExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerUnarmedExpertise(data); } }, { PrestigeType.FishingPoleExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerFishingPoleExpertise(data); } }, { PrestigeType.TwinBladesExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerTwinBladesExpertise(data); } }, { PrestigeType.DaggersExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerDaggersExpertise(data); } }, { PrestigeType.ClawsExpertise, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerClawsExpertise(data); } }, { PrestigeType.WorkerLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerWorkerLegacy(data); } }, { PrestigeType.WarriorLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerWarriorLegacy(data); } }, { PrestigeType.ScholarLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerScholarLegacy(data); } }, { PrestigeType.RogueLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerRogueLegacy(data); } }, { PrestigeType.MutantLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerRogueLegacy(data); } }, { PrestigeType.DraculinLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerDraculinLegacy(data); } }, { PrestigeType.ImmortalLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerImmortalLegacy(data); } }, { PrestigeType.CreatureLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerCreatureLegacy(data); } }, { PrestigeType.BruteLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerBruteLegacy(data); } }, { PrestigeType.CorruptionLegacy, delegate(ulong steamId, KeyValuePair data) { steamId.SetPlayerCorruptionLegacy(data); } } }; public static readonly Dictionary PrestigeTypeToMaxLevel = new Dictionary { { PrestigeType.Experience, ConfigService.MaxLevel }, { PrestigeType.Exo, ConfigService.MaxLevelingPrestiges }, { PrestigeType.SwordExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.AxeExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.MaceExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.SpearExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.CrossbowExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.GreatSwordExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.SlashersExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.PistolsExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.ReaperExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.LongbowExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.WhipExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.UnarmedExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.FishingPoleExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.TwinBladesExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.DaggersExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.ClawsExpertise, ConfigService.MaxExpertiseLevel }, { PrestigeType.WorkerLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.WarriorLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.ScholarLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.RogueLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.MutantLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.DraculinLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.ImmortalLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.CreatureLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.BruteLegacy, ConfigService.MaxBloodLevel }, { PrestigeType.CorruptionLegacy, ConfigService.MaxBloodLevel } }; public static readonly Dictionary PrestigeTypeToMaxPrestiges = new Dictionary { { PrestigeType.Experience, ConfigService.MaxLevelingPrestiges }, { PrestigeType.Exo, 100 }, { PrestigeType.SwordExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.AxeExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.MaceExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.SpearExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.CrossbowExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.GreatSwordExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.SlashersExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.PistolsExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.ReaperExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.LongbowExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.WhipExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.UnarmedExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.FishingPoleExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.TwinBladesExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.DaggersExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.ClawsExpertise, ConfigService.MaxExpertisePrestiges }, { PrestigeType.WorkerLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.WarriorLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.ScholarLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.RogueLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.MutantLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.DraculinLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.ImmortalLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.CreatureLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.BruteLegacy, ConfigService.MaxLegacyPrestiges }, { PrestigeType.CorruptionLegacy, ConfigService.MaxLegacyPrestiges } }; private static EntityManager EntityManager => Core.EntityManager; public static void DisplayPrestigeInfo(ChatCommandContext ctx, ulong steamId, PrestigeType parsedPrestigeType, int prestigeLevel, int maxPrestigeLevel) { float num = 1f; float num2 = 1f; if (parsedPrestigeType == PrestigeType.Experience) { if (steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value) && value > 0) { num = ConfigService.LevelingPrestigeReducer * (float)value; num2 = ConfigService.PrestigeRateMultiplier * (float)value; } string text = (num * 100f).ToString("F2") + "%"; string text2 = (num2 * 100f).ToString("F2") + "%"; ctx.Reply($"{parsedPrestigeType} Prestige Info:"); ctx.Reply($"Current Prestige Level: {prestigeLevel}/{maxPrestigeLevel}"); ctx.Reply("Growth rate increase for expertise and legacies: " + text2 + ""); ctx.Reply("Growth rate reduction for experience: " + text + ""); if (prestiges.TryGetValue(PrestigeType.Exo, out var value2) && value2 > 0) { ctx.Reply("Experience rate reduction for leveling no longer applies for exo prestiging."); } return; } if (steamId.TryGetPlayerPrestiges(out var prestiges2) && prestiges2.TryGetValue(parsedPrestigeType, out var value3) && value3 > 0 && prestiges2.TryGetValue(PrestigeType.Experience, out var value4) && value4 > 0) { num = ConfigService.PrestigeRatesReducer * (float)value3; num2 = ConfigService.PrestigeRateMultiplier * (float)value4; } float num3 = num2 - num; string value5 = (num * 100f).ToString("F2") + "%"; string text3 = (ConfigService.PrestigeStatMultiplier * (float)prestigeLevel * 100f).ToString("F2") + "%"; string text4 = ((num3 >= 0f) ? "+" : "-") + (num3 * 100f).ToString("F2") + "%"; LocalizationService.HandleReply(ctx, $"{parsedPrestigeType} Prestige Info:"); LocalizationService.HandleReply(ctx, $"Current Prestige Level: {prestigeLevel}/{maxPrestigeLevel}"); LocalizationService.HandleReply(ctx, $"Growth rate reduction from {parsedPrestigeType} prestige level: -{value5}"); LocalizationService.HandleReply(ctx, "Stat bonuses improvement: " + text3 + ""); LocalizationService.HandleReply(ctx, "Total change in growth rate including leveling prestige bonus: " + text4 + ""); } public static bool CanPrestige(ulong steamId, PrestigeType parsedPrestigeType, int xpKey) { if (xpKey >= PrestigeTypeToMaxLevel[parsedPrestigeType] && steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(parsedPrestigeType, out var value)) { return value < PrestigeTypeToMaxPrestiges[parsedPrestigeType]; } return false; } public static void PerformPrestige(ChatCommandContext ctx, ulong steamId, PrestigeType parsedPrestigeType, IPrestige handler, KeyValuePair xpData) { //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) if (steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(parsedPrestigeType, out var value)) { handler.DoPrestige(steamId); if (parsedPrestigeType == PrestigeType.Experience) { HandleExperiencePrestige(ctx, value, xpData); Progression.PlayerProgressionCacheManager.UpdatePlayerProgressionPrestige(steamId, hasPrestiged: true); } else { HandleOtherPrestige(ctx, steamId, parsedPrestigeType, value); } ctx.Event.SenderCharacterEntity.PlaySequence(_prestigeSequence); } } private static void HandleExperiencePrestige(ChatCommandContext ctx, int prestigeLevel, KeyValuePair xpData) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; LevelingSystem.SetLevel(senderCharacterEntity); List list = Configuration.ParseIntegersFromString(ConfigService.PrestigeBuffs); PrefabGUID buffPrefab = default(PrefabGUID); ((PrefabGUID)(ref buffPrefab))..ctor(list[prestigeLevel - 1]); if (!((PrefabGUID)(ref buffPrefab)).GuidHash.Equals(0)) { Buffs.TryApplyPermanentBuff(senderCharacterEntity, buffPrefab); } if (ConfigService.RestedXPSystem) { LevelingSystem.UpdateMaxRestedXP(platformId, xpData); } string value = (ConfigService.LevelingPrestigeReducer * (float)prestigeLevel * 100f).ToString("F2") + "%"; string value2 = (ConfigService.PrestigeRateMultiplier * (float)prestigeLevel * 100f).ToString("F2") + "%"; LocalizationService.HandleReply(ctx, $"You have prestiged in Experience[{prestigeLevel}]! Growth rates for all expertise/legacies increased by {value2}, experience from unit kills reduced by {value}."); } private static void HandleOtherPrestige(ChatCommandContext ctx, ulong steamId, PrestigeType parsedPrestigeType, int prestigeLevel) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) _ = ctx.Event.SenderCharacterEntity; Dictionary prestiges; int value; int num = ((steamId.TryGetPlayerPrestiges(out prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out value)) ? value : 0); float num2 = (float)prestigeLevel * ConfigService.PrestigeRatesReducer; float num3 = (float)num * ConfigService.PrestigeRateMultiplier - num2; string value2 = (num2 * 100f).ToString("F2") + "%"; string value3 = (ConfigService.PrestigeStatMultiplier * (float)prestigeLevel * 100f).ToString("F2") + "%"; string value4 = (num3 * 100f).ToString("F2") + "%"; LocalizationService.HandleReply(ctx, $"{parsedPrestigeType}[{prestigeLevel}] prestiged successfully! Growth rate reduced by {value2} and stat bonuses improved by {value3}. The total change in growth rate with leveling prestige bonus is {value4}."); } public static void RemovePrestigeBuffs(Entity character) { //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: 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_0016: Unknown result type (might be due to invalid IL or missing references) foreach (PrefabGUID prestigeBuff in UpdateBuffsBufferDestroyPatch.PrestigeBuffs) { character.TryRemoveBuff(prestigeBuff); } } public static void ApplyPrestigeBuffs(Entity character, int prestigeLevel) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) List prestigeBuffs = UpdateBuffsBufferDestroyPatch.PrestigeBuffs; for (int i = 0; i < prestigeLevel; i++) { Buffs.TryApplyPermanentBuff(character, prestigeBuffs[i]); } } public static void ReplyExperiencePrestigeEffects(User user, int level) { //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) string value = (ConfigService.LevelingPrestigeReducer * (float)level * 100f).ToString("F2") + "%"; string value2 = (ConfigService.PrestigeRateMultiplier * (float)level * 100f).ToString("F2") + "%"; LocalizationService.HandleServerReply(EntityManager, user, $"Player {((FixedString64Bytes)(ref user.CharacterName)).Value} has prestiged in Experience[{level}]! Growth rates for expertise/legacies increased by {value2}, experience from unit kills reduced by {value}."); } public static void ReplyOtherPrestigeEffects(User user, ulong playerId, PrestigeType parsedPrestigeType, int level) { //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) Dictionary prestiges; int value; int num = ((playerId.TryGetPlayerPrestiges(out prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out value)) ? value : 0); float num2 = (float)level * ConfigService.PrestigeRatesReducer; float num3 = (float)num * ConfigService.PrestigeRateMultiplier - num2; string value2 = (num2 * 100f).ToString("F0") + "%"; string value3 = (ConfigService.PrestigeStatMultiplier * (float)level * 100f).ToString("F2") + "%"; string value4 = (num3 * 100f).ToString("F2") + "%"; LocalizationService.HandleServerReply(EntityManager, user, $"Player {((FixedString64Bytes)(ref user.CharacterName)).Value} has prestiged in {parsedPrestigeType}[{level}]! Growth rate reduced by {value2} and stat bonuses improved by {value3}. The total change in growth rate with leveling prestige bonus is {value4}."); } public static bool TryParsePrestigeType(string prestigeType, out PrestigeType parsedPrestigeType) { if (Enum.TryParse(prestigeType, ignoreCase: true, out parsedPrestigeType)) { return true; } parsedPrestigeType = Enum.GetValues(typeof(PrestigeType)).Cast().FirstOrDefault((PrestigeType pt) => pt.ToString().Contains(prestigeType, StringComparison.InvariantCultureIgnoreCase)); if (!parsedPrestigeType.Equals(PrestigeType.Experience)) { return true; } parsedPrestigeType = PrestigeType.Experience; return false; } public static Dictionary GetPrestigeForType(PrestigeType prestigeType) { return (from p in (from p in DataService.PlayerDictionaries._playerPrestiges where p.Value.ContainsKey(prestigeType) && !DataService.PlayerDictionaries._ignorePrestigeLeaderboard.Contains(p.Key) select new { steamId = p.Key, Prestige = p.Value[prestigeType] }).Select(p => { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) User user = PlayerService.SteamIdPlayerInfoCache.FirstOrDefault((KeyValuePair pc) => pc.Key == p.steamId).Value.User; return new { PlayerName = ((FixedString64Bytes)(ref user.CharacterName)).Value, Prestige = p.Prestige }; }) where !string.IsNullOrEmpty(p.PlayerName) select p).ToDictionary(p => p.PlayerName, p => p.Prestige); } public static void GlobalPurgePrestigeBuffs(ChatCommandContext ctx) { //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) List list = new List(); list.AddRange(PlayerService.SteamIdPlayerInfoCache.Values); foreach (PlayerService.PlayerInfo item in list) { Misc.PlayerBoolsManager.SetPlayerBool(item.User.PlatformId, "PrestigeBuffs", value: false); RemovePrestigeBuffs(item.CharEntity); } ctx.Reply("Removed prestige buffs from all players."); } public static bool HasPrestiged(ulong steamId) { if (steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value)) { return value > 0; } return false; } public static bool HasExoPrestiged(ulong steamId) { if (steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Exo, out var value)) { return value > 0; } return false; } } } namespace Bloodcraft.Systems.Legacies { internal static class BloodManager { public static class BloodStats { public enum BloodStatType { HealingReceived, DamageReduction, PhysicalResistance, SpellResistance, ResourceYield, ReducedBloodDrain, SpellCooldownRecoveryRate, WeaponCooldownRecoveryRate, UltimateCooldownRecoveryRate, MinionDamage, AbilityAttackSpeed, CorruptionDamageReduction } private static readonly Dictionary _bloodStatTypes = new Dictionary { { BloodStatType.HealingReceived, (UnitStatType)75 }, { BloodStatType.DamageReduction, (UnitStatType)74 }, { BloodStatType.PhysicalResistance, (UnitStatType)8 }, { BloodStatType.SpellResistance, (UnitStatType)23 }, { BloodStatType.ResourceYield, (UnitStatType)3 }, { BloodStatType.ReducedBloodDrain, (UnitStatType)81 }, { BloodStatType.SpellCooldownRecoveryRate, (UnitStatType)70 }, { BloodStatType.WeaponCooldownRecoveryRate, (UnitStatType)71 }, { BloodStatType.UltimateCooldownRecoveryRate, (UnitStatType)72 }, { BloodStatType.MinionDamage, (UnitStatType)73 }, { BloodStatType.AbilityAttackSpeed, (UnitStatType)33 }, { BloodStatType.CorruptionDamageReduction, (UnitStatType)95 } }; private static readonly Dictionary _bloodStatBaseCaps = new Dictionary { { BloodStatType.HealingReceived, ConfigService.HealingReceived }, { BloodStatType.DamageReduction, ConfigService.DamageReduction }, { BloodStatType.PhysicalResistance, ConfigService.PhysicalResistance }, { BloodStatType.SpellResistance, ConfigService.SpellResistance }, { BloodStatType.ResourceYield, ConfigService.ResourceYield }, { BloodStatType.ReducedBloodDrain, ConfigService.ReducedBloodDrain }, { BloodStatType.SpellCooldownRecoveryRate, ConfigService.SpellCooldownRecoveryRate }, { BloodStatType.WeaponCooldownRecoveryRate, ConfigService.WeaponCooldownRecoveryRate }, { BloodStatType.UltimateCooldownRecoveryRate, ConfigService.UltimateCooldownRecoveryRate }, { BloodStatType.MinionDamage, ConfigService.MinionDamage }, { BloodStatType.AbilityAttackSpeed, ConfigService.AbilityAttackSpeed }, { BloodStatType.CorruptionDamageReduction, ConfigService.CorruptionDamageReduction } }; public static IReadOnlyDictionary BloodStatTypes => _bloodStatTypes; public static IReadOnlyDictionary BloodStatBaseCaps => _bloodStatBaseCaps; } private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _prestige = ConfigService.PrestigeSystem; private static readonly float _synergyMultiplier = ConfigService.SynergyMultiplier; private static readonly float _prestigeStatMultiplier = ConfigService.PrestigeStatMultiplier; private static readonly int _maxLegacyLevel = ConfigService.MaxBloodLevel; private static readonly int _legacyStatChoices = ConfigService.LegacyStatChoices; private static EntityManager EntityManager => Core.EntityManager; public static bool ChooseStat(ulong steamId, BloodType bloodType, BloodStats.BloodStatType bloodStatType) { if (steamId.TryGetPlayerBloodStats(out var bloodStats) && bloodStats.TryGetValue(bloodType, out var value)) { if (value.Count >= _legacyStatChoices || value.Contains(bloodStatType)) { return false; } value.Add(bloodStatType); steamId.SetPlayerBloodStats(bloodStats); return true; } return false; } public static void ResetStats(ulong steamId, BloodType BloodType) { if (steamId.TryGetPlayerBloodStats(out var bloodStats) && bloodStats.TryGetValue(BloodType, out var value)) { value.Clear(); steamId.SetPlayerBloodStats(bloodStats); } } public static void UpdateBloodStats(Entity buffEntity, Entity playerCharacter, ulong steamId) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) BloodType currentBloodType = GetCurrentBloodType(playerCharacter.GetBlood()); ApplyBloodStats(buffEntity, playerCharacter, currentBloodType, steamId); } public static void ApplyBloodStats(Entity buffEntity, Entity playerCharacter, BloodType bloodType, ulong steamId) { //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) IBloodLegacy bloodHandler = BloodLegacyFactory.GetBloodHandler(bloodType); if (bloodHandler == null || !steamId.TryGetPlayerBloodStats(out var bloodStats) || !bloodStats.TryGetValue(bloodType, out var value)) { return; } if (!buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer)) { EntityManager entityManager = EntityManager; dynamicBuffer = ((EntityManager)(ref entityManager)).AddBuffer(buffEntity); } foreach (BloodStats.BloodStatType item in value) { if (TryGetScaledModifyUnitLegacyStat(bloodHandler, playerCharacter, steamId, bloodType, item, out var statValue, out var modifyUnitStatBuff)) { ModifyUnitStatBuff_DOTS val = default(ModifyUnitStatBuff_DOTS); val.StatType = modifyUnitStatBuff.TargetUnitStat; val.ModificationType = modifyUnitStatBuff.ModificationType; val.AttributeCapType = modifyUnitStatBuff.AttributeCapType; val.SoftCapValue = 0f; val.Value = statValue; val.Modifier = 1f; val.IncreaseByStacks = false; val.ValueByStacks = 0f; val.Priority = 0; ModificationIDs val2 = ModificationIDs.Create(); val.Id = ((ModificationIDs)(ref val2)).NewModificationId(); ModifyUnitStatBuff_DOTS val3 = val; dynamicBuffer.Add(val3); } } } public static bool TryGetScaledModifyUnitLegacyStat(IBloodLegacy handler, Entity playerCharacter, ulong steamId, BloodType bloodType, BloodStats.BloodStatType bloodStatType, out float statValue, out Progression.ModifyUnitStatBuffSettings.ModifyUnitStatBuff modifyUnitStatBuff) { modifyUnitStatBuff = null; statValue = 0f; if (handler != null) { if (!Progression.ModifyUnitStatBuffSettings.ModifyUnitLegacyStatBuffs.TryGetValue(bloodStatType, out modifyUnitStatBuff)) { return false; } KeyValuePair legacyData = handler.GetLegacyData(steamId); float num = modifyUnitStatBuff.BaseCap; if (_classes && steamId.HasClass(out var playerClass) && playerClass.HasValue && ClassManager.ClassBloodStatSynergies[playerClass.Value].Contains(bloodStatType)) { num *= _synergyMultiplier; } if (_prestige && steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(BloodSystem.BloodPrestigeTypes[bloodType], out var value)) { float num2 = 1f + _prestigeStatMultiplier * (float)value; num *= num2; } statValue = num * ((float)legacyData.Key / (float)_maxLegacyLevel); return true; } return false; } public static BloodType GetCurrentBloodType(Blood blood) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) return BloodSystem.GetBloodTypeFromPrefab(blood.BloodType); } } internal static class BloodSystem { private static readonly int _maxBloodLevel = ConfigService.MaxBloodLevel; private static readonly int _legacyStatChoices = ConfigService.LegacyStatChoices; private static readonly float _vBloodLegacyMultiplier = ConfigService.VBloodLegacyMultiplier; private static readonly float _unitLegacyMultiplier = ConfigService.UnitLegacyMultiplier; private static readonly float _prestigeRatesReducer = ConfigService.PrestigeRatesReducer; private static readonly float _prestigeRateMultiplier = ConfigService.PrestigeRateMultiplier; private static readonly float3 _red = new float3(0.9f, 0f, 0.1f); private static readonly AssetGuid _experienceAssetGuid = AssetGuid.FromString("4210316d-23d4-4274-96f5-d6f0944bd0bb"); private static readonly PrefabGUID _sctGeneric = PrefabGUIDs.SCT_Type_Generic; private const int BASE_BLOOD_FACTOR = 10; private const float BLOOD_TYPE_FACTOR = 3f; private static readonly Dictionary Data)>> _tryGetExtensions = new Dictionary)>> { { BloodType.Worker, (ulong steamID) => steamID.TryGetPlayerWorkerLegacy(out var workerLegacy) ? (true, workerLegacy) : (false, default(KeyValuePair)) }, { BloodType.Warrior, (ulong steamID) => steamID.TryGetPlayerWarriorLegacy(out var warriorLegacy) ? (true, warriorLegacy) : (false, default(KeyValuePair)) }, { BloodType.Scholar, (ulong steamID) => steamID.TryGetPlayerScholarLegacy(out var scholarLegacy) ? (true, scholarLegacy) : (false, default(KeyValuePair)) }, { BloodType.Rogue, (ulong steamID) => steamID.TryGetPlayerRogueLegacy(out var rogueLegacy) ? (true, rogueLegacy) : (false, default(KeyValuePair)) }, { BloodType.Mutant, (ulong steamID) => steamID.TryGetPlayerMutantLegacy(out var mutantLegacy) ? (true, mutantLegacy) : (false, default(KeyValuePair)) }, { BloodType.Draculin, (ulong steamID) => steamID.TryGetPlayerDraculinLegacy(out var draculinLegacy) ? (true, draculinLegacy) : (false, default(KeyValuePair)) }, { BloodType.Immortal, (ulong steamID) => steamID.TryGetPlayerImmortalLegacy(out var immortalLegacy) ? (true, immortalLegacy) : (false, default(KeyValuePair)) }, { BloodType.Creature, (ulong steamID) => steamID.TryGetPlayerCreatureLegacy(out var creatureLegacy) ? (true, creatureLegacy) : (false, default(KeyValuePair)) }, { BloodType.Brute, (ulong steamID) => steamID.TryGetPlayerBruteLegacy(out var bruteLegacy) ? (true, bruteLegacy) : (false, default(KeyValuePair)) }, { BloodType.Corruption, (ulong steamID) => steamID.TryGetPlayerCorruptionLegacy(out var corruptedLegacy) ? (true, corruptedLegacy) : (false, default(KeyValuePair)) } }; private static readonly Dictionary>> _setExtensions = new Dictionary>> { { BloodType.Worker, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerWorkerLegacy(data); } }, { BloodType.Warrior, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerWarriorLegacy(data); } }, { BloodType.Scholar, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerScholarLegacy(data); } }, { BloodType.Rogue, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerRogueLegacy(data); } }, { BloodType.Mutant, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerMutantLegacy(data); } }, { BloodType.Draculin, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerDraculinLegacy(data); } }, { BloodType.Immortal, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerImmortalLegacy(data); } }, { BloodType.Creature, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerCreatureLegacy(data); } }, { BloodType.Brute, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerBruteLegacy(data); } }, { BloodType.Corruption, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerCorruptionLegacy(data); } } }; private static readonly Dictionary _bloodPrestigeTypes = new Dictionary { { BloodType.Worker, PrestigeType.WorkerLegacy }, { BloodType.Warrior, PrestigeType.WarriorLegacy }, { BloodType.Scholar, PrestigeType.ScholarLegacy }, { BloodType.Rogue, PrestigeType.RogueLegacy }, { BloodType.Mutant, PrestigeType.MutantLegacy }, { BloodType.Draculin, PrestigeType.DraculinLegacy }, { BloodType.Immortal, PrestigeType.ImmortalLegacy }, { BloodType.Creature, PrestigeType.CreatureLegacy }, { BloodType.Brute, PrestigeType.BruteLegacy }, { BloodType.Corruption, PrestigeType.CorruptionLegacy } }; private static readonly Dictionary _bloodBuffToBloodType = new Dictionary { { PrefabGUIDs.AB_BloodBuff_Worker_Tier1, BloodType.Worker }, { PrefabGUIDs.AB_BloodBuff_Warrior_Tier1, BloodType.Warrior }, { PrefabGUIDs.AB_BloodBuff_Scholar_Tier1, BloodType.Scholar }, { PrefabGUIDs.AB_BloodBuff_Rogue_Tier1, BloodType.Rogue }, { PrefabGUIDs.AB_BloodBuff_Mutant_Tier1, BloodType.Mutant }, { PrefabGUIDs.AB_BloodBuff_Draculin_Tier1, BloodType.Draculin }, { PrefabGUIDs.AB_BloodBuff_Dracula_Tier1, BloodType.Immortal }, { PrefabGUIDs.AB_BloodBuff_Creature_Tier1, BloodType.Creature }, { PrefabGUIDs.AB_BloodBuff_Brute_Tier1, BloodType.Brute }, { PrefabGUIDs.AB_BloodBuff_Corruption_Tier1, BloodType.Corruption } }; private static readonly Dictionary _bloodTypeToBloodBuff = new Dictionary { { BloodType.Worker, PrefabGUIDs.AB_BloodBuff_Worker_Tier1 }, { BloodType.Warrior, PrefabGUIDs.AB_BloodBuff_Warrior_Tier1 }, { BloodType.Scholar, PrefabGUIDs.AB_BloodBuff_Scholar_Tier1 }, { BloodType.Rogue, PrefabGUIDs.AB_BloodBuff_Rogue_Tier1 }, { BloodType.Mutant, PrefabGUIDs.AB_BloodBuff_Mutant_Tier1 }, { BloodType.Draculin, PrefabGUIDs.AB_BloodBuff_Draculin_Tier1 }, { BloodType.Immortal, PrefabGUIDs.AB_BloodBuff_Dracula_Tier1 }, { BloodType.Creature, PrefabGUIDs.AB_BloodBuff_Creature_Tier1 }, { BloodType.Brute, PrefabGUIDs.AB_BloodBuff_Brute_Tier1 }, { BloodType.Corruption, PrefabGUIDs.AB_BloodBuff_Corruption_Tier1 } }; private static readonly Dictionary _bloodTypeToConsumeSource = new Dictionary { { BloodType.Worker, PrefabGUIDs.CHAR_Bandit_Worker_Gatherer }, { BloodType.Warrior, PrefabGUIDs.CHAR_Bandit_Thief }, { BloodType.Scholar, PrefabGUIDs.CHAR_Militia_Nun }, { BloodType.Rogue, PrefabGUIDs.CHAR_Bandit_Scout }, { BloodType.Mutant, PrefabGUIDs.CHAR_Mutant_Spitter }, { BloodType.Draculin, PrefabGUIDs.CHAR_Legion_NightMaiden }, { BloodType.Creature, PrefabGUIDs.CHAR_Cursed_Wolf }, { BloodType.Immortal, PrefabGUIDs.CHAR_Dracula_BloodSoul_Heart }, { BloodType.Brute, PrefabGUIDs.CHAR_Militia_Heavy }, { BloodType.Corruption, PrefabGUIDs.CHAR_Corrupted_Wolf } }; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => SystemService.EndSimulationEntityCommandBufferSystem; public static IReadOnlyDictionary Data)>> TryGetExtensions => _tryGetExtensions; public static IReadOnlyDictionary>> SetExtensions => _setExtensions; public static IReadOnlyDictionary BloodPrestigeTypes => _bloodPrestigeTypes; public static IReadOnlyDictionary BloodBuffToBloodType => _bloodBuffToBloodType; public static IReadOnlyDictionary BloodTypeToBloodBuff => _bloodTypeToBloodBuff; public static IReadOnlyDictionary BloodTypeToConsumeSource => _bloodTypeToConsumeSource; public static void ProcessLegacy(DeathEventListenerSystemPatch.DeathEventArgs deathEvent) { //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_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0084: 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_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) Entity source = deathEvent.Source; Entity target = deathEvent.Target; if (!target.TryGetComponent(out BloodConsumeSource componentData)) { return; } BloodType bloodTypeFromPrefab = GetBloodTypeFromPrefab(componentData.UnitBloodType._Value); int unitLevel = target.GetUnitLevel(); float num = 1f; float num2 = ((!target.Has()) ? (componentData.BloodQuality / 10f * (float)unitLevel * _unitLegacyMultiplier) : ((float)(10 * unitLevel) * _vBloodLegacyMultiplier)); Entity userEntity = source.GetUserEntity(); User user = userEntity.GetUser(); ulong platformId = user.PlatformId; Blood val = source.Read(); BloodType currentBloodType = BloodManager.GetCurrentBloodType(val); float quality = val.Quality; if (currentBloodType.Equals(BloodType.None)) { return; } if (bloodTypeFromPrefab.Equals(currentBloodType)) { num2 *= 3f; } float num3 = 1f + quality / 100f; num3 = Mathf.Min(num3, 2f); num2 *= num3; if (platformId.TryGetPlayerPrestiges(out var prestiges)) { if (prestiges.TryGetValue(BloodPrestigeTypes[currentBloodType], out var value)) { num -= _prestigeRatesReducer * (float)value; } if (prestiges.TryGetValue(PrestigeType.Experience, out var value2)) { num += _prestigeRateMultiplier * (float)value2; } } num2 *= num; IBloodLegacy bloodHandler = BloodLegacyFactory.GetBloodHandler(currentBloodType); if (bloodHandler != null) { SaveBloodExperience(platformId, bloodHandler, num2, out var leveledUp, out var newLevel); NotifyPlayer(source, userEntity, user, platformId, currentBloodType, num2, leveledUp, newLevel, bloodHandler, deathEvent.ScrollingTextDelay); } } public static void SaveBloodExperience(ulong steamId, IBloodLegacy handler, float gainedXP, out bool leveledUp, out int newLevel) { KeyValuePair legacyData = handler.GetLegacyData(steamId); int key = legacyData.Key; float value = legacyData.Value; if (key >= _maxBloodLevel) { leveledUp = false; newLevel = key; return; } float num = value + gainedXP; newLevel = Progression.ConvertXpToLevel(num); leveledUp = false; if (newLevel > key) { leveledUp = true; if (newLevel > _maxBloodLevel) { newLevel = _maxBloodLevel; num = Progression.ConvertLevelToXp(_maxBloodLevel); } } handler.SetLegacyData(steamId, new KeyValuePair(newLevel, num)); } private static void HandleBloodLevelUp(User user, BloodType bloodType, int newLevel, ulong steamID) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) if (newLevel <= _maxBloodLevel) { LocalizationService.HandleServerReply(EntityManager, user, $"{bloodType} legacy improved to [{newLevel}]!"); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamID, "Reminders") && steamID.TryGetPlayerBloodStats(out var bloodStats) && bloodStats.TryGetValue(bloodType, out var value)) { int count = value.Count; if (count < _legacyStatChoices) { int num = _legacyStatChoices - count; string value2 = ((num > 1) ? "bonuses" : "bonus"); LocalizationService.HandleServerReply(EntityManager, user, $"{num} stat {value2} available for {bloodType.ToString().ToLower()}; use '.bl cst [Stat]' to choose and '.bl lst' to see options. (toggle reminders with '.misc remindme')"); } } } public static void NotifyPlayer(Entity playerCharacter, Entity userEntity, User user, ulong steamId, BloodType bloodType, float gainedXP, bool leveledUp, int newLevel, IBloodLegacy handler, float delay) { //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) int value = (int)gainedXP; int levelProgress = GetLevelProgress(steamId, handler); if (newLevel < _maxBloodLevel && !(gainedXP <= 0f)) { if (leveledUp) { HandleBloodLevelUp(user, bloodType, newLevel, steamId); Buffs.RefreshStats(((NetworkedEntity)(ref user.LocalCharacter)).GetEntityOnServer()); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "BloodLogging")) { LocalizationService.HandleServerReply(EntityManager, user, $"+{value} {bloodType} essence ({levelProgress}%)"); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "LegacySCT")) { PlayerLegacySCTDelayRoutine(playerCharacter, userEntity, _red, gainedXP, delay).Run(); } } } private static IEnumerator PlayerLegacySCTDelayRoutine(Entity playerCharacter, Entity userEntity, float3 color, float gainedXP, float delay) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) yield return (object)new WaitForSeconds(delay); float3 position = playerCharacter.GetPosition(); ScrollingCombatTextMessage.Create(EntityManager, ((EntityCommandBufferSystem)EndSimulationEntityCommandBufferSystem).CreateCommandBuffer(), _experienceAssetGuid, position, color, playerCharacter, gainedXP, _sctGeneric, userEntity); } public static int GetLevelProgress(ulong SteamID, IBloodLegacy handler) { int level = GetLevel(SteamID, handler); float xp = GetXp(SteamID, handler); int num = Progression.ConvertLevelToXp(level); int num2 = Progression.ConvertLevelToXp(level + 1); double num3 = num2 - num; double num4 = (float)num2 - xp; return 100 - (int)Math.Ceiling(num4 / num3 * 100.0); } private static float GetXp(ulong steamID, IBloodLegacy handler) { return handler.GetLegacyData(steamID).Value; } public static int GetLevel(ulong steamID, IBloodLegacy handler) { return handler.GetLegacyData(steamID).Key; } public static BloodType GetBloodTypeFromPrefab(PrefabGUID bloodPrefab) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) string bloodCheck = bloodPrefab.GetPrefabName(); return Enum.GetValues(typeof(BloodType)).Cast().FirstOrDefault((BloodType type) => bloodCheck.Contains(type.ToString(), StringComparison.CurrentCultureIgnoreCase)); } } } namespace Bloodcraft.Systems.Familiars { internal static class FamiliarBindingSystem { public enum FamiliarStatType { MaxHealth, PhysicalPower, SpellPower } private static readonly GameDifficulty _gameDifficulty = SystemService.ServerGameSettingsSystem.Settings.GameDifficulty; private static readonly bool _familiarCombat = ConfigService.FamiliarCombat; private static readonly bool _familiarPrestige = ConfigService.FamiliarPrestige; private static readonly WaitForSeconds _delay = new WaitForSeconds(0.25f); public const float FAMILIAR_LIFETIME = 240f; private const int TEAM_ONE = 0; private const int TEAM_TWO = 1; public const int BASE_LEVEL = 1; private const int NORMAL_HEALTH = 500; private const int HARD_HEALTH = 750; private const float HEALTH_MIN = 1f; private const float HEALTH_MAX = 4f; private const float HEALTH_ADD = 3f; private const float POWER_MIN = 0.1f; private const float POWER_MAX = 0.75f; private const float POWER_ADD = 0.65f; private const float POWER_SKEW = 0.1f; private const float HEALTH_MIN_BATTLE = 1f; private const float HEALTH_MAX_BATTLE = 2.5f; private const float HEALTH_ADD_BATTLE = 1.5f; private const float POWER_MIN_BATTLE = 0.25f; private const float POWER_MAX_BATTLE = 1f; private const float POWER_ADD_BATTLE = 0.75f; private const string SHINY_DEFAULT = ""; private static readonly int _maxFamiliarLevel = ConfigService.MaxFamiliarLevel; private static readonly float _familiarPrestigeStatMultiplier = ConfigService.FamiliarPrestigeStatMultiplier; public static Entity _unitTeamSingleton = Entity.Null; private static readonly PrefabGUID _invulnerableBuff = Buffs.AdminInvulnerableBuff; private static readonly PrefabGUID _hideSpawnBuff = PrefabGUIDs.Buff_General_Spawn_Unit_Fast_WarEvent; private static readonly PrefabGUID _monsterFakePos = PrefabGUIDs.AB_Monster_HomePos_FakeTarget; private static readonly PrefabGUID _charDivineAngel = PrefabGUIDs.CHAR_Paladin_DivineAngel; private static readonly PrefabGUID _charVampireCultistServant = PrefabGUIDs.CHAR_Vampire_Cultist_Male_Servant; private static readonly PrefabGUID _invisibleAndImmaterialBuff = Buffs.InvisibleAndImmaterialBuff; private static readonly PrefabGUID _servantCoffin = PrefabGUIDs.TM_SpecialStation_ServantCoffin; private static readonly PrefabGUID _ignoredFaction = PrefabGUIDs.Faction_Ignored; private static readonly PrefabGUID _playerFaction = PrefabGUIDs.Faction_Players; private static readonly PrefabGUID _legionFaction = PrefabGUIDs.Faction_Legion; private static readonly PrefabGUID _cursedFaction = PrefabGUIDs.Faction_Cursed; private static readonly PrefabGUID _teamOneMarkerBuff = PrefabGUID.Empty; private static readonly PrefabGUID _teamTwoMarkerBuff = PrefabGUIDs.AB_Undead_Infiltrator_MasterOfDisguise_HintBuff; private static readonly PrefabGUID _mapIconAlliedPlayer = PrefabGUIDs.MapIcon_Player; private static readonly PrefabGUID _mapIconBuff = PrefabGUIDs.AB_Interact_Mount_Target_LastOwner_BuffIcon; private static readonly PrefabGUID _openTheCages = PrefabGUIDs.AB_WerewolfChieftain_OpenTheCages_AbilityGroup; private static readonly PrefabGUID _charWerewolfChieftainVBlood = PrefabGUIDs.CHAR_WerewolfChieftain_Human; private static readonly List _teamFactions = new List(2) { _legionFaction, _cursedFaction }; public static readonly ConcurrentDictionary> PlayerBattleGroups = new ConcurrentDictionary>(); public static readonly ConcurrentDictionary> PlayerBattleFamiliars = new ConcurrentDictionary>(); private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static bool EquipmentOnly { get; } = ConfigService.EquipmentOnly; public static IEnumerator InstantiateFamiliarRoutine(User user, Entity playerCharacter, int famKey, bool battle = false, int teamIndex = -1, float3 position = default(float3), bool allies = false) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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) ulong steamId = user.PlatformId; Bloodcraft.Utilities.Familiars.ActiveFamiliarManager.UpdateActiveFamiliarBinding(steamId, isBinding: true); PrefabGUID familiarId = new PrefabGUID(famKey); ServerGameManager serverGameManager = ServerGameManager; Entity familiar = ((ServerGameManager)(ref serverGameManager)).InstantiateEntityImmediate(playerCharacter, familiarId); yield return _delay; if (battle) { if (!PlayerBattleFamiliars.ContainsKey(steamId)) { PlayerBattleFamiliars[steamId] = new List(); } PlayerBattleFamiliars[steamId].Add(familiar); PlayerBattleGroups[steamId].Remove(familiarId); familiar.TryApplyBuff(_hideSpawnBuff); if (HandleBinding(user, playerCharacter, familiar, familiarId, position, battle, teamIndex, allies) && BattleService.Matchmaker.MatchPairs.TryGetMatch(steamId, out var matchingPair)) { ulong num = ((matchingPair.Item1 == steamId) ? matchingPair.Item2 : matchingPair.Item1); if (PlayerBattleGroups[steamId].Count == 0 && PlayerBattleGroups[num].Count == 0) { BattleService.BattleCountdownRoutine((steamId, num)).Run(); } } } else { familiar.TryApplyBuff(_hideSpawnBuff); HandleBinding(user, playerCharacter, familiar, familiarId, playerCharacter.GetPosition()); } Bloodcraft.Utilities.Familiars.ActiveFamiliarManager.UpdateActiveFamiliarBinding(steamId, isBinding: false); } private static bool HandleBinding(User user, Entity playerCharacter, Entity familiar, PrefabGUID familiarId, float3 position, bool battle = false, int teamIndex = -1, bool allies = false) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_008e: 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_0129: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Expected O, but got Unknown //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Expected O, but got Unknown //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Expected O, but got Unknown //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: 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_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) ulong platformId = user.PlatformId; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val; if (battle) { if (familiar.Exists()) { familiar.SetPosition(position); if (HandleModifications(user, playerCharacter, familiar, battle, teamIndex, allies)) { HandleShiny(user, platformId, familiar, familiarId, battle); return true; } familiar.Destroy(); ManualLogSource log = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(51, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Battle modifications failed, destroying familiar..."); } log.LogWarning(val); return false; } ManualLogSource log2 = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(54, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Familiar doesn't exist after instantiation for battle!"); } log2.LogWarning(val); return false; } if (familiar.Exists() && playerCharacter.TryGetTeamEntity(out var teamEntity)) { familiar.SetTeam(teamEntity); familiar.SetPosition(position); if (HandleModifications(user, playerCharacter, familiar)) { HandleShiny(user, platformId, familiar, familiarId); HandleMapIcon(playerCharacter, familiar); Entity servant = HandleFamiliarServant(playerCharacter, familiar); Bloodcraft.Utilities.Familiars.ActiveFamiliarManager.UpdateActiveFamiliarData(platformId, familiar, servant, ((PrefabGUID)(ref familiarId)).GuidHash); EquipFamiliarAndApplyStatsRoutine(platformId, servant, familiar, ((PrefabGUID)(ref familiarId)).GuidHash).Run(); return true; } familiar.Destroy(); LocalizationService.HandleServerReply(EntityManager, user, "Binding failed..."); return false; } ManualLogSource log3 = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(102, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Familiar doesn't exist after instantiation and/or couldn't get team entity from playerCharacter! ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(familiar.Exists()); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerCharacter.TryGetComponent(out TeamReference componentData) && componentData.Value._Value.Exists()); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log3.LogWarning(val); return false; } public static bool HandleModifications(User user, Entity playerCharacter, Entity familiar, bool battle = false, int teamIndex = -1, bool allies = false) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Expected O, but got Unknown //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) ulong platformId = user.PlatformId; try { DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(platformId); int guidHash = familiar.GetGuidHash(); KeyValuePair value; int num = (familiarExperienceData.FamiliarExperience.TryGetValue(guidHash, out value) ? value.Key : 0); if (num < 1) { num = 1; KeyValuePair value2 = new KeyValuePair(num, Progression.ConvertLevelToXp(num)); familiarExperienceData.FamiliarExperience[guidHash] = value2; DataService.FamiliarPersistence.FamiliarExperienceManager.SaveFamiliarExperienceData(platformId, familiarExperienceData); } if (battle) { if (ModifyFamiliar(user, platformId, guidHash, playerCharacter, familiar, num, battle, teamIndex, allies)) { return true; } return false; } if (ModifyFamiliar(user, platformId, guidHash, playerCharacter, familiar, num)) { return true; } return false; } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(42, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error during familiar modifications for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(": "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); return false; } } public static bool ModifyFamiliar(User user, ulong steamId, int famKey, Entity playerCharacter, Entity familiar, int level, bool battle = false, int teamIndex = -1, bool allies = false) { //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Expected O, but got Unknown //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: 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_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Expected O, but got Unknown //IL_0123: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) try { if (battle) { ModifyTeamFactionAggro(playerCharacter, familiar, teamIndex, allies); ModifyUnitStats(familiar, level, steamId, famKey, battle); RemoveConvertable(familiar); HandleBloodSource(familiar, level); ModifyCollision(familiar); RemoveDropTable(familiar); PreventDisableFamiliar(familiar); if (BattleService.Matchmaker.MatchPairs.TryGetMatch(steamId, out var matchingPair)) { ulong key = ((matchingPair.Item1 == steamId) ? matchingPair.Item2 : matchingPair.Item1); if (PlayerBattleFamiliars.ContainsKey(key)) { int num = PlayerBattleFamiliars[key].Count - 1; if (num >= 0) { Entity val = PlayerBattleFamiliars[key][num]; if (val.Exists()) { Bloodcraft.Utilities.Familiars.FaceYourEnemy(familiar, val); } } } familiar.NothingLivesForever(); return true; } ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(64, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Couldn't find MatchPair to get team indices for familiar battle!"); } log.LogWarning(val2); return false; } ModifyFollowerFactionMinion(playerCharacter, familiar); ModifyUnitStats(familiar, level, steamId, famKey); if (!_familiarCombat) { DisableCombat(familiar); } else { ModifyAggro(familiar); } RemoveConvertable(familiar); HandleBloodSource(familiar, level); ModifyCollision(familiar); RemoveDropTable(familiar); PreventDisableFamiliar(familiar); return true; } catch (Exception ex) { ManualLogSource log2 = Core.Log; bool flag2 = default(bool); BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(42, 2, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Error during familiar modifications for "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(": "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log2.LogWarning(val2); return false; } } private static void DisableCombat(Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) familiar.TryApplyBuff(_invulnerableBuff); familiar.SetFaction(_ignoredFaction); Bloodcraft.Utilities.Familiars.DisableAggro(familiar); familiar.DisableAggroable(); } private static void ModifyTeamFactionAggro(Entity playerCharacter, Entity familiar, int teamIndex, bool allies) { //IL_0000: 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_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Expected O, but got Unknown //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref AggroConsumer aggroConsumer) { aggroConsumer.Active._Value = false; }); } if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref Aggroable aggroable) { aggroable.Value._Value = false; }); } if (!allies && playerCharacter.TryGetTeamEntity(out var teamEntity)) { familiar.SetTeam(teamEntity); } else if (familiar.Has() && _unitTeamSingleton.Exists()) { if (familiar.Has()) { PrefabGUID factionPrefabGuid = _teamFactions[teamIndex]; familiar.SetFaction(factionPrefabGuid); } familiar.With((VExtensions.WithRefHandler)delegate(ref Team team) { team.Value = 2; }); familiar.With((VExtensions.WithRefHandler)delegate(ref TeamReference teamReference) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) teamReference.Value._Value = _unitTeamSingleton; }); } else { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(63, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Couldn't find valid team to use for a familiar about to battle!"); } log.LogWarning(val); } if (!familiar.Has()) { familiar.Add(); } if (teamIndex.Equals(1)) { familiar.TryApplyBuffWithLifeTimeNone(_teamTwoMarkerBuff); } } private static void ModifyFollowerFactionMinion(Entity playerCharacter, Entity familiar) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_003a: 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_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_009b: 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_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref FactionReference factionReference) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) factionReference.FactionGuid._Value = _playerFaction; }); } if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref Follower follower) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) follower.Followed._Value = playerCharacter; follower.ModeModifiable._Value = 0; }); } if (!familiar.Has()) { familiar.AddWith((VExtensions.WithRefHandler)delegate(ref Minion minion) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) minion.MasterDeathAction = (MinionMasterDeathAction)1; }); } if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref EntityOwner entityOwner) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) entityOwner.Owner = playerCharacter; }); } if (!familiar.Has()) { familiar.Add(); } playerCharacter.ReadBuffer().Add(new FollowerBuffer { Entity = NetworkedEntity.ServerEntity(familiar) }); } public static void ModifyUnitStats(Entity familiar, int level, ulong steamId, int famKey, bool battle = false) { //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: 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_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) float num = (float)level / (float)_maxFamiliarLevel; float num2 = 0.1f + num * 0.65f; float num3 = 1f + num * 3f; if (battle) { num2 = 0.25f + num * 0.75f; num3 = 1f + num * 1.5f; } int num4 = 0; new List(); if (_familiarPrestige && DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(steamId).FamiliarPrestige.TryGetValue(famKey, out var value)) { num4 = value; } num2 += (float)num4 * 0.1f; _ = _familiarPrestigeStatMultiplier; PrefabGUID prefabGuid = familiar.GetPrefabGuid(); Entity entity = PrefabCollectionSystem._PrefabGuidToEntityMap[prefabGuid]; UnitStats val = entity.Read(); UnitStats componentData = familiar.Read(); entity.Read(); AbilityBar_Shared componentData2 = familiar.Read(); entity.Read(); AiMoveSpeeds componentData3 = familiar.Read(); componentData.PhysicalPower._Value = val.PhysicalPower._Value * num2; componentData.SpellPower._Value = val.SpellPower._Value * num2; familiar.Write(componentData); familiar.Write(componentData2); familiar.Write(componentData3); familiar.With((VExtensions.WithRefHandler)delegate(ref UnitLevel unitLevel) { unitLevel.Level._Value = level; unitLevel.HideLevel = false; }); GameDifficulty gameDifficulty = _gameDifficulty; float maxHealth = (((object)(GameDifficulty)(ref gameDifficulty)).Equals((object)(GameDifficulty)2) ? 750 : 500); if (level.Equals(1)) { maxHealth *= 1f; } else if (level.Equals(_maxFamiliarLevel)) { maxHealth *= 4f; } else { maxHealth *= num3; } familiar.With((VExtensions.WithRefHandler)delegate(ref Health health) { health.MaxHealth._Value = maxHealth; health.Value = maxHealth; }); RemoveMisc(familiar, prefabGuid); } public static void ModifyBloodSource(Entity familiar, int level) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) familiar.With((VExtensions.WithRefHandler)delegate(ref BloodConsumeSource bloodConsumeSource) { bloodConsumeSource.BloodQuality = (float)level / (float)_maxFamiliarLevel * 100f; bloodConsumeSource.CanBeConsumed = false; }); } public static void PreventDisableFamiliar(Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) familiar.AddWith((VExtensions.WithRefHandler)delegate(ref CanPreventDisableWhenNoPlayersInRange canPreventDisable) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) canPreventDisable.CanDisable = new ModifiableBool(false); }); } private static void RemoveConvertable(Entity familiar) { //IL_0000: 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_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { familiar.Remove(); } if (familiar.Has()) { familiar.Remove(); } } private static void HandleBloodSource(Entity familiar, int level) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { ModifyBloodSource(familiar, level); } } private static void ModifyCollision(Entity familiar) { //IL_0000: 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) if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref DynamicCollision dynamicCollision) { dynamicCollision.AgainstPlayers.RadiusOverride = -1f; dynamicCollision.AgainstPlayers.HardnessThreshold._Value = 0.1f; dynamicCollision.AgainstPlayers.PushStrengthMax._Value = 0f; dynamicCollision.AgainstPlayers.PushStrengthMin._Value = 0f; }); } } public static void RemoveDropTable(Entity familiar) { //IL_0000: 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) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { DynamicBuffer val = familiar.ReadBuffer(); for (int i = 0; i < val.Length; i++) { DropTableBuffer val2 = val[i]; val2.DropTableGuid = PrefabGUID.Empty; val2.DropTrigger = (DropTriggerType)3; val2.RelicType = (RelicType)0; val[i] = val2; } } } private static void ModifyAggro(Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) familiar.With((VExtensions.WithRefHandler)delegate(ref AlertModifiers alertModifiers) { alertModifiers.CircleRadiusFactor._Value = 0f; alertModifiers.ConeRadiusFactor._Value = 0f; }); familiar.With((VExtensions.WithRefHandler)delegate(ref AggroModifiers aggroModifiers) { aggroModifiers.CircleRadiusFactor._Value = 0f; aggroModifiers.ConeRadiusFactor._Value = 0f; }); familiar.With((VExtensions.WithRefHandler)delegate(ref GainAggroByVicinity gainAggroByVicinity) { gainAggroByVicinity.Value.AggroValue = 0f; }); familiar.With((VExtensions.WithRefHandler)delegate(ref GainAlertByVicinity gainAlertByVicinity) { gainAlertByVicinity.Value.AggroValue = 0f; }); } private static void RemoveMisc(Entity familiar, PrefabGUID familiarId) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0109: 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_0169: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) if (familiar.Has()) { DynamicBuffer val = familiar.ReadBuffer(); for (int i = 0; i < val.Length; i++) { SpawnPrefabOnGameplayEvent val2 = val[i]; if (((PrefabGUID)(ref val2.SpawnPrefab)).Equals(_monsterFakePos)) { SpawnPrefabOnGameplayEvent val3 = val[i]; val3.SpawnPrefab = PrefabGUID.Empty; val[i] = val3; break; } if (!val[i].SpawnPrefab.GetPrefabName().Contains("pilot", StringComparison.CurrentCultureIgnoreCase)) { continue; } if (!familiar.TryGetBuffer(out DynamicBuffer dynamicBuffer)) { break; } Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { MinionBuffer current = enumerator.Current; if (current.Entity.Exists()) { current.Entity.Destroy(); } } break; } } if (((PrefabGUID)(ref familiarId)).Equals(_charDivineAngel) && familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref Script_ApplyBuffUnderHealthThreshold_DataServer script_ApplyBuffUnderHealthThreshold_DataServer) { //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) script_ApplyBuffUnderHealthThreshold_DataServer.NewBuffEntity = PrefabGUID.Empty; }); } if (((PrefabGUID)(ref familiarId)).Equals(_charWerewolfChieftainVBlood) && familiar.TryGetBuffer(out DynamicBuffer dynamicBuffer2)) { for (int num = dynamicBuffer2.Length - 1; num >= 0; num--) { AbilityGroupSlotBuffer val4 = dynamicBuffer2[num]; if (((PrefabGUID)(ref val4.BaseAbilityGroupOnSlot)).Equals(_openTheCages)) { ((NetworkedEntity)(ref val4.GroupSlotEntity)).GetEntityOnServer().Destroy(); break; } } } if (familiar.Has()) { familiar.Remove(); } } private static void HandleShiny(User user, ulong steamId, Entity familiar, PrefabGUID familiarId, bool battle = false) { //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) if (battle && Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ShinyFamiliars")) { int guidHash = ((PrefabGUID)(ref familiarId)).GuidHash; DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData familiarBuffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(steamId); if (familiarBuffsData.FamiliarBuffs.ContainsKey(guidHash)) { PrefabGUID buffPrefabGuid = default(PrefabGUID); ((PrefabGUID)(ref buffPrefabGuid))..ctor(familiarBuffsData.FamiliarBuffs[guidHash].First()); Buffs.HandleShinyBuff(familiar, buffPrefabGuid); } } else { if (!Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ShinyFamiliars")) { return; } string value = ""; bool flag = false; if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ShinyFamiliars")) { int guidHash2 = ((PrefabGUID)(ref familiarId)).GuidHash; DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData familiarBuffsData2 = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(steamId); if (familiarBuffsData2.FamiliarBuffs.ContainsKey(guidHash2)) { PrefabGUID buffPrefabGuid2 = default(PrefabGUID); ((PrefabGUID)(ref buffPrefabGuid2))..ctor(familiarBuffsData2.FamiliarBuffs[guidHash2].First()); HandleResistanceBuffForShiny(familiar); Buffs.HandleShinyBuff(familiar, buffPrefabGuid2); if (FamiliarUnlockSystem.ShinyBuffColorHexes.TryGetValue(new PrefabGUID(familiarBuffsData2.FamiliarBuffs[guidHash2].First()), out var value2)) { value = ""; } flag = true; } } string message = (flag ? $"{familiarId.GetLocalizedName()}{value}* bound!" : ("" + familiarId.GetLocalizedName() + " bound!")); LocalizationService.HandleServerReply(EntityManager, user, message); } } private static void HandleResistanceBuffForShiny(Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) string prefabName = familiar.GetPrefabGuid().GetPrefabName(); if ((prefabName.Contains("golem", StringComparison.CurrentCultureIgnoreCase) || prefabName.Contains("elemental", StringComparison.CurrentCultureIgnoreCase) || prefabName.Contains("spidertank", StringComparison.CurrentCultureIgnoreCase)) && familiar.TryGetComponent(out BuffResistances componentData) && componentData.SettingsEntity._Value.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { BuffResistanceElement val = dynamicBuffer[0]; val.BuffCategory = 536871313L; dynamicBuffer[0] = val; } } private static void HandleMapIcon(Entity playerCharacter, Entity familiar) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: 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_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; Entity entity = default(Entity); if (!((ServerGameManager)(ref serverGameManager)).TryInstantiateBuffEntityImmediate(playerCharacter, familiar, _mapIconBuff, ref entity, (OnSpawnedDelegate)null, 1)) { return; } DynamicBuffer val = entity.ReadBuffer(); AttachMapIconsToEntity val2 = val[0]; val2.Prefab = _mapIconAlliedPlayer; val[0] = val2; if (!entity.TryGetAttached(out var attached) || !attached.Exists() || ((Entity)(ref attached)).Equals(playerCharacter)) { entity.Remove(); entity.Write(new Attach(familiar)); } Entity buffTarget = entity.GetBuffTarget(); if (!((Entity)(ref buffTarget)).Equals(familiar)) { entity.With((VExtensions.WithRefHandler)delegate(ref Buff buff) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) buff.Target = familiar; }); } } private static void HandleMountedUnit(Entity playerCharacter, Entity familiar, bool battle = false) { //IL_0000: 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) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) if (familiar.IsMounter()) { CreateGameplayEventServerUtility.GetUnitMountEntity(EntityManager, familiar); } } private static Entity HandleFamiliarServant(Entity playerCharacter, Entity familiar) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: 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_0107: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01ca: Unknown result type (might be due to invalid IL or missing references) ServerGameManager serverGameManager = ServerGameManager; Entity servant = ((ServerGameManager)(ref serverGameManager)).InstantiateEntityImmediate(familiar, _charVampireCultistServant); serverGameManager = ServerGameManager; Entity coffin = ((ServerGameManager)(ref serverGameManager)).InstantiateEntityImmediate(playerCharacter, _servantCoffin); if (servant.Exists() && coffin.Exists()) { float3 position = familiar.GetPosition(); coffin.SetPosition(new float3(position.x, position.y - 100f, position.z)); servant.With((VExtensions.WithRefHandler)delegate(ref ServantConnectedCoffin connectedCoffin) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) connectedCoffin.CoffinEntity = NetworkedEntity.ServerEntity(coffin); }); coffin.With((VExtensions.WithRefHandler)delegate(ref ServantCoffinstation coffinStation) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) coffinStation.ConnectedServant = NetworkedEntity.ServerEntity(servant); coffinStation.ServantName = FixedString64Bytes.op_Implicit(familiar.GetPrefabGuid().GetLocalizedName()); coffinStation.State = (ServantCoffinState)7; }); servant.AddWith((VExtensions.WithRefHandler)delegate(ref GetTranslationOnUpdate updateTranslation) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) updateTranslation.Source = (GetTranslationSource)1; }); coffin.Remove(); coffin.Remove(); servant.With((VExtensions.WithRefHandler)delegate(ref DynamicCollision dynamicCollision) { dynamicCollision.AgainstPlayers.HardnessThreshold._Value = 0f; dynamicCollision.AgainstPlayers.PushStrengthMax._Value = 0f; dynamicCollision.AgainstPlayers.PushStrengthMin._Value = 0f; dynamicCollision.AgainstPlayers.RadiusOverride = 0f; dynamicCollision.AgainstPlayers.RadiusVariation = 0f; dynamicCollision.AgainstUnits.HardnessThreshold._Value = 0f; dynamicCollision.AgainstUnits.PushStrengthMax._Value = 0f; dynamicCollision.AgainstUnits.PushStrengthMin._Value = 0f; dynamicCollision.AgainstUnits.RadiusOverride = 0f; dynamicCollision.AgainstUnits.RadiusVariation = 0f; dynamicCollision.Immobile = true; }); if (servant.TryApplyAndGetBuff(_invisibleAndImmaterialBuff, out var buffEntity)) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); } servant.With((VExtensions.WithRefHandler)delegate(ref Interactable interactable) { interactable.Disabled = true; }); servant.With((VExtensions.WithRefHandler)delegate(ref AiMoveSpeeds aiMoveSpeeds) { aiMoveSpeeds.Circle._Value = 0f; aiMoveSpeeds.Walk._Value = 0f; aiMoveSpeeds.Run._Value = 0f; aiMoveSpeeds.Return._Value = 0f; }); if (EquipmentOnly) { InventoryUtilitiesServer.InstantiateInventory(EntityManager, servant, 0); } servant.Add(); servant.Remove(); RemoveDropTable(servant); servant.AddWith((VExtensions.WithRefHandler)delegate(ref Follower follower) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) follower.Followed._Value = familiar; follower.ModeModifiable._Value = 0; follower.Stationary._Value = true; }); DisableFamiliarServantRoutine(servant, coffin).Run(); return servant; } return Entity.Null; } private static IEnumerator DisableFamiliarServantRoutine(Entity servant, Entity coffin) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) yield return _delay; servant.Add(); } private static IEnumerator EquipFamiliarAndApplyStatsRoutine(ulong steamId, Entity servant, Entity familiar, int guidHash) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) yield return _delay; DataService.FamiliarPersistence.FamiliarEquipmentManager.EquipFamiliar(steamId, guidHash, servant, familiar); Buffs.RefreshStats(familiar); } } internal static class FamiliarLevelingSystem { private static readonly bool _familiarPrestige = ConfigService.FamiliarPrestige; private static readonly float _unitFamiliarMultiplier = ConfigService.UnitFamiliarMultiplier; private static readonly float _vBloodFamiliarMultiplier = ConfigService.VBloodFamiliarMultiplier; private static readonly float _unitSpawnerMultiplier = ConfigService.UnitSpawnerMultiplier; private static readonly float _levelingPrestigeReducer = ConfigService.LevelingPrestigeReducer; private static readonly int _maxFamiliarLevel = ConfigService.MaxFamiliarLevel; private static readonly PrefabGUID _levelUpBuff = new PrefabGUID(-1133938228); private static readonly WaitForSeconds _delay = new WaitForSeconds(0.75f); private static readonly float3 _gold = new float3(1f, 0.75f, 0f); private static readonly AssetGuid _experienceAssetGuid = AssetGuid.FromString("4210316d-23d4-4274-96f5-d6f0944bd0bb"); private static readonly PrefabGUID _sctResourceGain = new PrefabGUID(1876501183); private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => SystemService.EndSimulationEntityCommandBufferSystem; public static void OnUpdate(object sender, DeathEventListenerSystemPatch.DeathEventArgs deathEvent) { //IL_0010: 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_001d: Unknown result type (might be due to invalid IL or missing references) foreach (Entity deathParticipant in deathEvent.DeathParticipants) { ProcessFamiliarExperience(steamId: deathParticipant.GetSteamId(), source: deathParticipant, target: deathEvent.Target, groupMultiplier: 1f); } } public static void ProcessFamiliarExperience(Entity source, Entity target, ulong steamId, float groupMultiplier) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) Entity activeFamiliar = Bloodcraft.Utilities.Familiars.GetActiveFamiliar(source); if (activeFamiliar.EligibleForCombat()) { PrefabGUID val = activeFamiliar.Read(); ProcessExperienceGain(source, activeFamiliar, target, steamId, ((PrefabGUID)(ref val)).GuidHash, groupMultiplier); } } private static void ProcessExperienceGain(Entity player, Entity familiar, Entity target, ulong steamId, int famKey, float groupMultiplier) { //IL_0000: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) int unitLevel = target.GetUnitLevel(); bool isVBlood = target.IsVBlood(); float num = CalculateExperienceGained(unitLevel, isVBlood); num *= groupMultiplier; if (_unitSpawnerMultiplier < 1f && target.TryGetComponent(out IsMinion componentData) && componentData.Value) { num *= _unitSpawnerMultiplier; if (num <= 0f) { return; } } if (_familiarPrestige && DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(steamId).FamiliarPrestige.TryGetValue(famKey, out var value) && value > 0) { int num2 = value; float num3 = 1f - _levelingPrestigeReducer * (float)num2; num *= num3; } KeyValuePair familiarExperience = GetFamiliarExperience(steamId, famKey); if (familiarExperience.Key < _maxFamiliarLevel) { int currentLevel = Progression.ConvertXpToLevel(familiarExperience.Value); UpdateFamiliarExperience(player, familiar, famKey, steamId, familiarExperience, num, currentLevel); } } private static float CalculateExperienceGained(int victimLevel, bool isVBlood) { if (isVBlood) { return (float)victimLevel * _vBloodFamiliarMultiplier; } return (float)victimLevel * _unitFamiliarMultiplier; } public static void UpdateFamiliarExperience(Entity player, Entity familiar, int famKey, ulong steamId, KeyValuePair familiarXP, float gainedXP, int currentLevel) { //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(steamId); familiarExperienceData.FamiliarExperience[famKey] = new KeyValuePair(familiarXP.Key, familiarXP.Value + gainedXP); DataService.FamiliarPersistence.FamiliarExperienceManager.SaveFamiliarExperienceData(steamId, familiarExperienceData); CheckAndHandleLevelUp(player, familiar, famKey, steamId, familiarExperienceData.FamiliarExperience[famKey], currentLevel, gainedXP); } public static KeyValuePair GetFamiliarExperience(ulong steamId, int famKey) { if (DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(steamId).FamiliarExperience.TryGetValue(famKey, out var value)) { return value; } return new KeyValuePair(1, Progression.ConvertLevelToXp(1)); } public static void CheckAndHandleLevelUp(Entity player, Entity familiar, int famKey, ulong steamId, KeyValuePair familiarXP, int currentLevel, float gainedXP) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) Entity userEntity = player.GetUserEntity(); bool flag = false; int newLevel = Progression.ConvertXpToLevel(familiarXP.Value); if (newLevel > _maxFamiliarLevel || gainedXP <= 0f) { return; } if (newLevel > currentLevel) { flag = true; DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(steamId); familiarExperienceData.FamiliarExperience[famKey] = new KeyValuePair(newLevel, familiarXP.Value); DataService.FamiliarPersistence.FamiliarExperienceManager.SaveFamiliarExperienceData(steamId, familiarExperienceData); } if (flag) { familiar.TryApplyBuff(_levelUpBuff); familiar.With((VExtensions.WithRefHandler)delegate(ref UnitLevel unitLevel) { unitLevel.Level._Value = newLevel; }); FamiliarBindingSystem.ModifyUnitStats(familiar, newLevel, steamId, famKey); if (familiar.Has()) { FamiliarBindingSystem.ModifyBloodSource(familiar, newLevel); } Buffs.RefreshStats(familiar); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "FamiliarExperienceSCT")) { FamiliarExperienceSCTDelayRoutine(player, userEntity, familiar, _gold, gainedXP).Run(); } } private static IEnumerator FamiliarExperienceSCTDelayRoutine(Entity character, Entity userEntity, Entity familiar, float3 color, float gainedXP) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) yield return _delay; ScrollingCombatTextMessage.Create(EntityManager, ((EntityCommandBufferSystem)EndSimulationEntityCommandBufferSystem).CreateCommandBuffer(), _experienceAssetGuid, familiar.GetPosition(), color, character, gainedXP, _sctResourceGain, userEntity); } private static float GetXp(ulong steamID, int familiarId) { return GetFamiliarExperience(steamID, familiarId).Value; } private static int GetLevel(ulong SteamID, int familiarId) { return Progression.ConvertXpToLevel(GetXp(SteamID, familiarId)); } public static int GetLevelProgress(ulong SteamID, int famKey) { float xp = GetXp(SteamID, famKey); int num = Progression.ConvertLevelToXp(GetLevel(SteamID, famKey)); int num2 = Progression.ConvertLevelToXp(GetLevel(SteamID, famKey) + 1); double num3 = num2 - num; double num4 = (float)num2 - xp; return 100 - (int)Math.Ceiling(num4 / num3 * 100.0); } } internal static class FamiliarUnlockSystem { private static readonly Random _random = new Random(); private static readonly float _unitUnlockChance = ConfigService.UnitUnlockChance; private static readonly float _vBloodUnlockChance = ConfigService.VBloodUnlockChance; private static readonly float _shinyChance = ConfigService.ShinyChance; private static readonly bool _shareUnlocks = ConfigService.ShareUnlocks; private static readonly bool _allowVBloods = ConfigService.AllowVBloods; private static readonly SequenceGUID _unlockSequence = SequenceGUIDs.SEQ_Shared_Object_Destroy_1; private static readonly SequenceGUID _shinySequence = SequenceGUIDs.SEQ_Interact_PickupItem_InventoryFull_01_6; public static readonly HashSet ConfiguredPrefabGuidBans = new HashSet(); public static readonly HashSet ConfiguredCategoryBans = new HashSet(); private static readonly HashSet _defaultNameBans = new HashSet { "trader", "carriage", "horse", "tombsummon", "servant" }; private static readonly HashSet _defaultPrefabGuidBans = new HashSet { PrefabGUIDs.CHAR_Undead_ArenaChampion_VBlood, PrefabGUIDs.CHAR_Militia_Fabian_VBlood, PrefabGUIDs.CHAR_GoldGolem }; public static readonly Dictionary ShinyBuffColorHexes = new Dictionary { { new PrefabGUID(348724578), "#A020F0" }, { new PrefabGUID(-1576512627), "#FFD700" }, { new PrefabGUID(-1246704569), "#FF0000" }, { new PrefabGUID(1723455773), "#008080" }, { new PrefabGUID(27300215), "#00FFFF" }, { new PrefabGUID(-325758519), "#00FF00" } }; public static readonly Dictionary ShinyBuffSpellSchools = new Dictionary { { new PrefabGUID(348724578), "Chaos" }, { new PrefabGUID(-1576512627), "Storm" }, { new PrefabGUID(-1246704569), "Blood" }, { new PrefabGUID(1723455773), "Illusion" }, { new PrefabGUID(27300215), "Frost" }, { new PrefabGUID(-325758519), "Unholy" } }; private static EntityManager EntityManager => Core.EntityManager; public static void OnUpdate(object sender, DeathEventListenerSystemPatch.DeathEventArgs deathEvent) { //IL_0008: 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_0021: Unknown result type (might be due to invalid IL or missing references) if (!_shareUnlocks) { ProcessUnlock(deathEvent.Source, deathEvent.Target); } else if (_shareUnlocks) { HandleGroupUnlock(deathEvent.Target, deathEvent.DeathParticipants); } } public static void ProcessUnlock(Entity source, Entity target) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Invalid comparison between Unknown and I4 //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) if (!target.TryGetComponent(out PrefabGUID componentData) || !target.TryGetComponent(out EntityCategory componentData2)) { return; } string prefabName = componentData.GetPrefabName(); bool flag = target.IsVBloodOrGateBoss(); if (ValidTarget(prefabName, componentData, componentData2)) { if (!flag && (int)((EntityCategory)(ref componentData2)).UnitCategory < 5) { HandleRoll(_unitUnlockChance, componentData, source, target); } else if (_allowVBloods && flag) { HandleRoll(_vBloodUnlockChance, componentData, source, target); } } } public static void HandleGroupUnlock(Entity target, HashSet deathParticipants) { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) foreach (Entity deathParticipant in deathParticipants) { ProcessUnlock(deathParticipant, target); } } private static bool ValidTarget(string targetPrefabName, PrefabGUID targetPrefabGuid, EntityCategory targetCategory) { //IL_0025: 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) if (_defaultNameBans.Any((string part) => targetPrefabName.Contains(part, StringComparison.CurrentCultureIgnoreCase)) || IsBannedPrefabGuid(targetPrefabGuid) || BannedCategory(targetCategory)) { return false; } return true; } public static bool IsBannedPrefabGuid(PrefabGUID prefabGuid) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) if (!ConfiguredPrefabGuidBans.Contains(prefabGuid)) { return _defaultPrefabGuidBans.Contains(prefabGuid); } return true; } private static bool BannedCategory(EntityCategory category) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) return ConfiguredCategoryBans.Contains(((EntityCategory)(ref category)).UnitCategory); } private static void HandleRoll(float dropChance, PrefabGUID targetPrefabGuid, Entity playerCharacter, Entity target) { //IL_0008: 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) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (Misc.RollForChance(dropChance)) { HandleUnlock(targetPrefabGuid, playerCharacter, target); } } private static void HandleUnlock(PrefabGUID targetPrefabGuid, Entity playerCharacter, Entity target) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) User user = playerCharacter.GetUser(); ulong platformId = user.PlatformId; int guidHash = ((PrefabGUID)(ref targetPrefabGuid)).GuidHash; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); string text = familiarUnlocksData.FamiliarUnlocks.Keys.LastOrDefault(); if (string.IsNullOrEmpty(text) || familiarUnlocksData.FamiliarUnlocks[text].Count >= 10) { text = $"box{familiarUnlocksData.FamiliarUnlocks.Count + 1}"; familiarUnlocksData.FamiliarUnlocks[text] = new List(); if (platformId.TryGetFamiliarBox(out var familiarSet) && string.IsNullOrEmpty(familiarSet)) { platformId.SetFamiliarBox(text); } } bool flag = false; bool flag2 = false; foreach (List value in familiarUnlocksData.FamiliarUnlocks.Values) { if (value.Contains(guidHash)) { flag = true; if (_shinyChance > 0f) { flag2 = HandleShiny(guidHash, platformId, 1f); } break; } } if (!flag) { familiarUnlocksData.FamiliarUnlocks[text].Add(guidHash); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(platformId); familiarExperienceData.FamiliarExperience[guidHash] = new KeyValuePair(1, Progression.ConvertLevelToXp(1)); DataService.FamiliarPersistence.FamiliarExperienceManager.SaveFamiliarExperienceData(platformId, familiarExperienceData); flag2 = HandleShiny(guidHash, platformId, _shinyChance); playerCharacter.PlaySequence(_unlockSequence); if (!flag2) { LocalizationService.HandleServerReply(EntityManager, user, "New unit unlocked: " + targetPrefabGuid.GetLocalizedName() + ""); } else if (flag2) { playerCharacter.PlaySequence(_shinySequence); LocalizationService.HandleServerReply(EntityManager, user, "New shiny unit unlocked: " + targetPrefabGuid.GetLocalizedName() + ""); } } else if (flag2) { playerCharacter.PlaySequence(_shinySequence); LocalizationService.HandleServerReply(EntityManager, user, "Shiny unlocked: " + targetPrefabGuid.GetLocalizedName() + ""); } } public static bool HandleShiny(int famKey, ulong steamId, float chance, int choice = -1) { //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData familiarBuffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(steamId); PrefabGUID key; if (chance < 1f && Misc.RollForChance(chance)) { if (!familiarBuffsData.FamiliarBuffs.ContainsKey(famKey)) { List list = new List(); key = ShinyBuffColorHexes.ElementAt(_random.Next(ShinyBuffColorHexes.Count)).Key; list.Add(((PrefabGUID)(ref key)).GuidHash); familiarBuffsData.FamiliarBuffs[famKey] = list; } else if (familiarBuffsData.FamiliarBuffs.ContainsKey(famKey)) { return false; } DataService.FamiliarPersistence.FamiliarBuffsManager.SaveFamiliarBuffsData(steamId, familiarBuffsData); return true; } if (chance >= 1f && choice == -1) { if (!familiarBuffsData.FamiliarBuffs.ContainsKey(famKey)) { List list2 = new List(); key = ShinyBuffColorHexes.ElementAt(_random.Next(ShinyBuffColorHexes.Count)).Key; list2.Add(((PrefabGUID)(ref key)).GuidHash); familiarBuffsData.FamiliarBuffs[famKey] = list2; } else if (familiarBuffsData.FamiliarBuffs.ContainsKey(famKey)) { return false; } DataService.FamiliarPersistence.FamiliarBuffsManager.SaveFamiliarBuffsData(steamId, familiarBuffsData); return true; } if (chance >= 1f && choice != -1) { if (!familiarBuffsData.FamiliarBuffs.ContainsKey(famKey)) { List list3 = new List(); list3.Add(choice); familiarBuffsData.FamiliarBuffs[famKey] = list3; } else if (familiarBuffsData.FamiliarBuffs.ContainsKey(famKey)) { familiarBuffsData.FamiliarBuffs[famKey][0] = choice; } DataService.FamiliarPersistence.FamiliarBuffsManager.SaveFamiliarBuffsData(steamId, familiarBuffsData); return true; } return false; } } } namespace Bloodcraft.Systems.Expertise { internal static class WeaponManager { public static class WeaponStats { public enum WeaponStatType { MaxHealth, MovementSpeed, PrimaryAttackSpeed, PhysicalLifeLeech, SpellLifeLeech, PrimaryLifeLeech, PhysicalPower, SpellPower, PhysicalCritChance, PhysicalCritDamage, SpellCritChance, SpellCritDamage } private static readonly Dictionary _weaponStatFormats = new Dictionary { { WeaponStatType.MaxHealth, "integer" }, { WeaponStatType.MovementSpeed, "decimal" }, { WeaponStatType.PrimaryAttackSpeed, "percentage" }, { WeaponStatType.PhysicalLifeLeech, "percentage" }, { WeaponStatType.SpellLifeLeech, "percentage" }, { WeaponStatType.PrimaryLifeLeech, "percentage" }, { WeaponStatType.PhysicalPower, "integer" }, { WeaponStatType.SpellPower, "integer" }, { WeaponStatType.PhysicalCritChance, "percentage" }, { WeaponStatType.PhysicalCritDamage, "percentage" }, { WeaponStatType.SpellCritChance, "percentage" }, { WeaponStatType.SpellCritDamage, "percentage" } }; private static readonly Dictionary _weaponStatTypes = new Dictionary { { WeaponStatType.MaxHealth, (UnitStatType)4 }, { WeaponStatType.MovementSpeed, (UnitStatType)5 }, { WeaponStatType.PrimaryAttackSpeed, (UnitStatType)59 }, { WeaponStatType.PhysicalLifeLeech, (UnitStatType)27 }, { WeaponStatType.SpellLifeLeech, (UnitStatType)28 }, { WeaponStatType.PrimaryLifeLeech, (UnitStatType)61 }, { WeaponStatType.PhysicalPower, (UnitStatType)0 }, { WeaponStatType.SpellPower, (UnitStatType)25 }, { WeaponStatType.PhysicalCritChance, (UnitStatType)29 }, { WeaponStatType.PhysicalCritDamage, (UnitStatType)30 }, { WeaponStatType.SpellCritChance, (UnitStatType)31 }, { WeaponStatType.SpellCritDamage, (UnitStatType)32 } }; private static readonly Dictionary _weaponStatBaseCaps = new Dictionary { { WeaponStatType.MaxHealth, ConfigService.MaxHealth }, { WeaponStatType.MovementSpeed, ConfigService.MovementSpeed }, { WeaponStatType.PrimaryAttackSpeed, ConfigService.PrimaryAttackSpeed }, { WeaponStatType.PhysicalLifeLeech, ConfigService.PhysicalLifeLeech }, { WeaponStatType.SpellLifeLeech, ConfigService.SpellLifeLeech }, { WeaponStatType.PrimaryLifeLeech, ConfigService.PrimaryLifeLeech }, { WeaponStatType.PhysicalPower, ConfigService.PhysicalPower }, { WeaponStatType.SpellPower, ConfigService.SpellPower }, { WeaponStatType.PhysicalCritChance, ConfigService.PhysicalCritChance }, { WeaponStatType.PhysicalCritDamage, ConfigService.PhysicalCritDamage }, { WeaponStatType.SpellCritChance, ConfigService.SpellCritChance }, { WeaponStatType.SpellCritDamage, ConfigService.SpellCritDamage } }; public static IReadOnlyDictionary WeaponStatFormats => _weaponStatFormats; public static IReadOnlyDictionary WeaponStatTypes => _weaponStatTypes; public static IReadOnlyDictionary WeaponStatBaseCaps => _weaponStatBaseCaps; } private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _prestige = ConfigService.PrestigeSystem; private static readonly float _synergyMultiplier = ConfigService.SynergyMultiplier; private static readonly float _prestigeStatMultiplier = ConfigService.PrestigeStatMultiplier; private static readonly int _maxExpertiseLevel = ConfigService.MaxExpertiseLevel; private static readonly int _expertiseStatChoices = ConfigService.ExpertiseStatChoices; private static EntityManager EntityManager => Core.EntityManager; public static bool ChooseStat(ulong steamId, WeaponType weaponType, WeaponStats.WeaponStatType weaponStatType) { if (steamId.TryGetPlayerWeaponStats(out var weaponStats) && weaponStats.TryGetValue(weaponType, out var value)) { if (value.Count >= _expertiseStatChoices || value.Contains(weaponStatType)) { return false; } value.Add(weaponStatType); steamId.SetPlayerWeaponStats(weaponStats); return true; } return false; } public static void ResetStats(ulong steamId, WeaponType weaponType) { if (steamId.TryGetPlayerWeaponStats(out var weaponStats) && weaponStats.TryGetValue(weaponType, out var value)) { value.Clear(); steamId.SetPlayerWeaponStats(weaponStats); } } public static void UpdateWeaponStats(Entity buffEntity, Entity playerCharacter, ulong steamId) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) WeaponType currentWeaponType = GetCurrentWeaponType(playerCharacter); ApplyWeaponStats(buffEntity, playerCharacter, steamId, currentWeaponType); } public static void ApplyWeaponStats(Entity buffEntity, Entity playerCharacter, ulong steamId, WeaponType weaponType) { //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) IWeaponExpertise expertise = WeaponExpertiseFactory.GetExpertise(weaponType); if (!steamId.TryGetPlayerWeaponStats(out var weaponStats) || !weaponStats.TryGetValue(weaponType, out var value)) { return; } if (!buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer)) { EntityManager entityManager = EntityManager; dynamicBuffer = ((EntityManager)(ref entityManager)).AddBuffer(buffEntity); } foreach (WeaponStats.WeaponStatType item in value) { if (TryGetScaledModifyUnitExpertiseStat(expertise, playerCharacter, steamId, weaponType, item, out var statValue, out var modifyUnitStatBuff)) { ModifyUnitStatBuff_DOTS val = default(ModifyUnitStatBuff_DOTS); val.StatType = modifyUnitStatBuff.TargetUnitStat; val.ModificationType = modifyUnitStatBuff.ModificationType; val.AttributeCapType = modifyUnitStatBuff.AttributeCapType; val.SoftCapValue = 0f; val.Value = statValue; val.Modifier = 1f; val.IncreaseByStacks = false; val.ValueByStacks = 0f; val.Priority = 0; ModificationIDs val2 = ModificationIDs.Create(); val.Id = ((ModificationIDs)(ref val2)).NewModificationId(); ModifyUnitStatBuff_DOTS val3 = val; dynamicBuffer.Add(val3); } } } public static bool TryGetScaledModifyUnitExpertiseStat(IWeaponExpertise handler, Entity playerCharacter, ulong steamId, WeaponType weaponType, WeaponStats.WeaponStatType weaponStatType, out float statValue, out Progression.ModifyUnitStatBuffSettings.ModifyUnitStatBuff modifyUnitStatBuff) { modifyUnitStatBuff = null; statValue = 0f; if (handler != null) { if (!Progression.ModifyUnitStatBuffSettings.ModifyUnitExpertiseStatBuffs.TryGetValue(weaponStatType, out modifyUnitStatBuff)) { return false; } KeyValuePair expertiseData = handler.GetExpertiseData(steamId); float num = modifyUnitStatBuff.BaseCap; if (_classes && steamId.HasClass(out var playerClass) && playerClass.HasValue && ClassManager.ClassWeaponStatSynergies[playerClass.Value].Contains(weaponStatType)) { num *= _synergyMultiplier; } if (_prestige && steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(WeaponSystem.WeaponPrestigeTypes[weaponType], out var value)) { float num2 = 1f + _prestigeStatMultiplier * (float)value; num *= num2; } statValue = num * ((float)expertiseData.Key / (float)_maxExpertiseLevel); return true; } return false; } public static WeaponType GetCurrentWeaponType(Entity character) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) return WeaponSystem.GetWeaponTypeFromWeaponEntity(character.Read().WeaponSlot.SlotEntity._Entity); } } internal static class WeaponSystem { private static readonly int _maxExpertiseLevel = ConfigService.MaxExpertiseLevel; private static readonly int _expertiseStatChoices = ConfigService.ExpertiseStatChoices; private static readonly float _unitExpertiseMultiplier = ConfigService.UnitExpertiseMultiplier; private static readonly float _vBloodExpertiseMultiplier = ConfigService.VBloodExpertiseMultiplier; private static readonly float _prestigeRatesReducer = ConfigService.PrestigeRatesReducer; private static readonly float _prestigeRateMultiplier = ConfigService.PrestigeRateMultiplier; private static readonly float _unitSpawnerExpertiseFactor = ConfigService.UnitSpawnerExpertiseFactor; private static readonly WaitForSeconds _delay = new WaitForSeconds(1f); private const float DELAY_ADD = 1.25f; private static readonly float3 _grey = new float3(0.75f, 0.75f, 0.75f); private static readonly AssetGuid _experienceAssetGuid = AssetGuid.FromString("4210316d-23d4-4274-96f5-d6f0944bd0bb"); private static readonly PrefabGUID _sctGeneric = new PrefabGUID(-1687715009); public static readonly Dictionary Data)>> TryGetExtensionMap = new Dictionary)>> { { WeaponType.Sword, (ulong steamID) => steamID.TryGetPlayerSwordExpertise(out var expertise16) ? (true, expertise16) : (false, default(KeyValuePair)) }, { WeaponType.Axe, (ulong steamID) => steamID.TryGetPlayerAxeExpertise(out var expertise15) ? (true, expertise15) : (false, default(KeyValuePair)) }, { WeaponType.Mace, (ulong steamID) => steamID.TryGetPlayerMaceExpertise(out var expertise14) ? (true, expertise14) : (false, default(KeyValuePair)) }, { WeaponType.Spear, (ulong steamID) => steamID.TryGetPlayerSpearExpertise(out var expertise13) ? (true, expertise13) : (false, default(KeyValuePair)) }, { WeaponType.Crossbow, (ulong steamID) => steamID.TryGetPlayerCrossbowExpertise(out var expertise12) ? (true, expertise12) : (false, default(KeyValuePair)) }, { WeaponType.GreatSword, (ulong steamID) => steamID.TryGetPlayerGreatSwordExpertise(out var expertise11) ? (true, expertise11) : (false, default(KeyValuePair)) }, { WeaponType.Slashers, (ulong steamID) => steamID.TryGetPlayerSlashersExpertise(out var expertise10) ? (true, expertise10) : (false, default(KeyValuePair)) }, { WeaponType.Pistols, (ulong steamID) => steamID.TryGetPlayerPistolsExpertise(out var expertise9) ? (true, expertise9) : (false, default(KeyValuePair)) }, { WeaponType.Reaper, (ulong steamID) => steamID.TryGetPlayerReaperExpertise(out var expertise8) ? (true, expertise8) : (false, default(KeyValuePair)) }, { WeaponType.Longbow, (ulong steamID) => steamID.TryGetPlayerLongbowExpertise(out var expertise7) ? (true, expertise7) : (false, default(KeyValuePair)) }, { WeaponType.Whip, (ulong steamID) => steamID.TryGetPlayerWhipExpertise(out var expertise6) ? (true, expertise6) : (false, default(KeyValuePair)) }, { WeaponType.Unarmed, (ulong steamID) => steamID.TryGetPlayerUnarmedExpertise(out var expertise5) ? (true, expertise5) : (false, default(KeyValuePair)) }, { WeaponType.FishingPole, (ulong steamID) => steamID.TryGetPlayerFishingPoleExpertise(out var expertise4) ? (true, expertise4) : (false, default(KeyValuePair)) }, { WeaponType.TwinBlades, (ulong steamID) => steamID.TryGetPlayerTwinBladesExpertise(out var expertise3) ? (true, expertise3) : (false, default(KeyValuePair)) }, { WeaponType.Daggers, (ulong steamID) => steamID.TryGetPlayerDaggersExpertise(out var expertise2) ? (true, expertise2) : (false, default(KeyValuePair)) }, { WeaponType.Claws, (ulong steamID) => steamID.TryGetPlayerClawsExpertise(out var expertise) ? (true, expertise) : (false, default(KeyValuePair)) } }; public static readonly Dictionary>> SetExtensionMap = new Dictionary>> { { WeaponType.Sword, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerSwordExpertise(data); } }, { WeaponType.Axe, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerAxeExpertise(data); } }, { WeaponType.Mace, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerMaceExpertise(data); } }, { WeaponType.Spear, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerSpearExpertise(data); } }, { WeaponType.Crossbow, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerCrossbowExpertise(data); } }, { WeaponType.GreatSword, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerGreatSwordExpertise(data); } }, { WeaponType.Slashers, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerSlashersExpertise(data); } }, { WeaponType.Pistols, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerPistolsExpertise(data); } }, { WeaponType.Reaper, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerReaperExpertise(data); } }, { WeaponType.Longbow, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerLongbowExpertise(data); } }, { WeaponType.Whip, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerWhipExpertise(data); } }, { WeaponType.Unarmed, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerUnarmedExpertise(data); } }, { WeaponType.FishingPole, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerFishingPoleExpertise(data); } }, { WeaponType.TwinBlades, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerTwinBladesExpertise(data); } }, { WeaponType.Daggers, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerDaggersExpertise(data); } }, { WeaponType.Claws, delegate(ulong steamID, KeyValuePair data) { steamID.SetPlayerClawsExpertise(data); } } }; private static readonly Dictionary _weaponPrestigeTypes = new Dictionary { { WeaponType.Sword, PrestigeType.SwordExpertise }, { WeaponType.Axe, PrestigeType.AxeExpertise }, { WeaponType.Mace, PrestigeType.MaceExpertise }, { WeaponType.Spear, PrestigeType.SpearExpertise }, { WeaponType.Crossbow, PrestigeType.CrossbowExpertise }, { WeaponType.GreatSword, PrestigeType.GreatSwordExpertise }, { WeaponType.Slashers, PrestigeType.SlashersExpertise }, { WeaponType.Pistols, PrestigeType.PistolsExpertise }, { WeaponType.Reaper, PrestigeType.ReaperExpertise }, { WeaponType.Longbow, PrestigeType.LongbowExpertise }, { WeaponType.Whip, PrestigeType.WhipExpertise }, { WeaponType.Unarmed, PrestigeType.UnarmedExpertise }, { WeaponType.FishingPole, PrestigeType.FishingPoleExpertise }, { WeaponType.TwinBlades, PrestigeType.TwinBladesExpertise }, { WeaponType.Daggers, PrestigeType.DaggersExpertise }, { WeaponType.Claws, PrestigeType.ClawsExpertise } }; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => SystemService.EndSimulationEntityCommandBufferSystem; public static IReadOnlyDictionary WeaponPrestigeTypes => _weaponPrestigeTypes; public static void OnUpdate(object sender, DeathEventListenerSystemPatch.DeathEventArgs deathEvent) { ProcessExpertise(deathEvent); } public static void ProcessExpertise(DeathEventListenerSystemPatch.DeathEventArgs deathEvent, float groupMultiplier = 1f) { //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_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0025: 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_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: 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) Entity source = deathEvent.Source; Entity target = deathEvent.Target; if (target.Has()) { return; } Entity userEntity = source.GetUserEntity(); User user = userEntity.GetUser(); ulong platformId = user.PlatformId; WeaponType currentWeaponType = WeaponManager.GetCurrentWeaponType(source); if (!target.TryGetComponent(out UnitStats componentData)) { return; } float num = CalculateExpertiseValue(componentData, target.Has()); float num2 = 1f; if (_unitSpawnerExpertiseFactor < 1f && target.TryGetComponent(out IsMinion componentData2) && componentData2.Value) { num *= _unitSpawnerExpertiseFactor; if (num == 0f) { return; } } if (platformId.TryGetPlayerPrestiges(out var prestiges)) { if (prestiges.TryGetValue(WeaponPrestigeTypes[currentWeaponType], out var value)) { num2 -= _prestigeRatesReducer * (float)value; } if (prestiges.TryGetValue(PrestigeType.Experience, out var value2)) { num2 += _prestigeRateMultiplier * (float)value2; } } num *= num2 * groupMultiplier; IWeaponExpertise expertise = WeaponExpertiseFactory.GetExpertise(currentWeaponType); if (expertise != null) { SaveExpertiseExperience(platformId, expertise, num, out var leveledUp, out var newLevel); NotifyPlayer(source, userEntity, user, platformId, currentWeaponType, num, leveledUp, newLevel, expertise, deathEvent.ScrollingTextDelay); deathEvent.ScrollingTextDelay += 1.25f; } } private static float CalculateExpertiseValue(UnitStats unitStats, bool isVBlood) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) float num = ModifiableFloat.op_Implicit(unitStats.SpellPower) + ModifiableFloat.op_Implicit(unitStats.PhysicalPower); if (isVBlood) { return num * _vBloodExpertiseMultiplier; } return num * _unitExpertiseMultiplier; } public static void SaveExpertiseExperience(ulong steamId, IWeaponExpertise handler, float gainedXP, out bool leveledUp, out int newLevel) { KeyValuePair expertiseData = handler.GetExpertiseData(steamId); int key = expertiseData.Key; float value = expertiseData.Value; if (key >= _maxExpertiseLevel) { leveledUp = false; newLevel = key; return; } float num = value + gainedXP; newLevel = Progression.ConvertXpToLevel(num); leveledUp = false; if (newLevel > key) { leveledUp = true; if (newLevel > _maxExpertiseLevel) { newLevel = _maxExpertiseLevel; num = Progression.ConvertLevelToXp(_maxExpertiseLevel); } } handler.SetExpertiseData(steamId, new KeyValuePair(newLevel, num)); } public static void NotifyPlayer(Entity playerCharacter, Entity userEntity, User user, ulong steamId, WeaponType weaponType, float gainedXP, bool leveledUp, int newLevel, IWeaponExpertise handler, float delay) { //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) int value = (int)gainedXP; int levelProgress = GetLevelProgress(steamId, handler); if (newLevel < _maxExpertiseLevel && !(gainedXP <= 0f)) { if (leveledUp) { HandleWeaponLevelUp(user, weaponType, newLevel, steamId); Buffs.RefreshStats(playerCharacter); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "WeaponLogging")) { LocalizationService.HandleServerReply(EntityManager, user, $"+{value} {weaponType.ToString().ToLower()} expertise ({levelProgress}%)"); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ExpertiseSCT")) { PlayerExpertiseSCTDelayRoutine(playerCharacter, userEntity, _grey, gainedXP, delay).Run(); } } } private static void HandleWeaponLevelUp(User user, WeaponType weaponType, int newLevel, ulong steamID) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) if (newLevel <= _maxExpertiseLevel) { LocalizationService.HandleServerReply(EntityManager, user, $"{weaponType} improved to [{newLevel}]!"); } if (Misc.PlayerBoolsManager.GetPlayerBool(steamID, "Reminders") && steamID.TryGetPlayerWeaponStats(out var weaponStats) && weaponStats.TryGetValue(weaponType, out var value)) { int count = value.Count; if (count < _expertiseStatChoices) { int num = _expertiseStatChoices - count; string value2 = ((num > 1) ? "bonuses" : "bonus"); LocalizationService.HandleServerReply(EntityManager, user, $"{num} stat {value2} available for {weaponType.ToString().ToLower()}; use '.wep cst {weaponType} [Stat]' to choose and '.wep lst' to view expertise stat options. (toggle reminders with '.misc remindme')"); } } } private static IEnumerator PlayerExpertiseSCTDelayRoutine(Entity playerCharacter, Entity userEntity, float3 color, float gainedXP, float delay) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) yield return (object)new WaitForSeconds(delay); float3 position = playerCharacter.GetPosition(); ScrollingCombatTextMessage.Create(EntityManager, ((EntityCommandBufferSystem)EndSimulationEntityCommandBufferSystem).CreateCommandBuffer(), _experienceAssetGuid, position, color, playerCharacter, gainedXP, _sctGeneric, userEntity); } public static int GetLevelProgress(ulong steamID, IWeaponExpertise handler) { int level = GetLevel(steamID, handler); float xp = GetXp(steamID, handler); int num = Progression.ConvertLevelToXp(level); int num2 = Progression.ConvertLevelToXp(level + 1); double num3 = num2 - num; double num4 = (float)num2 - xp; return 100 - (int)Math.Ceiling(num4 / num3 * 100.0); } private static float GetXp(ulong steamID, IWeaponExpertise handler) { return handler.GetExpertiseData(steamID).Value; } public static int GetLevel(ulong steamID, IWeaponExpertise handler) { return handler.GetExpertiseData(steamID).Key; } public static WeaponType GetWeaponTypeFromWeaponEntity(Entity weaponEntity) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) if (!weaponEntity.HasValue()) { return WeaponType.Unarmed; } string weaponCheck = weaponEntity.GetPrefabGuid().GetPrefabName(); return Enum.GetValues(typeof(WeaponType)).Cast().FirstOrDefault((WeaponType type) => weaponCheck.Contains(type.ToString(), StringComparison.CurrentCultureIgnoreCase) && (type != 0 || !weaponCheck.Contains("GreatSword", StringComparison.CurrentCultureIgnoreCase))); } } } namespace Bloodcraft.Services { internal class BattleService { public static class Matchmaker { public static readonly ConcurrentQueue<(ulong, ulong)> MatchQueue = new ConcurrentQueue<(ulong, ulong)>(); public static readonly HashSet<(ulong, ulong)> MatchPairs = new HashSet<(ulong, ulong)>(); public static readonly HashSet QueuedPlayers = new HashSet(); public static readonly ConcurrentDictionary> QueuedBattleGroups = new ConcurrentDictionary>(); public static void QueueMatch((ulong, ulong) match) { //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Expected O, but got Unknown var (num, num2) = match; if (!_serviceActive) { NotifyBothPlayers(num, num2, "Battle service inactive, arena position hasn't been set!"); } else if (VerifyEligible(num, num2)) { QueuedPlayers.Add(num); QueuedPlayers.Add(num2); (ulong, ulong) item = (num, num2); MatchQueue.Enqueue(item); MatchPairs.Add(item); (int position, TimeSpan timeRemaining) queuePositionAndTime = GetQueuePositionAndTime(num); int item2 = queuePositionAndTime.position; TimeSpan item3 = queuePositionAndTime.timeRemaining; string text = $"Queued successfully! Position in queue: {item2} ({Misc.FormatTimespan(item3)})"; ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(6, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(num); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" & "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(num2); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(text); } log.LogWarning(val); NotifyBothPlayers(num, num2, text); } } public static void HandleMatchCompletion((ulong, ulong) matchPair, ulong winner) { //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) QueuedPlayers.Remove(matchPair.Item1); QueuedPlayers.Remove(matchPair.Item2); MatchPairs.Remove(matchPair); if (FamiliarBindingSystem.PlayerBattleFamiliars.TryRemove(matchPair.Item1, out var value) && FamiliarBindingSystem.PlayerBattleFamiliars.TryRemove(matchPair.Item2, out var value2)) { foreach (Entity item3 in value) { if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(item3)) { Familiars.HandleFamiliarMinions(item3); } if (item3.Exists()) { item3.Destroy(); } } foreach (Entity item4 in value2) { if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(item4)) { Familiars.HandleFamiliarMinions(item4); } if (item4.Exists()) { item4.Destroy(); } } if (matchPair.TryGetMatchPairInfo(out var matchPairInfo)) { PlayerService.PlayerInfo playerInfo = ((winner == matchPairInfo.Item1.User.PlatformId) ? matchPairInfo.Item1 : matchPairInfo.Item2); User user = ((winner == matchPairInfo.Item1.User.PlatformId) ? matchPairInfo.Item2 : matchPairInfo.Item1).User; string value3 = ((FixedString64Bytes)(ref user.CharacterName)).Value; string text = (value3.EndsWith("s", StringComparison.CurrentCultureIgnoreCase) ? (value3 + "’") : (value3 + "’s")); string text2 = "" + text + ""; ulong item = matchPair.Item1; ulong item2 = matchPair.Item2; user = playerInfo.User; NotifyBothPlayers(item, item2, text2 + " familiars have been defeated! Winner: " + ((FixedString64Bytes)(ref user.CharacterName)).Value + ""); } else { Core.Log.LogWarning((object)"Failed to get match pair info during battle completion..."); } } else { Core.Log.LogWarning((object)"Failed to remove one or both players from PlayerBattleFamiliars during match completion..."); } } public static void HandleMatchTimeout((ulong, ulong) matchPair) { //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01a0: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01eb: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) QueuedPlayers.Remove(matchPair.Item1); QueuedPlayers.Remove(matchPair.Item2); MatchPairs.Remove(matchPair); if (FamiliarBindingSystem.PlayerBattleFamiliars.TryRemove(matchPair.Item1, out var value) && FamiliarBindingSystem.PlayerBattleFamiliars.TryRemove(matchPair.Item2, out var value2)) { int count = FamiliarBindingSystem.PlayerBattleFamiliars[matchPair.Item1].Count; int count2 = FamiliarBindingSystem.PlayerBattleFamiliars[matchPair.Item2].Count; ulong num = ((count > count2) ? matchPair.Item1 : ((count2 > count) ? matchPair.Item2 : 0)); if (matchPair.TryGetMatchPairInfo(out var matchPairInfo) && num != 0L) { PlayerService.PlayerInfo playerInfo = ((num == matchPairInfo.Item1.User.PlatformId) ? matchPairInfo.Item1 : matchPairInfo.Item2); User user = ((num == matchPairInfo.Item1.User.PlatformId) ? matchPairInfo.Item2 : matchPairInfo.Item1).User; string value3 = ((FixedString64Bytes)(ref user.CharacterName)).Value; string text = "" + value3 + ""; ulong item = matchPair.Item1; ulong item2 = matchPair.Item2; user = playerInfo.User; NotifyBothPlayers(item, item2, text + " has the least familiars remaining! Winner: " + ((FixedString64Bytes)(ref user.CharacterName)).Value + ""); } else { Core.Log.LogWarning((object)"Failed to get match pair info during match timeout completion..."); } foreach (Entity item3 in value) { if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(item3)) { Familiars.HandleFamiliarMinions(item3); } if (item3.Exists()) { item3.Destroy(); } } { foreach (Entity item4 in value2) { if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(item4)) { Familiars.HandleFamiliarMinions(item4); } if (item4.Exists()) { item4.Destroy(); } } return; } } Core.Log.LogWarning((object)"Failed to remove one or both players from PlayerBattleFamiliars during match timeout..."); } } public static readonly List FamiliarBattleCoords = new List(); public static readonly List FamiliarBattleTeams = new List(); public static readonly List PlayerOneFamiliarPositions = new List(); public static readonly List PlayerTwoFamiliarPositions = new List(); private static readonly WaitForSeconds _challengeExpiration = new WaitForSeconds(30f); private static readonly WaitForSeconds _battleInterval = new WaitForSeconds(300f); private static readonly WaitForSeconds _timeoutDelay = new WaitForSeconds(235f); private static readonly WaitForSeconds _secondDelay = new WaitForSeconds(1f); private static readonly WaitForSeconds _delay = new WaitForSeconds(0.25f); private static ComponentType[] _unitTeamComponent = (ComponentType[])(object)new ComponentType[1] { ComponentType.ReadOnly(Il2CppType.Of()) }; private static readonly AssetGuid _valueSecondsAssetGuid = AssetGuid.FromString("2a1f5c1b-5a50-4ff0-a982-ca37efb8f69d"); private static readonly PrefabGUID _sctInfoWarning = new PrefabGUID(106212079); private static readonly float3 _green = new float3(0f, 1f, 0f); public static float3 _battlePosition = float3.zero; public static float3 _sctPosition = float3.zero; private const float MATCH_START_COUNTDOWN = 5f; private const float BATTLE_INTERVAL = 300f; private const float CHALLENGE_EXPIRATION = 30f; private const float UNIT_SPACING = 2.5f; private const float TEAM_DISTANCE = 3f; private const float SPECTATE_DISTANCE = 25f; private const float SCT_HEIGHT = 15f; public const int TEAM_SIZE = 3; private const int TEAM_ONE = 0; private const int TEAM_TWO = 1; private static DateTime _matchPendingStart; private static bool _serviceActive = false; private static bool _matchPending = false; public static bool _awardSanguis = false; public static int _tokensTransferred; public static PropertyInfo _tokensProperty; public static MethodInfo _saveTokens; public static Dictionary _playerTokens; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => SystemService.EndSimulationEntityCommandBufferSystem; public static void Initialize() { //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Expected O, but got Unknown //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) if (!DataService.PlayerDictionaries._familiarBattleCoords.Any()) { return; } List list = DataService.PlayerDictionaries._familiarBattleCoords.FirstOrDefault(); float3 val = default(float3); ((float3)(ref val))..ctor(list[0], list[1], list[2]); FamiliarBattleCoords.Add(val); _battlePosition = new float3(val.x, val.y, val.z); _sctPosition = new float3(val.x, val.y + 15f, val.z); GenerateBattleFormations(val); BattleUpdateRoutine().Start(); _serviceActive = true; try { EntityQueryBuilder val2 = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref val2)).WithAll(ref _unitTeamComponent); ((EntityQueryBuilder)(ref val2)).WithOptions((EntityQueryOptions)2); EntityManager entityManager = EntityManager; EntityQuery val3 = ((EntityManager)(ref entityManager)).CreateEntityQuery(ref val2); NativeArray val4 = ((EntityQuery)(ref val3)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)3)); try { Enumerator enumerator = val4.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.Has()) { FamiliarBindingSystem._unitTeamSingleton = current; } } } finally { val4.Dispose(); ((EntityQuery)(ref val3)).Dispose(); } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val5 = new BepInExErrorLogInterpolatedStringHandler(47, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val5).AppendLiteral("Error initializing UnitTeam in BattleService - "); ((BepInExLogInterpolatedStringHandler)val5).AppendFormatted(ex); } log.LogError(val5); } } private static IEnumerator BattleUpdateRoutine() { while (true) { if (!_matchPending) { Core.Log.LogInfo((object)"Setting time stamp at loop start..."); _matchPending = true; _matchPendingStart = DateTime.UtcNow; } yield return _battleInterval; Core.Log.LogInfo((object)"Checking for pending matches in queue..."); if (Matchmaker.MatchQueue.Any()) { (ulong, ulong) result; while (Matchmaker.MatchQueue.TryDequeue(out result)) { Core.Log.LogInfo((object)"Starting match from queue..."); var (num, num2) = result; if (num.TryGetPlayerInfo(out var playerInfo) && num2.TryGetPlayerInfo(out var playerInfo2)) { Core.Log.LogInfo((object)"PlayerInfo acquired, invoking HandleBattleSummoning..."); HandleBattleSummoning(playerInfo, playerInfo2, num, num2); _matchPending = false; break; } Core.Log.LogWarning((object)"Failed to get PlayerInfo for one or both players for match start, skipping to next and removing pair from queue..."); RemovePairFromQueue(result); } } else { Core.Log.LogInfo((object)"No pending matches in queue..."); _matchPending = false; } } } public static IEnumerator BattleCountdownRoutine((ulong playerOne, ulong playerTwo) matchPair) { if (!matchPair.TryGetMatchPairInfo(out var _)) { Core.Log.LogWarning((object)"Failed to get match pair info during battle start countdown..."); yield break; } float countdown = 5f; List onlineNearbyPlayers = Progression.GetUsersNearPosition(_battlePosition, 25f); var (steamIdOne, steamIdTwo) = matchPair; while (countdown > 0f) { foreach (PlayerService.PlayerInfo item in onlineNearbyPlayers) { ScrollingCombatTextMessage.Create(EntityManager, ((EntityCommandBufferSystem)EndSimulationEntityCommandBufferSystem).CreateCommandBuffer(), _valueSecondsAssetGuid, _battlePosition, _green, item.CharEntity, countdown, _sctInfoWarning, item.UserEntity); } float num = countdown - 1f; countdown = num; yield return _secondDelay; } EnableAggro(FamiliarBindingSystem.PlayerBattleFamiliars[steamIdOne]); EnableAggro(FamiliarBindingSystem.PlayerBattleFamiliars[steamIdTwo]); MatchTimeoutRoutine(matchPair).Start(); } private static IEnumerator BattleSummoningRoutine(Entity playerOne, User playerUserOne, Entity playerTwo, User playerUserTwo, List playerOneFamiliars, List playerTwoFamiliars) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) bool allies = playerOne.IsAllied(playerTwo); for (int i = 0; i < 3; i++) { PrefabGUID val = playerOneFamiliars[i]; FamiliarBindingSystem.InstantiateFamiliarRoutine(playerUserOne, playerOne, ((PrefabGUID)(ref val)).GuidHash, battle: true, 0, PlayerOneFamiliarPositions[i], allies).Start(); val = playerTwoFamiliars[i]; FamiliarBindingSystem.InstantiateFamiliarRoutine(playerUserTwo, playerTwo, ((PrefabGUID)(ref val)).GuidHash, battle: true, 1, PlayerTwoFamiliarPositions[i], allies).Start(); yield return _delay; } } public static IEnumerator MatchTimeoutRoutine((ulong, ulong) matchPair) { yield return _timeoutDelay; if (!Matchmaker.MatchPairs.Contains(matchPair)) { Core.Log.LogWarning((object)"Match timeout reached, unable to retrieve active matchPair..."); yield break; } ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(58, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Match timeout reached, proceeding to HandleMatchTimeout..."); } log.LogInfo(val); bool flag2 = FamiliarBindingSystem.PlayerBattleFamiliars[matchPair.Item1].Any(); bool flag3 = FamiliarBindingSystem.PlayerBattleFamiliars[matchPair.Item2].Any(); if (flag2 && flag3 && Matchmaker.MatchPairs.Contains(matchPair)) { Matchmaker.HandleMatchTimeout(matchPair); } else if ((flag2 || flag3) && Matchmaker.MatchPairs.Contains(matchPair)) { Matchmaker.HandleMatchTimeout(matchPair); } else { if (!(flag2 || flag3)) { yield break; } Core.Log.LogWarning((object)"One or both player has remaining familiars but is not part of an active matchPair, cleaning up..."); if (flag2 && FamiliarBindingSystem.PlayerBattleFamiliars.TryRemove(matchPair.Item1, out var value)) { foreach (Entity item in value) { if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(item)) { Familiars.HandleFamiliarMinions(item); } if (item.Exists()) { item.Destroy(); } } } if (!flag3 || !FamiliarBindingSystem.PlayerBattleFamiliars.TryRemove(matchPair.Item2, out var value2)) { yield break; } foreach (Entity item2 in value2) { if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(item2)) { Familiars.HandleFamiliarMinions(item2); } if (item2.Exists()) { item2.Destroy(); } } } } public static IEnumerator ChallengeExpiredRoutine((ulong, ulong) matchPair) { yield return _challengeExpiration; if (!Matchmaker.MatchPairs.Contains(matchPair) && EmoteSystemPatch.BattleChallenges.Contains(matchPair)) { EmoteSystemPatch.BattleChallenges.Remove(matchPair); NotifyBothPlayers(matchPair.Item1, matchPair.Item2, "Challenge expired..."); } } private static void HandleBattleSummoning(PlayerService.PlayerInfo playerOneInfo, PlayerService.PlayerInfo playerTwoInfo, ulong playerOne, ulong playerTwo) { //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) if (Matchmaker.QueuedBattleGroups.TryRemove(playerOne, out var value) && Matchmaker.QueuedBattleGroups.TryRemove(playerTwo, out var value2)) { Core.Log.LogInfo((object)"Battle groups popped, invoking BattleSummoningRoutine..."); FamiliarBindingSystem.PlayerBattleGroups[playerOne] = value; FamiliarBindingSystem.PlayerBattleGroups[playerTwo] = value2; Entity charEntity = playerOneInfo.CharEntity; User user = playerOneInfo.User; Entity charEntity2 = playerTwoInfo.CharEntity; User user2 = playerTwoInfo.User; List list = value; List list2 = new List(list.Count); list2.AddRange(list); list = value2; List list3 = new List(list.Count); list3.AddRange(list); BattleSummoningRoutine(charEntity, user, charEntity2, user2, list2, list3).Start(); } else { Core.Log.LogInfo((object)"Couldn't pop battle groups for one or both players..."); } } private static bool VerifyEligible(ulong playerOne, ulong playerTwo) { //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Expected O, but got Unknown if (Matchmaker.QueuedPlayers.Contains(playerOne) || Matchmaker.QueuedPlayers.Contains(playerTwo)) { string message = "One or both players are already queued!"; NotifyPlayer(playerOne, message); return false; } DataService.FamiliarPersistence.FamiliarBattleGroupsManager.FamiliarBattleGroup familiarBattleGroup = DataService.FamiliarPersistence.FamiliarBattleGroupsManager.GetFamiliarBattleGroup(playerOne, DataService.FamiliarPersistence.FamiliarBattleGroupsManager.GetActiveBattleGroupName(playerOne)); DataService.FamiliarPersistence.FamiliarBattleGroupsManager.FamiliarBattleGroup familiarBattleGroup2 = DataService.FamiliarPersistence.FamiliarBattleGroupsManager.GetFamiliarBattleGroup(playerTwo, DataService.FamiliarPersistence.FamiliarBattleGroupsManager.GetActiveBattleGroupName(playerTwo)); bool flag = !familiarBattleGroup.Familiars.Contains(0); bool flag2 = !familiarBattleGroup2.Familiars.Contains(0); if (!(flag && flag2)) { string text = ((!flag && !flag2) ? $"Both players have less than {3} familiars in their battle groups!" : ((!flag) ? $"Player One has less than {3} familiars in their battle group!" : $"Player Two has less than {3} familiars in their battle group!")); NotifyPlayer(playerOne, text); Core.Log.LogWarning((object)text); return false; } string text2 = string.Join(", ", familiarBattleGroup.Familiars); string text3 = string.Join(", ", familiarBattleGroup2.Familiars); ConcurrentDictionary> queuedBattleGroups = Matchmaker.QueuedBattleGroups; List list = new List(); list.AddRange(((IEnumerable)familiarBattleGroup.Familiars).Select((Func)((int x) => new PrefabGUID(x)))); queuedBattleGroups[playerOne] = list; ConcurrentDictionary> queuedBattleGroups2 = Matchmaker.QueuedBattleGroups; List list2 = new List(); list2.AddRange(((IEnumerable)familiarBattleGroup2.Familiars).Select((Func)((int x) => new PrefabGUID(x)))); queuedBattleGroups2[playerTwo] = list2; ManualLogSource log = Core.Log; bool flag3 = default(bool); BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(54, 4, ref flag3); if (flag3) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Battle groups for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerOne); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" & "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerTwo); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" verified and added to queue: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(text2); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(text3); } log.LogInfo(val); return true; } public static (int position, TimeSpan timeRemaining) GetQueuePositionAndTime(ulong steamId) { int num = 0; foreach (var item2 in Matchmaker.MatchQueue) { num++; if (item2.Item1 == steamId || item2.Item2 == steamId) { DateTime utcNow = DateTime.UtcNow; TimeSpan timeSpan = _matchPendingStart.AddSeconds(300.0) - utcNow; if (timeSpan < TimeSpan.Zero) { timeSpan = TimeSpan.Zero; } TimeSpan timeSpan2 = TimeSpan.FromSeconds((float)(num - 1) * 300f); TimeSpan item = timeSpan + timeSpan2; return (num, item); } } return (0, TimeSpan.Zero); } public static void RemovePairFromQueue((ulong, ulong) matchPair) { Matchmaker.QueuedPlayers.Remove(matchPair.Item1); Matchmaker.QueuedPlayers.Remove(matchPair.Item2); Matchmaker.QueuedBattleGroups.TryRemove(matchPair.Item1, out var value); Matchmaker.QueuedBattleGroups.TryRemove(matchPair.Item2, out value); Matchmaker.MatchPairs.Remove(matchPair); } private static void EnableAggro(List familiars) { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) foreach (Entity familiar in familiars) { if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref AggroConsumer aggroConsumer) { aggroConsumer.Active._Value = true; }); } if (familiar.Has()) { familiar.With((VExtensions.WithRefHandler)delegate(ref Aggroable aggroable) { aggroable.Value._Value = true; }); } } } public static void NotifyBothPlayers(ulong playerOne, ulong playerTwo, string message) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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) if (playerOne.TryGetPlayerInfo(out var playerInfo)) { LocalizationService.HandleServerReply(EntityManager, playerInfo.User, message); } if (playerTwo.TryGetPlayerInfo(out playerInfo)) { LocalizationService.HandleServerReply(EntityManager, playerInfo.User, message); } } private static void NotifyPlayer(ulong steamId, string message) { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) if (steamId.TryGetPlayerInfo(out var playerInfo) && playerInfo.User.IsConnected) { LocalizationService.HandleServerReply(EntityManager, playerInfo.User, message); } } private static void GenerateBattleFormations(float3 battleCenter) { //IL_0018: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) PlayerOneFamiliarPositions.Clear(); PlayerTwoFamiliarPositions.Clear(); for (int i = 0; i < 3; i++) { float3 item = battleCenter + new float3((float)(i - 1) * 2.5f, 0f, -3f); PlayerOneFamiliarPositions.Add(item); float3 item2 = battleCenter + new float3((float)(i - 1) * 2.5f, 0f, 3f); PlayerTwoFamiliarPositions.Add(item2); } } private static void TransferTokensAndSave(ulong winner, ulong loser, int amount) { //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Expected O, but got Unknown Dictionary dictionary = (Dictionary)_tokensProperty.GetValue(null); if (dictionary.TryGetValue(winner, out var value) && dictionary.TryGetValue(loser, out var value2)) { value.Item1 += amount; value2.Item1 -= amount; _saveTokens.Invoke(null, null); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(40, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Sanguis awarded after battle: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(amount); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" from "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(loser); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" to "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(winner); } log.LogInfo(val); } } } internal static class ConfigService { public static class ConfigInitialization { public class ConfigEntryDefinition { public string Section { get; } public string Key { get; } public object DefaultValue { get; } public string Description { get; } public ConfigEntryDefinition(string section, string key, object defaultValue, string description) { Section = section; Key = key; DefaultValue = defaultValue; Description = description; base..ctor(); } } private static readonly Regex _regex = new Regex("^\\[(.+)\\]$"); public static readonly Dictionary FinalConfigValues = new Dictionary(); private static readonly Lazy> _directoryPaths = new Lazy>(() => new List(12) { Path.Combine(Paths.ConfigPath, "Bloodcraft"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "PlayerLeveling"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "Quests"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "WeaponExpertise"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "BloodLegacies"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "Professions"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "Familiars"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "Familiars", "FamiliarLeveling"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "Familiars", "FamiliarUnlocks"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "PlayerBools"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "Familiars", "FamiliarEquipment"), Path.Combine(Paths.ConfigPath, "Bloodcraft", "Familiars", "FamiliarBattleGroups") }); public static readonly List SectionOrder = new List(10) { "General", "StarterKit", "Quests", "Leveling", "Prestige", "Expertise", "Legacies", "Professions", "Familiars", "Classes" }; public static readonly List ConfigEntries = new List(153) { new ConfigEntryDefinition("General", "LanguageLocalization", "English", "The language localization for prefabs displayed to users. English by default. Options: Brazilian, English, French, German, Hungarian, Italian, Japanese, Koreana, Latam, Polish, Russian, SimplifiedChinese, Spanish, TraditionalChinese, Thai, Turkish, Vietnamese"), new ConfigEntryDefinition("General", "Eclipsed", false, "Eclipse will be active if any features that sync with the client are enabled. Instead, this now controls the frequency; true for faster (0.1s), false for slower (2.5s)."), new ConfigEntryDefinition("General", "UseEmberglassEclipseBridge", false, "Use Emberglass for the Bloodcraft/Eclipse bridge when Emberglass is installed. Falls back to the legacy chat bridge when disabled or unavailable."), new ConfigEntryDefinition("General", "ElitePrimalRifts", false, "Enable or disable elite primal rifts."), new ConfigEntryDefinition("General", "RiftFrequency", 0, "Number of primal rifts to start per day when they are enabled (24 max)."), new ConfigEntryDefinition("General", "NightmareMode", false, "Enable or disable PvE-only health, power, and movement tuning for enemy units."), new ConfigEntryDefinition("General", "EliteShardBearers", false, "Enable or disable elite shard bearers."), new ConfigEntryDefinition("General", "ShardBearerLevel", 0, "Sets level of shard bearers if elite shard bearers is enabled. Leave at 0 for no effect."), new ConfigEntryDefinition("General", "PotionStacking", false, "Enable or disable potion stacking (can have t01/t02 effects at the same time)."), new ConfigEntryDefinition("General", "BearFormDash", false, "Enable or disable bear form dash."), new ConfigEntryDefinition("General", "BleedingEdge", "", "Enable various weapon-specific changes; some are more experimental than others, see README for details. (Slashers, Crossbow, Pistols, TwinBlades, Daggers)"), new ConfigEntryDefinition("General", "PrimalArsenal", false, "Experimental weapons with different models and abilities."), new ConfigEntryDefinition("General", "PrimalJewelCost", -77477508, "If extra recipes is enabled with a valid item prefab here (default demon fragments), it can be refined via gemcutter for random enhanced tier 4 jewels (better rolls, more modifiers)."), new ConfigEntryDefinition("StarterKit", "StarterKit", false, "Enable or disable the starter kit."), new ConfigEntryDefinition("StarterKit", "KitPrefabs", "862477668,-1531666018,-1593377811,1821405450", "Item prefabGuids for starting kit."), new ConfigEntryDefinition("StarterKit", "KitQuantities", "500,1000,1000,250", "The quantity of each item in the starter kit."), new ConfigEntryDefinition("StarterKit", "KitFamiliar", 0, "Character Prefab GUID for a familiar to grant with the starter kit (0 disables)."), new ConfigEntryDefinition("Quests", "QuestSystem", false, "Enable or disable quests (kill, gather, and crafting)."), new ConfigEntryDefinition("Quests", "InfiniteDailies", false, "Enable or disable infinite dailies."), new ConfigEntryDefinition("Quests", "DailyPerfectChance", 0.1f, "Chance to receive a random perfect gem (can be used to control spell school for primal jewels in gemcutter) when completing daily quests."), new ConfigEntryDefinition("Quests", "QuestRewards", "28358550,576389135,-257494203", "Item prefabs for quest reward pool."), new ConfigEntryDefinition("Quests", "QuestRewardAmounts", "50,250,50", "The amount of each reward in the pool. Will be multiplied accordingly for weeklies (*5) and vblood kill quests (*3)."), new ConfigEntryDefinition("Quests", "RerollDailyPrefab", -949672483, "Prefab item for rerolling daily."), new ConfigEntryDefinition("Quests", "RerollDailyAmount", 50, "Cost of prefab for rerolling daily."), new ConfigEntryDefinition("Quests", "RerollWeeklyPrefab", -949672483, "Prefab item for rerolling weekly."), new ConfigEntryDefinition("Quests", "RerollWeeklyAmount", 50, "Cost of prefab for rerolling weekly. Won't work if already completed for the week."), new ConfigEntryDefinition("Leveling", "LevelingSystem", false, "Enable or disable the leveling system."), new ConfigEntryDefinition("Leveling", "RestedXPSystem", false, "Enable or disable rested experience for players logging out inside of coffins (half for wooden, full for stone). Prestiging level will reset accumulated rested xp."), new ConfigEntryDefinition("Leveling", "RestedXPRate", 0.05f, "Rate of Rested XP accumulation per tick (as a percentage of maximum allowed rested XP, if configured to one tick per hour 20 hours offline in a stone coffin will provide maximum current rested XP)."), new ConfigEntryDefinition("Leveling", "RestedXPMax", 5, "Maximum extra levels worth of rested XP a player can accumulate."), new ConfigEntryDefinition("Leveling", "RestedXPTickRate", 120f, "Minutes required to accumulate one tick of Rested XP."), new ConfigEntryDefinition("Leveling", "MaxLevel", 90, "The maximum level a player can reach."), new ConfigEntryDefinition("Leveling", "StartingLevel", 10, "Starting level for players if no data is found."), new ConfigEntryDefinition("Leveling", "UnitLevelingMultiplier", 7.5f, "The multiplier for experience gained from units."), new ConfigEntryDefinition("Leveling", "VBloodLevelingMultiplier", 15f, "The multiplier for experience gained from VBloods."), new ConfigEntryDefinition("Leveling", "DocileUnitMultiplier", 0.15f, "The multiplier for experience gained from docile units."), new ConfigEntryDefinition("Leveling", "WarEventMultiplier", 0.2f, "The multiplier for experience gained from war event trash spawns."), new ConfigEntryDefinition("Leveling", "UnitSpawnerMultiplier", 0f, "The multiplier for experience gained from unit spawners (vermin nests, tombs). Applies to familiar experience as well."), new ConfigEntryDefinition("Leveling", "GroupLevelingMultiplier", 1f, "The multiplier for experience gained from group kills."), new ConfigEntryDefinition("Leveling", "LevelScalingMultiplier", 0.05f, "Reduces experience gained from kills with a large level gap between player and unit, increase to make harsher decrease or set to 0 to remove."), new ConfigEntryDefinition("Leveling", "ExpShare", true, "Enable or disable sharing experience with nearby players (ExpShareDistance) in combat that are within level range (ExpShareLevelRange, this does not apply to players that have prestiged at least once on PvE servers or clan members of the player that does the final blow) along with familiar unlock sharing if enabled (on PvP servers will only apply to clan members)."), new ConfigEntryDefinition("Leveling", "ExpShareLevelRange", 10, "Maximum level difference between players allowed for ExpShare, players who have prestiged at least once are exempt from this. Use 0 for no level diff restrictions."), new ConfigEntryDefinition("Leveling", "ExpShareDistance", 25f, "Default is ~5 floor tile lengths."), new ConfigEntryDefinition("Prestige", "PrestigeSystem", false, "Enable or disable the prestige system (requires leveling to be enabled as well)."), new ConfigEntryDefinition("Prestige", "PrestigeBuffs", "1504279833,0,0,0,0,0,0,0,0,0", "The PrefabGUID hashes for general prestige buffs, use 0 to skip otherwise buff applies at the prestige level (only shroud for first default while reworked)."), new ConfigEntryDefinition("Prestige", "PrestigeLevelsToUnlockClassSpells", "0,1,2,3,4,5", "The prestige levels at which class spells are unlocked. This should match the number of spells per class +1 to account for the default class spell. Can leave at 0 each if you want them unlocked from the start."), new ConfigEntryDefinition("Prestige", "MaxLevelingPrestiges", 10, "The maximum number of prestiges a player can reach in leveling."), new ConfigEntryDefinition("Prestige", "LevelingPrestigeReducer", 0.05f, "Flat factor by which experience is reduced per increment of prestige in leveling."), new ConfigEntryDefinition("Prestige", "PrestigeRatesReducer", 0.1f, "Flat factor by which rates are reduced in expertise/legacy per increment of prestige in expertise/legacy."), new ConfigEntryDefinition("Prestige", "PrestigeStatMultiplier", 0.1f, "Flat factor by which stats are increased in expertise/legacy bonuses per increment of prestige in expertise/legacy."), new ConfigEntryDefinition("Prestige", "PrestigeRateMultiplier", 0.1f, "Flat factor by which rates are increased in expertise/legacy per increment of prestige in leveling."), new ConfigEntryDefinition("Prestige", "ExoPrestiging", false, "Enable or disable exo prestiges (need to max normal prestiges first, 100 exo prestiges currently available)."), new ConfigEntryDefinition("Prestige", "ExoPrestigeReward", 28358550, "The reward for exo prestiging (tier 3 nether shards by default)."), new ConfigEntryDefinition("Prestige", "ExoPrestigeRewardQuantity", 500, "The quantity of the reward for exo prestiging."), new ConfigEntryDefinition("Prestige", "TrueImmortal", false, "Enable or disable Immortal blood for the duration of exoform."), new ConfigEntryDefinition("Prestige", "Leaderboard", true, "Enable or disable the various prestige leaderboard rankings."), new ConfigEntryDefinition("Expertise", "ExpertiseSystem", false, "Enable or disable the expertise system."), new ConfigEntryDefinition("Expertise", "MaxExpertisePrestiges", 10, "The maximum number of prestiges a player can reach in expertise."), new ConfigEntryDefinition("Expertise", "UnarmedSlots", false, "Enable or disable extra spells while unarmed."), new ConfigEntryDefinition("Expertise", "FishingSlots", false, "Enable or disable extra spells while fishing."), new ConfigEntryDefinition("Expertise", "Duality", true, "True for both unarmed slots, false for one unarmed slot. Does nothing without UnarmedSlots enabled (doesn't apply to fishing pole)."), new ConfigEntryDefinition("Expertise", "ShiftSlot", false, "Enable or disable using class spell on shift."), new ConfigEntryDefinition("Expertise", "MaxExpertiseLevel", 100, "The maximum level a player can reach in weapon expertise."), new ConfigEntryDefinition("Expertise", "UnitExpertiseMultiplier", 2f, "The multiplier for expertise gained from units."), new ConfigEntryDefinition("Expertise", "VBloodExpertiseMultiplier", 5f, "The multiplier for expertise gained from VBloods."), new ConfigEntryDefinition("Expertise", "UnitSpawnerExpertiseFactor", 1f, "The multiplier for experience gained from unit spawners (vermin nests, tombs)."), new ConfigEntryDefinition("Expertise", "ExpertiseStatChoices", 3, "The maximum number of stat choices a player can pick for a weapon expertise. Max of 3 will be sent to client UI for display."), new ConfigEntryDefinition("Expertise", "ResetExpertiseItem", 576389135, "Item PrefabGUID cost for resetting weapon stats."), new ConfigEntryDefinition("Expertise", "ResetExpertiseItemQuantity", 500, "Quantity of item required for resetting stats."), new ConfigEntryDefinition("Expertise", "MaxHealth", 250f, "The base cap for maximum health."), new ConfigEntryDefinition("Expertise", "MovementSpeed", 0.25f, "The base cap for movement speed."), new ConfigEntryDefinition("Expertise", "PrimaryAttackSpeed", 0.1f, "The base cap for primary attack speed."), new ConfigEntryDefinition("Expertise", "PhysicalLifeLeech", 0.1f, "The base cap for physical life leech."), new ConfigEntryDefinition("Expertise", "SpellLifeLeech", 0.1f, "The base cap for spell life leech."), new ConfigEntryDefinition("Expertise", "PrimaryLifeLeech", 0.15f, "The base cap for primary life leech."), new ConfigEntryDefinition("Expertise", "PhysicalPower", 20f, "The base cap for physical power."), new ConfigEntryDefinition("Expertise", "SpellPower", 10f, "The base cap for spell power."), new ConfigEntryDefinition("Expertise", "PhysicalCritChance", 0.1f, "The base cap for physical critical strike chance."), new ConfigEntryDefinition("Expertise", "PhysicalCritDamage", 0.5f, "The base cap for physical critical strike damage."), new ConfigEntryDefinition("Expertise", "SpellCritChance", 0.1f, "The base cap for spell critical strike chance."), new ConfigEntryDefinition("Expertise", "SpellCritDamage", 0.5f, "The base cap for spell critical strike damage."), new ConfigEntryDefinition("Legacies", "LegacySystem", false, "Enable or disable the blood legacy system."), new ConfigEntryDefinition("Legacies", "MaxLegacyPrestiges", 10, "The maximum number of prestiges a player can reach in blood legacies."), new ConfigEntryDefinition("Legacies", "MaxBloodLevel", 100, "The maximum level a player can reach in blood legacies."), new ConfigEntryDefinition("Legacies", "UnitLegacyMultiplier", 1f, "The multiplier for lineage gained from units."), new ConfigEntryDefinition("Legacies", "VBloodLegacyMultiplier", 5f, "The multiplier for lineage gained from VBloods."), new ConfigEntryDefinition("Legacies", "LegacyStatChoices", 3, "The maximum number of stat choices a player can pick for a blood legacy. Max of 3 will be sent to client UI for display."), new ConfigEntryDefinition("Legacies", "ResetLegacyItem", 576389135, "Item PrefabGUID cost for resetting blood stats."), new ConfigEntryDefinition("Legacies", "ResetLegacyItemQuantity", 500, "Quantity of item required for resetting blood stats."), new ConfigEntryDefinition("Legacies", "HealingReceived", 0.15f, "The base cap for healing received."), new ConfigEntryDefinition("Legacies", "DamageReduction", 0.05f, "The base cap for damage reduction."), new ConfigEntryDefinition("Legacies", "PhysicalResistance", 0.1f, "The base cap for physical resistance."), new ConfigEntryDefinition("Legacies", "SpellResistance", 0.1f, "The base cap for spell resistance."), new ConfigEntryDefinition("Legacies", "ResourceYield", 0.25f, "The base cap for resource yield."), new ConfigEntryDefinition("Legacies", "ReducedBloodDrain", 0.5f, "The base cap for reduced blood drain."), new ConfigEntryDefinition("Legacies", "SpellCooldownRecoveryRate", 0.1f, "The base cap for spell cooldown recovery rate."), new ConfigEntryDefinition("Legacies", "WeaponCooldownRecoveryRate", 0.1f, "The base cap for weapon cooldown recovery rate."), new ConfigEntryDefinition("Legacies", "UltimateCooldownRecoveryRate", 0.2f, "The base cap for ultimate cooldown recovery rate."), new ConfigEntryDefinition("Legacies", "MinionDamage", 0.25f, "The base cap for minion damage."), new ConfigEntryDefinition("Legacies", "AbilityAttackSpeed", 0.1f, "The base cap for ability attack speed."), new ConfigEntryDefinition("Legacies", "CorruptionDamageReduction", 0.1f, "The base cap for corruption damage reduction."), new ConfigEntryDefinition("Professions", "ProfessionSystem", false, "Enable or disable the profession system."), new ConfigEntryDefinition("Professions", "ProfessionFactor", 1f, "The multiplier for profession experience."), new ConfigEntryDefinition("Professions", "DisabledProfessions", "", "Professions that should be inactive separated by comma."), new ConfigEntryDefinition("Professions", "ExtraRecipes", false, "Enable or disable extra recipes. Players will not be able to add/change shiny buffs for familiars without this unless other means of obtaining vampiric dust are provided, salvage additions are controlled by this setting as well. See 'Recipes' section in README for complete list of changes."), new ConfigEntryDefinition("Familiars", "FamiliarSystem", false, "Enable or disable the familiar system."), new ConfigEntryDefinition("Familiars", "ShareUnlocks", false, "Enable or disable sharing unlocks between players in clans or parties (uses exp share distance)."), new ConfigEntryDefinition("Familiars", "FamiliarCombat", true, "Enable or disable combat for familiars."), new ConfigEntryDefinition("Familiars", "FamiliarPvP", true, "Enable or disable PvP participation for familiars. (if set to false, familiars will be unbound when entering PvP combat)."), new ConfigEntryDefinition("Familiars", "FamiliarBattles", false, "Enable or disable familiar battle system (most likely not working atm after 1.1, use at own risk for now)."), new ConfigEntryDefinition("Familiars", "FamiliarPrestige", false, "Enable or disable the prestige system for familiars."), new ConfigEntryDefinition("Familiars", "MaxFamiliarPrestiges", 10, "The maximum number of prestiges a familiar can reach."), new ConfigEntryDefinition("Familiars", "FamiliarPrestigeStatMultiplier", 0.1f, "The multiplier for applicable stats gained per familiar prestige."), new ConfigEntryDefinition("Familiars", "MaxFamiliarLevel", 90, "The maximum level a familiar can reach."), new ConfigEntryDefinition("Familiars", "AllowVBloods", false, "Allow VBloods to be unlocked as familiars (this includes shardbearers, if you want those excluded use the bannedUnits list)."), new ConfigEntryDefinition("Familiars", "AllowMinions", false, "Allow Minions to be unlocked as familiars (leaving these excluded by default since some have undesirable behaviour and I am not sifting through them all to correct that, enable at own risk)."), new ConfigEntryDefinition("Familiars", "BannedUnits", "", "The PrefabGUID hashes for units that cannot be used as familiars. Same structure as the buff lists except unit prefabs."), new ConfigEntryDefinition("Familiars", "BannedTypes", "", "The types of units that cannot be used as familiars go here (Human, Undead, Demon, Mechanical, Beast)."), new ConfigEntryDefinition("Familiars", "EquipmentOnly", false, "True for only equipment with no working inventory slots, false for both."), new ConfigEntryDefinition("Familiars", "UnitFamiliarMultiplier", 7.5f, "The multiplier for experience gained from units."), new ConfigEntryDefinition("Familiars", "VBloodFamiliarMultiplier", 15f, "The multiplier for experience gained from VBloods."), new ConfigEntryDefinition("Familiars", "UnitUnlockChance", 0.05f, "The chance for a unit unlock as a familiar."), new ConfigEntryDefinition("Familiars", "VBloodUnlockChance", 0.01f, "The chance for a VBlood unlock as a familiar."), new ConfigEntryDefinition("Familiars", "PrimalEchoes", false, "Enable or disable acquiring vBloods with configured item reward from exo prestiging (default primal shards) at cost scaling to unit tier using exo reward quantity as the base (highest tier are shard bearers which cost exo reward quantity times 25, or in other words after 25 exo prestiges a player would be able to purchase a shard bearer). Must enable exo prestiging (and therefore normal prestiging), checks for banned vBloods before allowing if applicable."), new ConfigEntryDefinition("Familiars", "EchoesFactor", 1, "Increase to multiply costs for vBlood purchases. Valid integers are between 1-4, if values are outside that range they will be clamped."), new ConfigEntryDefinition("Familiars", "ShinyChance", 0.2f, "The chance for a shiny when unlocking familiars (6 total buffs, 1 buff per familiar). Guaranteed on second unlock of same unit, chance on damage dealt (same as configured onHitEffect chance) to apply spell school debuff."), new ConfigEntryDefinition("Familiars", "ShinyCostItemQuantity", 100, "Quantity of vampiric dust required to make a familiar shiny. May also be spent to change shiny familiar's shiny buff at 25% cost. Enable ExtraRecipes to allow player refinement of this item from Advanced Grinders. Valid values are between 50-200, if outside that range in either direction it will be clamped."), new ConfigEntryDefinition("Familiars", "PrestigeCostItemQuantity", 1000, "Quantity of schematics required to immediately prestige familiar (gain total levels equal to max familiar level, extra levels remaining from the amount needed to prestige will be added to familiar after prestiging). Valid values are between 500-2000, if outside that range in either direction it will be clamped."), new ConfigEntryDefinition("Classes", "ClassSystem", false, "Enable classes without synergy restrictions."), new ConfigEntryDefinition("Classes", "ChangeClassItem", 576389135, "Item PrefabGUID cost for changing class."), new ConfigEntryDefinition("Classes", "ChangeClassQuantity", 750, "Quantity of item required for changing class."), new ConfigEntryDefinition("Classes", "ClassOnHitEffects", true, "Enable or disable class spell school on hit effects (chance to proc respective debuff from spell school when dealing damage (leech, chill, condemn etc), second tier effect will proc if first is already present on target."), new ConfigEntryDefinition("Classes", "OnHitProcChance", 0.075f, "The chance for a class effect to proc on hit."), new ConfigEntryDefinition("Classes", "SynergyMultiplier", 1.5f, "Multiplier for class stat synergies to base stat cap."), new ConfigEntryDefinition("Classes", "BloodKnightWeaponSynergies", $"{0},{2},{5},{6}", "Blood Knight weapon synergies."), new ConfigEntryDefinition("Classes", "BloodKnightBloodSynergies", $"{1},{5},{7},{10}", "Blood Knight blood synergies."), new ConfigEntryDefinition("Classes", "DemonHunterWeaponSynergies", $"{1},{2},{8},{9}", "Demon Hunter weapon synergies."), new ConfigEntryDefinition("Classes", "DemonHunterBloodSynergies", $"{2},{5},{7},{9}", "Demon Hunter blood synergies"), new ConfigEntryDefinition("Classes", "VampireLordWeaponSynergies", $"{0},{4},{6},{7}", "Vampire Lord weapon synergies."), new ConfigEntryDefinition("Classes", "VampireLordBloodSynergies", $"{1},{3},{8},{11}", "Vampire Lord blood synergies."), new ConfigEntryDefinition("Classes", "ShadowBladeWeaponSynergies", $"{1},{2},{6},{9}", "Shadow Blade weapon synergies."), new ConfigEntryDefinition("Classes", "ShadowBladeBloodSynergies", $"{3},{5},{7},{10}", "Shadow Blade blood synergies."), new ConfigEntryDefinition("Classes", "ArcaneSorcererWeaponSynergies", $"{4},{7},{10},{11}", "Arcane Sorcerer weapon synergies."), new ConfigEntryDefinition("Classes", "ArcaneSorcererBloodSynergies", $"{0},{6},{8},{10}", "Arcane Sorcerer blood synergies."), new ConfigEntryDefinition("Classes", "DeathMageWeaponSynergies", $"{0},{4},{7},{11}", "Death Mage weapon synergies."), new ConfigEntryDefinition("Classes", "DeathMageBloodSynergies", $"{2},{3},{6},{9}", "Death Mage blood synergies."), new ConfigEntryDefinition("Classes", "DefaultClassSpell", -433204738, "Default spell (veil of shadow) available to all classes."), new ConfigEntryDefinition("Classes", "BloodKnightSpells", "-880131926,651613264,2067760264,189403977,375131842", "Blood Knight shift spells, granted at levels of prestige."), new ConfigEntryDefinition("Classes", "DemonHunterSpells", "-356990326,-987810170,1071205195,1249925269,-914344112", "Demon Hunter shift spells, granted at levels of prestige."), new ConfigEntryDefinition("Classes", "VampireLordSpells", "78384915,295045820,-1000260252,91249849,1966330719", "Vampire Lord shift spells, granted at levels of prestige."), new ConfigEntryDefinition("Classes", "ShadowBladeSpells", "1019568127,1575317901,1112116762,-358319417,1174831223", "Shadow Blade shift spells, granted at levels of prestige."), new ConfigEntryDefinition("Classes", "ArcaneSorcererSpells", "247896794,268059675,-242769430,-2053450457,1650878435", "Arcane Sorcerer shift spells, granted at levels of prestige."), new ConfigEntryDefinition("Classes", "DeathMageSpells", "-1204819086,481411985,1961570821,2138402840,-1781779733", "Death Mage shift spells, granted at levels of prestige.") }; private const string DEFAULT_VALUE_LINE = "# Default value: "; public static List DirectoryPaths => _directoryPaths.Value; public static void InitializeConfig() { //IL_0276: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Expected O, but got Unknown //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Expected O, but got Unknown //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Expected O, but got Unknown foreach (string directoryPath in DirectoryPaths) { CreateDirectory(directoryPath); } string path = Path.Combine(Paths.ConfigPath, "io.zfolmt.Bloodcraft.cfg"); Dictionary dictionary = new Dictionary(); if (File.Exists(path)) { string[] array = File.ReadAllLines(path); foreach (string text in array) { if (!string.IsNullOrWhiteSpace(text) && !text.TrimStart().StartsWith("#")) { string[] array2 = text.Split('='); if (array2.Length == 2) { string key = array2[0].Trim(); string value = array2[1].Trim(); dictionary[key] = value; } } } } bool flag = default(bool); foreach (ConfigEntryDefinition configEntry in ConfigEntries) { Type type = configEntry.DefaultValue.GetType(); MethodInfo methodInfo = typeof(ConfigService).GetNestedType("ConfigInitialization", BindingFlags.Static | BindingFlags.Public).GetMethod("InitConfigEntry", BindingFlags.Static | BindingFlags.NonPublic).MakeGenericMethod(type); BepInExErrorLogInterpolatedStringHandler val; if (dictionary.TryGetValue(configEntry.Key, out var value2)) { try { object obj = ((type == typeof(float)) ? ((object)float.Parse(value2, CultureInfo.InvariantCulture)) : ((type == typeof(double)) ? ((object)double.Parse(value2, CultureInfo.InvariantCulture)) : ((!(type == typeof(decimal))) ? Convert.ChangeType(value2, type) : ((object)decimal.Parse(value2, CultureInfo.InvariantCulture))))); object obj2 = methodInfo.Invoke(null, new object[4] { configEntry.Section, configEntry.Key, obj, configEntry.Description }); UpdateConfigProperty(configEntry.Key, obj2); object obj3 = obj2.GetType().GetProperty("Value")?.GetValue(obj2); if (obj3 != null) { FinalConfigValues[configEntry.Key] = obj3; continue; } ManualLogSource logSource = Plugin.MiniBehaviour.LogSource; val = new BepInExErrorLogInterpolatedStringHandler(33, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to get value property for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(configEntry.Key); } logSource.LogError(val); } catch (Exception ex) { ManualLogSource logSource2 = Plugin.MiniBehaviour.LogSource; val = new BepInExErrorLogInterpolatedStringHandler(41, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to convert old config value for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(configEntry.Key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(": "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } logSource2.LogError(val); } continue; } object obj4 = methodInfo.Invoke(null, new object[4] { configEntry.Section, configEntry.Key, configEntry.DefaultValue, configEntry.Description }); UpdateConfigProperty(configEntry.Key, obj4); object obj5 = obj4.GetType().GetProperty("Value")?.GetValue(obj4); if (obj5 != null) { FinalConfigValues[configEntry.Key] = obj5; continue; } ManualLogSource log = Core.Log; val = new BepInExErrorLogInterpolatedStringHandler(33, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to get value property for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(configEntry.Key); } log.LogError(val); } string text2 = Path.Combine(Paths.ConfigPath, "io.zfolmt.Bloodcraft.cfg"); if (File.Exists(text2)) { OrganizeConfig(text2); } } private static void UpdateConfigProperty(string key, object configEntry) { PropertyInfo property = typeof(ConfigService).GetProperty(key, BindingFlags.Static | BindingFlags.Public); if (property != null && property.CanWrite) { object obj = configEntry.GetType().GetProperty("Value")?.GetValue(configEntry); if (obj == null) { throw new Exception("Value property on configEntry is null for key " + key + "."); } property.SetValue(null, Convert.ChangeType(obj, property.PropertyType)); } } private static ConfigEntry InitConfigEntry(string section, string key, T defaultValue, string description) { //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Expected O, but got Unknown ConfigEntry val = ((BasePlugin)Plugin.MiniBehaviour.Instance).Config.Bind(section, key, defaultValue, description); string path = Path.Combine(Paths.ConfigPath, "io.zfolmt.Bloodcraft.cfg"); if (File.Exists(path)) { string[] array = File.ReadAllLines(path); bool flag = default(bool); foreach (string text in array) { if (string.IsNullOrWhiteSpace(text) || text.TrimStart().StartsWith("#")) { continue; } string[] array2 = text.Split('='); if (array2.Length != 2) { continue; } string text2 = array2[0].Trim(); string text3 = array2[1].Trim(); if (!text2.Equals(key, StringComparison.CurrentCultureIgnoreCase)) { continue; } try { Type typeFromHandle = typeof(T); object obj; if (typeFromHandle == typeof(float)) { obj = float.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(double)) { obj = double.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(decimal)) { obj = decimal.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(int)) { obj = int.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(uint)) { obj = uint.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(long)) { obj = long.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(ulong)) { obj = ulong.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(short)) { obj = short.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(ushort)) { obj = ushort.Parse(text3, CultureInfo.InvariantCulture); } else if (typeFromHandle == typeof(bool)) { obj = bool.Parse(text3); } else { if (!(typeFromHandle == typeof(string))) { throw new NotSupportedException($"Type {typeFromHandle} is not supported"); } obj = text3; } val.Value = (T)obj; } catch (Exception ex) { ManualLogSource logSource = Plugin.MiniBehaviour.LogSource; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(37, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Failed to convert config value for "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(": "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex.Message); } logSource.LogError(val2); } break; } } return val; } private static void CreateDirectory(string path) { if (!Directory.Exists(path)) { Directory.CreateDirectory(path); } } private static void OrganizeConfig(string configFile) { //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Expected O, but got Unknown //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Expected O, but got Unknown //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0329: Expected O, but got Unknown bool flag2 = default(bool); try { Dictionary> dictionary = new Dictionary>(); string text = ""; string[] array = File.ReadAllLines(configFile); string[] subArray = array[0..3]; string[] array2 = array; for (int i = 0; i < array2.Length; i++) { string text2 = array2[i].Trim(); Match match = _regex.Match(text2); if (match.Success) { text = match.Groups[1].Value; if (!dictionary.ContainsKey(text)) { dictionary[text] = new List(); } } else if (SectionOrder.Contains(text)) { dictionary[text].Add(text2); } } using StreamWriter streamWriter = new StreamWriter(configFile, append: false); array2 = subArray; foreach (string value in array2) { streamWriter.WriteLine(value); } foreach (string section in SectionOrder) { if (!dictionary.ContainsKey(section)) { continue; } streamWriter.WriteLine("[" + section + "]"); List list = dictionary[section]; List list2 = new List(); list2.AddRange(from line in list where line.Contains('=') select line.Split('=')[0].Trim()); List sectionKeys = list2; Dictionary dictionary2 = ConfigEntries.Where((ConfigEntryDefinition entry) => entry.Section == section).ToDictionary((ConfigEntryDefinition entry) => entry.Key, (ConfigEntryDefinition entry) => entry.DefaultValue); int keyIndex = 0; bool flag = false; foreach (string item in list) { if (item.Contains('=')) { string text3 = item.Split('=')[0].Trim(); if (!dictionary2.ContainsKey(text3)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(32, 1, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Skipping obsolete config entry: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(text3); } log.LogWarning(val); flag = true; continue; } } if (string.IsNullOrWhiteSpace(item) && flag) { continue; } if (item.Contains("# Default value: ")) { ConfigEntryDefinition configEntryDefinition = ConfigEntries.FirstOrDefault((ConfigEntryDefinition e) => e.Key == sectionKeys[keyIndex] && e.Section == section); if (configEntryDefinition != null) { streamWriter.WriteLine("# Default value: " + configEntryDefinition.DefaultValue.ToString()); keyIndex++; } else { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(51, 1, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Config entry for key '"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(sectionKeys[keyIndex]); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("' not found in ConfigEntries!"); } log2.LogWarning(val); streamWriter.WriteLine(item); } } else { streamWriter.WriteLine(item); } flag = false; } } } catch (Exception ex) { ManualLogSource log3 = Core.Log; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(42, 1, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Failed to clean and organize config file: "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex.Message); } log3.LogError(val2); } } } private static readonly Lazy _languageLocalization = new Lazy(() => GetConfigValue("LanguageLocalization")); private static readonly Lazy _eclipsed = new Lazy(() => GetConfigValue("Eclipsed")); private static readonly Lazy _useEmberglassEclipseBridge = new Lazy(() => GetConfigValue("UseEmberglassEclipseBridge")); private static readonly Lazy _elitePrimalRifts = new Lazy(() => GetConfigValue("ElitePrimalRifts")); private static readonly Lazy _riftFrequency = new Lazy(() => GetConfigValue("RiftFrequency")); private static readonly Lazy _nightmareMode = new Lazy(() => GetConfigValue("NightmareMode")); private static readonly Lazy _eliteShardBearers = new Lazy(() => GetConfigValue("EliteShardBearers")); private static readonly Lazy _shardBearerLevel = new Lazy(() => GetConfigValue("ShardBearerLevel")); private static readonly Lazy _potionStacking = new Lazy(() => GetConfigValue("PotionStacking")); private static readonly Lazy _bearFormDash = new Lazy(() => GetConfigValue("BearFormDash")); private static readonly Lazy _primalJewelCost = new Lazy(() => GetConfigValue("PrimalJewelCost")); private static readonly Lazy _bleedingEdge = new Lazy(() => GetConfigValue("BleedingEdge")); private static readonly Lazy _primalArsenal = new Lazy(() => GetConfigValue("PrimalArsenal")); private static readonly Lazy _starterKit = new Lazy(() => GetConfigValue("StarterKit")); private static readonly Lazy _kitPrefabs = new Lazy(() => GetConfigValue("KitPrefabs")); private static readonly Lazy _kitQuantities = new Lazy(() => GetConfigValue("KitQuantities")); private static readonly Lazy _kitFamiliar = new Lazy(() => GetConfigValue("KitFamiliar")); private static readonly Lazy _questSystem = new Lazy(() => GetConfigValue("QuestSystem")); private static readonly Lazy _infiniteDailies = new Lazy(() => GetConfigValue("InfiniteDailies")); private static readonly Lazy _dailyPerfectChance = new Lazy(() => GetConfigValue("DailyPerfectChance")); private static readonly Lazy _questRewards = new Lazy(() => GetConfigValue("QuestRewards")); private static readonly Lazy _questRewardAmounts = new Lazy(() => GetConfigValue("QuestRewardAmounts")); private static readonly Lazy _rerollDailyPrefab = new Lazy(() => GetConfigValue("RerollDailyPrefab")); private static readonly Lazy _rerollDailyAmount = new Lazy(() => GetConfigValue("RerollDailyAmount")); private static readonly Lazy _rerollWeeklyPrefab = new Lazy(() => GetConfigValue("RerollWeeklyPrefab")); private static readonly Lazy _rerollWeeklyAmount = new Lazy(() => GetConfigValue("RerollWeeklyAmount")); private static readonly Lazy _levelingSystem = new Lazy(() => GetConfigValue("LevelingSystem")); private static readonly Lazy _restedXPSystem = new Lazy(() => GetConfigValue("RestedXPSystem")); private static readonly Lazy _restedXPRate = new Lazy(() => GetConfigValue("RestedXPRate")); private static readonly Lazy _restedXPMax = new Lazy(() => GetConfigValue("RestedXPMax")); private static readonly Lazy _restedXPTickRate = new Lazy(() => GetConfigValue("RestedXPTickRate")); private static readonly Lazy _maxLevel = new Lazy(() => GetConfigValue("MaxLevel")); private static readonly Lazy _startingLevel = new Lazy(() => GetConfigValue("StartingLevel")); private static readonly Lazy _unitLevelingMultiplier = new Lazy(() => GetConfigValue("UnitLevelingMultiplier")); private static readonly Lazy _vBloodLevelingMultiplier = new Lazy(() => GetConfigValue("VBloodLevelingMultiplier")); private static readonly Lazy _docileUnitMultiplier = new Lazy(() => GetConfigValue("DocileUnitMultiplier")); private static readonly Lazy _warEventMultiplier = new Lazy(() => GetConfigValue("WarEventMultiplier")); private static readonly Lazy _unitSpawnerMultiplier = new Lazy(() => GetConfigValue("UnitSpawnerMultiplier")); private static readonly Lazy _unitSpawnerExpertiseFactor = new Lazy(() => GetConfigValue("UnitSpawnerExpertiseFactor")); private static readonly Lazy _changeClassItem = new Lazy(() => GetConfigValue("ChangeClassItem")); private static readonly Lazy _changeClassQuantity = new Lazy(() => GetConfigValue("ChangeClassQuantity")); private static readonly Lazy _groupLevelingMultiplier = new Lazy(() => GetConfigValue("GroupLevelingMultiplier")); private static readonly Lazy _levelScalingMultiplier = new Lazy(() => GetConfigValue("LevelScalingMultiplier")); private static readonly Lazy _expShare = new Lazy(() => GetConfigValue("ExpShare")); private static readonly Lazy _expShareLevelRange = new Lazy(() => GetConfigValue("ExpShareLevelRange")); private static readonly Lazy _expShareDistance = new Lazy(() => GetConfigValue("ExpShareDistance")); private static readonly Lazy _prestigeSystem = new Lazy(() => GetConfigValue("PrestigeSystem")); private static readonly Lazy _prestigeBuffs = new Lazy(() => GetConfigValue("PrestigeBuffs")); private static readonly Lazy _prestigeLevelsToUnlockClassSpells = new Lazy(() => GetConfigValue("PrestigeLevelsToUnlockClassSpells")); private static readonly Lazy _maxLevelingPrestiges = new Lazy(() => GetConfigValue("MaxLevelingPrestiges")); private static readonly Lazy _levelingPrestigeReducer = new Lazy(() => GetConfigValue("LevelingPrestigeReducer")); private static readonly Lazy _prestigeRatesReducer = new Lazy(() => GetConfigValue("PrestigeRatesReducer")); private static readonly Lazy _prestigeStatMultiplier = new Lazy(() => GetConfigValue("PrestigeStatMultiplier")); private static readonly Lazy _prestigeRateMultiplier = new Lazy(() => GetConfigValue("PrestigeRateMultiplier")); private static readonly Lazy _exoPrestiging = new Lazy(() => GetConfigValue("ExoPrestiging")); private static readonly Lazy _exoPrestigeReward = new Lazy(() => GetConfigValue("ExoPrestigeReward")); private static readonly Lazy _exoPrestigeRewardQuantity = new Lazy(() => GetConfigValue("ExoPrestigeRewardQuantity")); private static readonly Lazy _trueImmortal = new Lazy(() => GetConfigValue("TrueImmortal")); private static readonly Lazy _prestigeLeaderboard = new Lazy(() => GetConfigValue("Leaderboard")); private static readonly Lazy _expertiseSystem = new Lazy(() => GetConfigValue("ExpertiseSystem")); private static readonly Lazy _maxExpertisePrestiges = new Lazy(() => GetConfigValue("MaxExpertisePrestiges")); private static readonly Lazy _unarmedSlots = new Lazy(() => GetConfigValue("UnarmedSlots")); private static readonly Lazy _fishingSlots = new Lazy(() => GetConfigValue("FishingSlots")); private static readonly Lazy _duality = new Lazy(() => GetConfigValue("Duality")); private static readonly Lazy _shiftSlot = new Lazy(() => GetConfigValue("ShiftSlot")); private static readonly Lazy _maxExpertiseLevel = new Lazy(() => GetConfigValue("MaxExpertiseLevel")); private static readonly Lazy _unitExpertiseMultiplier = new Lazy(() => GetConfigValue("UnitExpertiseMultiplier")); private static readonly Lazy _vBloodExpertiseMultiplier = new Lazy(() => GetConfigValue("VBloodExpertiseMultiplier")); private static readonly Lazy _expertiseStatChoices = new Lazy(() => GetConfigValue("ExpertiseStatChoices")); private static readonly Lazy _resetExpertiseItem = new Lazy(() => GetConfigValue("ResetExpertiseItem")); private static readonly Lazy _resetExpertiseItemQuantity = new Lazy(() => GetConfigValue("ResetExpertiseItemQuantity")); private static readonly Lazy _maxHealth = new Lazy(() => GetConfigValue("MaxHealth")); private static readonly Lazy _movementSpeed = new Lazy(() => GetConfigValue("MovementSpeed")); private static readonly Lazy _primaryAttackSpeed = new Lazy(() => GetConfigValue("PrimaryAttackSpeed")); private static readonly Lazy _physicalLifeLeech = new Lazy(() => GetConfigValue("PhysicalLifeLeech")); private static readonly Lazy _spellLifeLeech = new Lazy(() => GetConfigValue("SpellLifeLeech")); private static readonly Lazy _primaryLifeLeech = new Lazy(() => GetConfigValue("PrimaryLifeLeech")); private static readonly Lazy _physicalPower = new Lazy(() => GetConfigValue("PhysicalPower")); private static readonly Lazy _spellPower = new Lazy(() => GetConfigValue("SpellPower")); private static readonly Lazy _physicalCritChance = new Lazy(() => GetConfigValue("PhysicalCritChance")); private static readonly Lazy _physicalCritDamage = new Lazy(() => GetConfigValue("PhysicalCritDamage")); private static readonly Lazy _spellCritChance = new Lazy(() => GetConfigValue("SpellCritChance")); private static readonly Lazy _spellCritDamage = new Lazy(() => GetConfigValue("SpellCritDamage")); private static readonly Lazy _legacySystem = new Lazy(() => GetConfigValue("LegacySystem")); private static readonly Lazy _maxLegacyPrestiges = new Lazy(() => GetConfigValue("MaxLegacyPrestiges")); private static readonly Lazy _bloodQualityBonus = new Lazy(() => GetConfigValue("BloodQualityBonus")); private static readonly Lazy _prestigeBloodQuality = new Lazy(() => GetConfigValue("PrestigeBloodQuality")); private static readonly Lazy _maxBloodLevel = new Lazy(() => GetConfigValue("MaxBloodLevel")); private static readonly Lazy _unitLegacyMultiplier = new Lazy(() => GetConfigValue("UnitLegacyMultiplier")); private static readonly Lazy _vBloodLegacyMultiplier = new Lazy(() => GetConfigValue("VBloodLegacyMultiplier")); private static readonly Lazy _legacyStatChoices = new Lazy(() => GetConfigValue("LegacyStatChoices")); private static readonly Lazy _resetLegacyItem = new Lazy(() => GetConfigValue("ResetLegacyItem")); private static readonly Lazy _resetLegacyItemQuantity = new Lazy(() => GetConfigValue("ResetLegacyItemQuantity")); private static readonly Lazy _healingReceived = new Lazy(() => GetConfigValue("HealingReceived")); private static readonly Lazy _damageReduction = new Lazy(() => GetConfigValue("DamageReduction")); private static readonly Lazy _physicalResistance = new Lazy(() => GetConfigValue("PhysicalResistance")); private static readonly Lazy _spellResistance = new Lazy(() => GetConfigValue("SpellResistance")); private static readonly Lazy _resourceYield = new Lazy(() => GetConfigValue("ResourceYield")); private static readonly Lazy _reducedBloodDrain = new Lazy(() => GetConfigValue("ReducedBloodDrain")); private static readonly Lazy _spellCooldownRecoveryRate = new Lazy(() => GetConfigValue("SpellCooldownRecoveryRate")); private static readonly Lazy _weaponCooldownRecoveryRate = new Lazy(() => GetConfigValue("WeaponCooldownRecoveryRate")); private static readonly Lazy _ultimateCooldownRecoveryRate = new Lazy(() => GetConfigValue("UltimateCooldownRecoveryRate")); private static readonly Lazy _minionDamage = new Lazy(() => GetConfigValue("MinionDamage")); private static readonly Lazy _abilityAttackSpeed = new Lazy(() => GetConfigValue("AbilityAttackSpeed")); private static readonly Lazy _corruptionDamageReduction = new Lazy(() => GetConfigValue("CorruptionDamageReduction")); private static readonly Lazy _professionSystem = new Lazy(() => GetConfigValue("ProfessionSystem")); private static readonly Lazy _professionFactor = new Lazy(() => GetConfigValue("ProfessionFactor")); private static readonly Lazy _disabledProfessions = new Lazy(() => GetConfigValue("DisabledProfessions")); private static readonly Lazy _extraRecipes = new Lazy(() => GetConfigValue("ExtraRecipes")); private static readonly Lazy _familiarSystem = new Lazy(() => GetConfigValue("FamiliarSystem")); private static readonly Lazy _shareUnlocks = new Lazy(() => GetConfigValue("ShareUnlocks")); private static readonly Lazy _familiarCombat = new Lazy(() => GetConfigValue("FamiliarCombat")); private static readonly Lazy _familiarPvP = new Lazy(() => GetConfigValue("FamiliarPvP")); private static readonly Lazy _familiarBattles = new Lazy(() => GetConfigValue("FamiliarBattles")); private static readonly Lazy _familiarPrestige = new Lazy(() => GetConfigValue("FamiliarPrestige")); private static readonly Lazy _maxFamiliarPrestiges = new Lazy(() => GetConfigValue("MaxFamiliarPrestiges")); private static readonly Lazy _familiarPrestigeStatMultiplier = new Lazy(() => GetConfigValue("FamiliarPrestigeStatMultiplier")); private static readonly Lazy _maxFamiliarLevel = new Lazy(() => GetConfigValue("MaxFamiliarLevel")); private static readonly Lazy _allowVBloods = new Lazy(() => GetConfigValue("AllowVBloods")); private static readonly Lazy _allowMinions = new Lazy(() => GetConfigValue("AllowMinions")); private static readonly Lazy _bannedUnits = new Lazy(() => GetConfigValue("BannedUnits")); private static readonly Lazy _bannedTypes = new Lazy(() => GetConfigValue("BannedTypes")); private static readonly Lazy _equipmentOnly = new Lazy(() => GetConfigValue("EquipmentOnly")); private static readonly Lazy _unitFamiliarMultiplier = new Lazy(() => GetConfigValue("UnitFamiliarMultiplier")); private static readonly Lazy _vBloodFamiliarMultiplier = new Lazy(() => GetConfigValue("VBloodFamiliarMultiplier")); private static readonly Lazy _unitUnlockChance = new Lazy(() => GetConfigValue("UnitUnlockChance")); private static readonly Lazy _vBloodUnlockChance = new Lazy(() => GetConfigValue("VBloodUnlockChance")); private static readonly Lazy _primalEchoes = new Lazy(() => GetConfigValue("PrimalEchoes")); private static readonly Lazy _echoesFactor = new Lazy(() => GetConfigValue("EchoesFactor")); private static readonly Lazy _traitChance = new Lazy(() => GetConfigValue("TraitChance")); private static readonly Lazy _traitRerollItemQuantity = new Lazy(() => GetConfigValue("TraitRerollItemQuantity")); private static readonly Lazy _shinyChance = new Lazy(() => GetConfigValue("ShinyChance")); private static readonly Lazy _shinyCostItemQuantity = new Lazy(() => GetConfigValue("ShinyCostItemQuantity")); private static readonly Lazy _prestigeCostItemQuantity = new Lazy(() => GetConfigValue("PrestigeCostItemQuantity")); private static readonly Lazy _classSystem = new Lazy(() => GetConfigValue("ClassSystem")); private static readonly Lazy _classOnHitEffects = new Lazy(() => GetConfigValue("ClassOnHitEffects")); private static readonly Lazy _onHitProcChance = new Lazy(() => GetConfigValue("OnHitProcChance")); private static readonly Lazy _synergyMultiplier = new Lazy(() => GetConfigValue("SynergyMultiplier")); private static readonly Lazy _bloodKnightWeaponSynergies = new Lazy(() => GetConfigValue("BloodKnightWeaponSynergies")); private static readonly Lazy _bloodKnightBloodSynergies = new Lazy(() => GetConfigValue("BloodKnightBloodSynergies")); private static readonly Lazy _demonHunterWeaponSynergies = new Lazy(() => GetConfigValue("DemonHunterWeaponSynergies")); private static readonly Lazy _demonHunterBloodSynergies = new Lazy(() => GetConfigValue("DemonHunterBloodSynergies")); private static readonly Lazy _vampireLordWeaponSynergies = new Lazy(() => GetConfigValue("VampireLordWeaponSynergies")); private static readonly Lazy _vampireLordBloodSynergies = new Lazy(() => GetConfigValue("VampireLordBloodSynergies")); private static readonly Lazy _shadowBladeWeaponSynergies = new Lazy(() => GetConfigValue("ShadowBladeWeaponSynergies")); private static readonly Lazy _shadowBladeBloodSynergies = new Lazy(() => GetConfigValue("ShadowBladeBloodSynergies")); private static readonly Lazy _arcaneSorcererWeaponSynergies = new Lazy(() => GetConfigValue("ArcaneSorcererWeaponSynergies")); private static readonly Lazy _arcaneSorcererBloodSynergies = new Lazy(() => GetConfigValue("ArcaneSorcererBloodSynergies")); private static readonly Lazy _deathMageWeaponSynergies = new Lazy(() => GetConfigValue("DeathMageWeaponSynergies")); private static readonly Lazy _deathMageBloodSynergies = new Lazy(() => GetConfigValue("DeathMageBloodSynergies")); private static readonly Lazy _defaultClassSpell = new Lazy(() => GetConfigValue("DefaultClassSpell")); private static readonly Lazy _bloodKnightSpells = new Lazy(() => GetConfigValue("BloodKnightSpells")); private static readonly Lazy _demonHunterSpells = new Lazy(() => GetConfigValue("DemonHunterSpells")); private static readonly Lazy _vampireLordSpells = new Lazy(() => GetConfigValue("VampireLordSpells")); private static readonly Lazy _shadowBladeSpells = new Lazy(() => GetConfigValue("ShadowBladeSpells")); private static readonly Lazy _arcaneSorcererSpells = new Lazy(() => GetConfigValue("ArcaneSorcererSpells")); private static readonly Lazy _deathMageSpells = new Lazy(() => GetConfigValue("DeathMageSpells")); public static string LanguageLocalization => _languageLocalization.Value; public static bool Eclipsed => _eclipsed.Value; public static bool UseEmberglassEclipseBridge => _useEmberglassEclipseBridge.Value; public static bool ElitePrimalRifts => _elitePrimalRifts.Value; public static int RiftFrequency => _riftFrequency.Value; public static bool NightmareMode => _nightmareMode.Value; public static bool EliteShardBearers => _eliteShardBearers.Value; public static int ShardBearerLevel => _shardBearerLevel.Value; public static bool PotionStacking => _potionStacking.Value; public static bool BearFormDash => _bearFormDash.Value; public static int PrimalJewelCost => _primalJewelCost.Value; public static string BleedingEdge => _bleedingEdge.Value; public static bool PrimalArsenal => _primalArsenal.Value; public static bool StarterKit => _starterKit.Value; public static string KitPrefabs => _kitPrefabs.Value; public static string KitQuantities => _kitQuantities.Value; public static int KitFamiliar => _kitFamiliar.Value; public static bool QuestSystem => _questSystem.Value; public static bool InfiniteDailies => _infiniteDailies.Value; public static float DailyPerfectChance => _dailyPerfectChance.Value; public static string QuestRewards => _questRewards.Value; public static string QuestRewardAmounts => _questRewardAmounts.Value; public static int RerollDailyPrefab => _rerollDailyPrefab.Value; public static int RerollDailyAmount => _rerollDailyAmount.Value; public static int RerollWeeklyPrefab => _rerollWeeklyPrefab.Value; public static int RerollWeeklyAmount => _rerollWeeklyAmount.Value; public static bool LevelingSystem => _levelingSystem.Value; public static bool RestedXPSystem => _restedXPSystem.Value; public static float RestedXPRate => _restedXPRate.Value; public static int RestedXPMax => _restedXPMax.Value; public static float RestedXPTickRate => _restedXPTickRate.Value; public static int MaxLevel => _maxLevel.Value; public static int StartingLevel => _startingLevel.Value; public static float UnitLevelingMultiplier => _unitLevelingMultiplier.Value; public static float VBloodLevelingMultiplier => _vBloodLevelingMultiplier.Value; public static float DocileUnitMultiplier => _docileUnitMultiplier.Value; public static float WarEventMultiplier => _warEventMultiplier.Value; public static float UnitSpawnerMultiplier => _unitSpawnerMultiplier.Value; public static float UnitSpawnerExpertiseFactor => _unitSpawnerExpertiseFactor.Value; public static int ChangeClassItem => _changeClassItem.Value; public static int ChangeClassQuantity => _changeClassQuantity.Value; public static float GroupLevelingMultiplier => _groupLevelingMultiplier.Value; public static float LevelScalingMultiplier => _levelScalingMultiplier.Value; public static bool ExpShare => _expShare.Value; public static int ExpShareLevelRange => _expShareLevelRange.Value; public static float ExpShareDistance => _expShareDistance.Value; public static bool PrestigeSystem => _prestigeSystem.Value; public static string PrestigeBuffs => _prestigeBuffs.Value; public static string PrestigeLevelsToUnlockClassSpells => _prestigeLevelsToUnlockClassSpells.Value; public static int MaxLevelingPrestiges => _maxLevelingPrestiges.Value; public static float LevelingPrestigeReducer => _levelingPrestigeReducer.Value; public static float PrestigeRatesReducer => _prestigeRatesReducer.Value; public static float PrestigeStatMultiplier => _prestigeStatMultiplier.Value; public static float PrestigeRateMultiplier => _prestigeRateMultiplier.Value; public static bool ExoPrestiging => _exoPrestiging.Value; public static int ExoPrestigeReward => _exoPrestigeReward.Value; public static int ExoPrestigeRewardQuantity => _exoPrestigeRewardQuantity.Value; public static bool TrueImmortal => _trueImmortal.Value; public static bool PrestigeLeaderboard => _prestigeLeaderboard.Value; public static bool ExpertiseSystem => _expertiseSystem.Value; public static int MaxExpertisePrestiges => _maxExpertisePrestiges.Value; public static bool UnarmedSlots => _unarmedSlots.Value; public static bool FishingSlots => _fishingSlots.Value; public static bool Duality => _duality.Value; public static bool ShiftSlot => _shiftSlot.Value; public static int MaxExpertiseLevel => _maxExpertiseLevel.Value; public static float UnitExpertiseMultiplier => _unitExpertiseMultiplier.Value; public static float VBloodExpertiseMultiplier => _vBloodExpertiseMultiplier.Value; public static int ExpertiseStatChoices => _expertiseStatChoices.Value; public static int ResetExpertiseItem => _resetExpertiseItem.Value; public static int ResetExpertiseItemQuantity => _resetExpertiseItemQuantity.Value; public static float MaxHealth => _maxHealth.Value; public static float MovementSpeed => _movementSpeed.Value; public static float PrimaryAttackSpeed => _primaryAttackSpeed.Value; public static float PhysicalLifeLeech => _physicalLifeLeech.Value; public static float SpellLifeLeech => _spellLifeLeech.Value; public static float PrimaryLifeLeech => _primaryLifeLeech.Value; public static float PhysicalPower => _physicalPower.Value; public static float SpellPower => _spellPower.Value; public static float PhysicalCritChance => _physicalCritChance.Value; public static float PhysicalCritDamage => _physicalCritDamage.Value; public static float SpellCritChance => _spellCritChance.Value; public static float SpellCritDamage => _spellCritDamage.Value; public static bool LegacySystem => _legacySystem.Value; public static int MaxLegacyPrestiges => _maxLegacyPrestiges.Value; public static bool BloodQualityBonus => _bloodQualityBonus.Value; public static float PrestigeBloodQuality => _prestigeBloodQuality.Value; public static int MaxBloodLevel => _maxBloodLevel.Value; public static float UnitLegacyMultiplier => _unitLegacyMultiplier.Value; public static float VBloodLegacyMultiplier => _vBloodLegacyMultiplier.Value; public static int LegacyStatChoices => _legacyStatChoices.Value; public static int ResetLegacyItem => _resetLegacyItem.Value; public static int ResetLegacyItemQuantity => _resetLegacyItemQuantity.Value; public static float HealingReceived => _healingReceived.Value; public static float DamageReduction => _damageReduction.Value; public static float PhysicalResistance => _physicalResistance.Value; public static float SpellResistance => _spellResistance.Value; public static float ResourceYield => _resourceYield.Value; public static float ReducedBloodDrain => _reducedBloodDrain.Value; public static float SpellCooldownRecoveryRate => _spellCooldownRecoveryRate.Value; public static float WeaponCooldownRecoveryRate => _weaponCooldownRecoveryRate.Value; public static float UltimateCooldownRecoveryRate => _ultimateCooldownRecoveryRate.Value; public static float MinionDamage => _minionDamage.Value; public static float AbilityAttackSpeed => _abilityAttackSpeed.Value; public static float CorruptionDamageReduction => _corruptionDamageReduction.Value; public static bool ProfessionSystem => _professionSystem.Value; public static float ProfessionFactor => _professionFactor.Value; public static string DisabledProfessions => _disabledProfessions.Value; public static bool ExtraRecipes => _extraRecipes.Value; public static bool FamiliarSystem => _familiarSystem.Value; public static bool ShareUnlocks => _shareUnlocks.Value; public static bool FamiliarCombat => _familiarCombat.Value; public static bool FamiliarPvP => _familiarPvP.Value; public static bool FamiliarBattles => _familiarBattles.Value; public static bool FamiliarPrestige => _familiarPrestige.Value; public static int MaxFamiliarPrestiges => _maxFamiliarPrestiges.Value; public static float FamiliarPrestigeStatMultiplier => _familiarPrestigeStatMultiplier.Value; public static int MaxFamiliarLevel => _maxFamiliarLevel.Value; public static bool AllowVBloods => _allowVBloods.Value; public static bool AllowMinions => _allowMinions.Value; public static string BannedUnits => _bannedUnits.Value; public static string BannedTypes => _bannedTypes.Value; public static bool EquipmentOnly => _equipmentOnly.Value; public static float UnitFamiliarMultiplier => _unitFamiliarMultiplier.Value; public static float VBloodFamiliarMultiplier => _vBloodFamiliarMultiplier.Value; public static float UnitUnlockChance => _unitUnlockChance.Value; public static float VBloodUnlockChance => _vBloodUnlockChance.Value; public static bool PrimalEchoes => _primalEchoes.Value; public static int EchoesFactor => _echoesFactor.Value; public static float TraitChance => _traitChance.Value; public static int TraitRerollItemQuantity => _traitRerollItemQuantity.Value; public static float ShinyChance => _shinyChance.Value; public static int ShinyCostItemQuantity => _shinyCostItemQuantity.Value; public static int PrestigeCostItemQuantity => _prestigeCostItemQuantity.Value; public static bool ClassSystem => _classSystem.Value; public static bool ClassOnHitEffects => _classOnHitEffects.Value; public static float OnHitProcChance => _onHitProcChance.Value; public static float SynergyMultiplier => _synergyMultiplier.Value; public static string BloodKnightWeaponSynergies => _bloodKnightWeaponSynergies.Value; public static string BloodKnightBloodSynergies => _bloodKnightBloodSynergies.Value; public static string DemonHunterWeaponSynergies => _demonHunterWeaponSynergies.Value; public static string DemonHunterBloodSynergies => _demonHunterBloodSynergies.Value; public static string VampireLordWeaponSynergies => _vampireLordWeaponSynergies.Value; public static string VampireLordBloodSynergies => _vampireLordBloodSynergies.Value; public static string ShadowBladeWeaponSynergies => _shadowBladeWeaponSynergies.Value; public static string ShadowBladeBloodSynergies => _shadowBladeBloodSynergies.Value; public static string ArcaneSorcererWeaponSynergies => _arcaneSorcererWeaponSynergies.Value; public static string ArcaneSorcererBloodSynergies => _arcaneSorcererBloodSynergies.Value; public static string DeathMageWeaponSynergies => _deathMageWeaponSynergies.Value; public static string DeathMageBloodSynergies => _deathMageBloodSynergies.Value; public static int DefaultClassSpell => _defaultClassSpell.Value; public static string BloodKnightSpells => _bloodKnightSpells.Value; public static string DemonHunterSpells => _demonHunterSpells.Value; public static string VampireLordSpells => _vampireLordSpells.Value; public static string ShadowBladeSpells => _shadowBladeSpells.Value; public static string ArcaneSorcererSpells => _arcaneSorcererSpells.Value; public static string DeathMageSpells => _deathMageSpells.Value; private static T GetConfigValue(string key) { if (ConfigInitialization.FinalConfigValues.TryGetValue(key, out var value)) { return (T)Convert.ChangeType(value, typeof(T)); } ConfigInitialization.ConfigEntryDefinition configEntryDefinition = ConfigInitialization.ConfigEntries.FirstOrDefault((ConfigInitialization.ConfigEntryDefinition e) => e.Key == key); if (configEntryDefinition != null) { return (T)configEntryDefinition.DefaultValue; } throw new InvalidOperationException("Config entry for key '" + key + "' not found."); } } internal static class DataService { private sealed class PersistenceSuppressionScope : IDisposable { private bool disposed; public PersistenceSuppressionScope() { lock (PersistenceSuppressionLock) { persistenceSuppressionDepth++; } } public void Dispose() { lock (PersistenceSuppressionLock) { if (!disposed) { persistenceSuppressionDepth--; disposed = true; } } } } public static class PlayerDictionaries { public static ConcurrentDictionary> _playerExoFormData = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerExperience = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerRestedXP = new ConcurrentDictionary>(); public static ConcurrentDictionary _playerClass = new ConcurrentDictionary(); public static ConcurrentDictionary> _playerPrestiges = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerWoodcutting = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerMining = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerFishing = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerBlacksmithing = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerTailoring = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerEnchanting = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerAlchemy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerHarvesting = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerSwordExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerAxeExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerMaceExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerSpearExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerCrossbowExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerGreatSwordExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerSlashersExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerPistolsExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerReaperExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerLongbowExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerWhipExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerFishingPoleExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerTwinBladesExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerDaggersExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerClawsExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary>> _playerWeaponStats = new ConcurrentDictionary>>(); public static ConcurrentDictionary> _playerUnarmedExpertise = new ConcurrentDictionary>(); public static ConcurrentDictionary _playerSpells = new ConcurrentDictionary(); public static ConcurrentDictionary> _playerWorkerLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerWarriorLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerScholarLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerRogueLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerMutantLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerVBloodLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerDraculinLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerImmortalLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerCreatureLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerBruteLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary> _playerCorruptionLegacy = new ConcurrentDictionary>(); public static ConcurrentDictionary>> _playerBloodStats = new ConcurrentDictionary>>(); public static ConcurrentDictionary _playerFamiliarBox = new ConcurrentDictionary(); public static ConcurrentDictionary _playerBindingIndex = new ConcurrentDictionary(); public static List> _familiarBattleCoords = new List>(); public static List _ignorePrestigeLeaderboard = new List(); public static List _ignoreSharedExperience = new List(); public static ConcurrentDictionary> _playerQuests = new ConcurrentDictionary>(); } public static class PlayerPersistence { public static class JsonFilePaths { public static readonly string PlayerExperienceJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[1], "player_experience.json"); public static readonly string PlayerRestedXPJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[1], "player_rested_xp.json"); public static readonly string PlayerQuestsJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[2], "player_quests.json"); public static readonly string PlayerPrestigesJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[1], "player_prestiges.json"); public static readonly string PlayerExoFormsJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[1], "player_exoforms.json"); public static readonly string PlayerClassesJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[0], "player_classes.json"); public static readonly string PlayerPartiesJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[0], "player_parties.json"); public static readonly string PlayerWoodcuttingJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_woodcutting.json"); public static readonly string PlayerMiningJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_mining.json"); public static readonly string PlayerFishingJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_fishing.json"); public static readonly string PlayerBlacksmithingJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_blacksmithing.json"); public static readonly string PlayerTailoringJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_tailoring.json"); public static readonly string PlayerEnchantingJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_enchanting.json"); public static readonly string PlayerAlchemyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_alchemy.json"); public static readonly string PlayerHarvestingJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[5], "player_harvesting.json"); public static readonly string PlayerSwordExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_sword.json"); public static readonly string PlayerAxeExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_axe.json"); public static readonly string PlayerMaceExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_mace.json"); public static readonly string PlayerSpearExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_spear.json"); public static readonly string PlayerCrossbowExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_crossbow.json"); public static readonly string PlayerGreatSwordExpertise = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_greatsword.json"); public static readonly string PlayerSlashersExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_slashers.json"); public static readonly string PlayerPistolsExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_pistols.json"); public static readonly string PlayerReaperExpertise = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_reaper.json"); public static readonly string PlayerLongbowExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_longbow.json"); public static readonly string PlayerUnarmedExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_unarmed.json"); public static readonly string PlayerWhipExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_whip.json"); public static readonly string PlayerFishingPoleExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_fishingpole.json"); public static readonly string PlayerTwinBladesExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_twinblades.json"); public static readonly string PlayerDaggersExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_daggers.json"); public static readonly string PlayerClawsExpertiseJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_claws.json"); public static readonly string PlayerSpellsJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[1], "player_spells.json"); public static readonly string PlayerWeaponStatsJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[3], "player_weapon_stats.json"); public static readonly string PlayerWorkerLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_worker.json"); public static readonly string PlayerWarriorLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_warrior.json"); public static readonly string PlayerScholarLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_scholar.json"); public static readonly string PlayerRogueLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_rogue.json"); public static readonly string PlayerMutantLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_mutant.json"); public static readonly string PlayerDraculinLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_draculin.json"); public static readonly string PlayerImmortalLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_immortal.json"); public static readonly string PlayerCreatureLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_creature.json"); public static readonly string PlayerBruteLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_brute.json"); public static readonly string PlayerCorruptionLegacyJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_corruption.json"); public static readonly string PlayerBloodStatsJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[4], "player_blood_stats.json"); public static readonly string FamiliarBattleCoordsJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[6], "familiar_battle_coords.json"); public static readonly string IgnoredPrestigeLeaderboardJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[1], "ignored_prestige_leaderboard.json"); public static readonly string IgnoredSharedExperienceJson = Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[1], "ignored_shared_experience.json"); } private static readonly JsonSerializerOptions _jsonOptions = new JsonSerializerOptions { WriteIndented = true, IncludeFields = true }; private static readonly Dictionary _filePaths = new Dictionary { { "Experience", JsonFilePaths.PlayerExperienceJson }, { "RestedXP", JsonFilePaths.PlayerRestedXPJson }, { "Quests", JsonFilePaths.PlayerQuestsJson }, { "Classes", JsonFilePaths.PlayerClassesJson }, { "Prestiges", JsonFilePaths.PlayerPrestigesJson }, { "ExoFormData", JsonFilePaths.PlayerExoFormsJson }, { "PlayerParties", JsonFilePaths.PlayerPartiesJson }, { "Woodcutting", JsonFilePaths.PlayerWoodcuttingJson }, { "Mining", JsonFilePaths.PlayerMiningJson }, { "Fishing", JsonFilePaths.PlayerFishingJson }, { "Blacksmithing", JsonFilePaths.PlayerBlacksmithingJson }, { "Tailoring", JsonFilePaths.PlayerTailoringJson }, { "Enchanting", JsonFilePaths.PlayerEnchantingJson }, { "Alchemy", JsonFilePaths.PlayerAlchemyJson }, { "Harvesting", JsonFilePaths.PlayerHarvestingJson }, { "SwordExpertise", JsonFilePaths.PlayerSwordExpertiseJson }, { "AxeExpertise", JsonFilePaths.PlayerAxeExpertiseJson }, { "MaceExpertise", JsonFilePaths.PlayerMaceExpertiseJson }, { "SpearExpertise", JsonFilePaths.PlayerSpearExpertiseJson }, { "CrossbowExpertise", JsonFilePaths.PlayerCrossbowExpertiseJson }, { "GreatSwordExpertise", JsonFilePaths.PlayerGreatSwordExpertise }, { "SlashersExpertise", JsonFilePaths.PlayerSlashersExpertiseJson }, { "PistolsExpertise", JsonFilePaths.PlayerPistolsExpertiseJson }, { "ReaperExpertise", JsonFilePaths.PlayerReaperExpertise }, { "LongbowExpertise", JsonFilePaths.PlayerLongbowExpertiseJson }, { "WhipExpertise", JsonFilePaths.PlayerWhipExpertiseJson }, { "FishingPoleExpertise", JsonFilePaths.PlayerFishingPoleExpertiseJson }, { "UnarmedExpertise", JsonFilePaths.PlayerUnarmedExpertiseJson }, { "TwinBladesExpertise", JsonFilePaths.PlayerTwinBladesExpertiseJson }, { "DaggersExpertise", JsonFilePaths.PlayerDaggersExpertiseJson }, { "ClawsExpertise", JsonFilePaths.PlayerClawsExpertiseJson }, { "PlayerSpells", JsonFilePaths.PlayerSpellsJson }, { "WeaponStats", JsonFilePaths.PlayerWeaponStatsJson }, { "WorkerLegacy", JsonFilePaths.PlayerWorkerLegacyJson }, { "WarriorLegacy", JsonFilePaths.PlayerWarriorLegacyJson }, { "ScholarLegacy", JsonFilePaths.PlayerScholarLegacyJson }, { "RogueLegacy", JsonFilePaths.PlayerRogueLegacyJson }, { "MutantLegacy", JsonFilePaths.PlayerMutantLegacyJson }, { "DraculinLegacy", JsonFilePaths.PlayerDraculinLegacyJson }, { "ImmortalLegacy", JsonFilePaths.PlayerImmortalLegacyJson }, { "CreatureLegacy", JsonFilePaths.PlayerCreatureLegacyJson }, { "BruteLegacy", JsonFilePaths.PlayerBruteLegacyJson }, { "CorruptionLegacy", JsonFilePaths.PlayerCorruptionLegacyJson }, { "BloodStats", JsonFilePaths.PlayerBloodStatsJson }, { "FamiliarBattleCoords", JsonFilePaths.FamiliarBattleCoordsJson }, { "IgnoredPrestigeLeaderboard", JsonFilePaths.IgnoredPrestigeLeaderboardJson }, { "IgnoredSharedExperience", JsonFilePaths.IgnoredSharedExperienceJson } }; private static void LoadData(ref ConcurrentDictionary dataStructure, string key) { //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Expected O, but got Unknown string path = _filePaths[key]; if (!File.Exists(path)) { return; } try { string text = File.ReadAllText(path); text = text.Replace("Sanguimancy", "UnarmedExpertise"); if (string.IsNullOrWhiteSpace(text)) { dataStructure = new ConcurrentDictionary(); return; } ConcurrentDictionary concurrentDictionary = JsonSerializer.Deserialize>(text, _jsonOptions); dataStructure = concurrentDictionary ?? new ConcurrentDictionary(); } catch (IOException ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(32, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to read "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data from file: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogWarning(val); } } private static void LoadData(ref List> dataStructure, string key) { //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Expected O, but got Unknown string path = _filePaths[key]; if (!File.Exists(path)) { File.Create(path).Dispose(); dataStructure = new List>(); return; } try { string text = File.ReadAllText(path); if (string.IsNullOrWhiteSpace(text)) { dataStructure = new List>(); return; } List> list = JsonSerializer.Deserialize>>(text, _jsonOptions); dataStructure = list ?? new List>(); } catch (IOException ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(32, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to read "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data from file: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogWarning(val); } } private static void LoadData(ref List dataStructure, string key) { //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Expected O, but got Unknown string path = _filePaths[key]; if (!File.Exists(path)) { File.Create(path).Dispose(); dataStructure = new List(); return; } try { string text = File.ReadAllText(path); if (string.IsNullOrWhiteSpace(text)) { dataStructure = new List(); return; } List list = JsonSerializer.Deserialize>(text, _jsonOptions); dataStructure = list ?? new List(); } catch (IOException ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(32, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to read "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data from file: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogWarning(val); } } private static void SaveData(ConcurrentDictionary data, string key) { //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Expected O, but got Unknown //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Expected O, but got Unknown if (IsPersistenceSuppressed) { return; } string path = _filePaths[key]; bool flag = default(bool); try { string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(path, contents); } catch (IOException ex) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(31, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to write "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data to file: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogWarning(val); } catch (JsonException ex2) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(44, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("JSON serialization error when saving "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex2.Message); } log2.LogWarning(val); } } private static void SaveData(List> data, string key) { //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Expected O, but got Unknown //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Expected O, but got Unknown if (IsPersistenceSuppressed) { return; } string path = _filePaths[key]; bool flag = default(bool); try { string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(path, contents); } catch (IOException ex) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(31, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to write "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data to file: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogWarning(val); } catch (JsonException ex2) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(44, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("JSON serialization error when saving "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex2.Message); } log2.LogWarning(val); } } private static void SaveData(List data, string key) { //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Expected O, but got Unknown //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Expected O, but got Unknown if (IsPersistenceSuppressed) { return; } string path = _filePaths[key]; bool flag = default(bool); try { string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(path, contents); } catch (IOException ex) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(31, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to write "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" data to file: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogWarning(val); } catch (JsonException ex2) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(35, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("JSON serialization error saving "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(key); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex2.Message); } log2.LogWarning(val); } } public static void LoadPlayerExperience() { LoadData(ref PlayerDictionaries._playerExperience, "Experience"); } public static void LoadPlayerRestedXP() { LoadData(ref PlayerDictionaries._playerRestedXP, "RestedXP"); } public static void LoadPlayerQuests() { LoadData(ref PlayerDictionaries._playerQuests, "Quests"); } public static void LoadPlayerClasses() { LoadData(ref PlayerDictionaries._playerClass, "Classes"); } public static void LoadPlayerPrestiges() { LoadData(ref PlayerDictionaries._playerPrestiges, "Prestiges"); } public static void LoadPlayerExoFormData() { LoadData(ref PlayerDictionaries._playerExoFormData, "ExoFormData"); } public static void LoadPlayerWoodcutting() { LoadData(ref PlayerDictionaries._playerWoodcutting, "Woodcutting"); } public static void LoadPlayerMining() { LoadData(ref PlayerDictionaries._playerMining, "Mining"); } public static void LoadPlayerFishing() { LoadData(ref PlayerDictionaries._playerFishing, "Fishing"); } public static void LoadPlayerBlacksmithing() { LoadData(ref PlayerDictionaries._playerBlacksmithing, "Blacksmithing"); } public static void LoadPlayerTailoring() { LoadData(ref PlayerDictionaries._playerTailoring, "Tailoring"); } public static void LoadPlayerEnchanting() { LoadData(ref PlayerDictionaries._playerEnchanting, "Enchanting"); } public static void LoadPlayerAlchemy() { LoadData(ref PlayerDictionaries._playerAlchemy, "Alchemy"); } public static void LoadPlayerHarvesting() { LoadData(ref PlayerDictionaries._playerHarvesting, "Harvesting"); } public static void LoadPlayerSwordExpertise() { LoadData(ref PlayerDictionaries._playerSwordExpertise, "SwordExpertise"); } public static void LoadPlayerAxeExpertise() { LoadData(ref PlayerDictionaries._playerAxeExpertise, "AxeExpertise"); } public static void LoadPlayerMaceExpertise() { LoadData(ref PlayerDictionaries._playerMaceExpertise, "MaceExpertise"); } public static void LoadPlayerSpearExpertise() { LoadData(ref PlayerDictionaries._playerSpearExpertise, "SpearExpertise"); } public static void LoadPlayerCrossbowExpertise() { LoadData(ref PlayerDictionaries._playerCrossbowExpertise, "CrossbowExpertise"); } public static void LoadPlayerGreatSwordExpertise() { LoadData(ref PlayerDictionaries._playerGreatSwordExpertise, "GreatSwordExpertise"); } public static void LoadPlayerSlashersExpertise() { LoadData(ref PlayerDictionaries._playerSlashersExpertise, "SlashersExpertise"); } public static void LoadPlayerPistolsExpertise() { LoadData(ref PlayerDictionaries._playerPistolsExpertise, "PistolsExpertise"); } public static void LoadPlayerReaperExpertise() { LoadData(ref PlayerDictionaries._playerReaperExpertise, "ReaperExpertise"); } public static void LoadPlayerLongbowExpertise() { LoadData(ref PlayerDictionaries._playerLongbowExpertise, "LongbowExpertise"); } public static void LoadPlayerWhipExpertise() { LoadData(ref PlayerDictionaries._playerWhipExpertise, "WhipExpertise"); } public static void LoadPlayerFishingPoleExpertise() { LoadData(ref PlayerDictionaries._playerFishingPoleExpertise, "FishingPoleExpertise"); } public static void LoadPlayerUnarmedExpertise() { LoadData(ref PlayerDictionaries._playerUnarmedExpertise, "UnarmedExpertise"); } public static void LoadPlayerTwinBladesExpertise() { LoadData(ref PlayerDictionaries._playerTwinBladesExpertise, "TwinBladesExpertise"); } public static void LoadPlayerDaggersExpertise() { LoadData(ref PlayerDictionaries._playerDaggersExpertise, "DaggersExpertise"); } public static void LoadPlayerClawsExpertise() { LoadData(ref PlayerDictionaries._playerClawsExpertise, "ClawsExpertise"); } public static void LoadPlayerSpells() { LoadData(ref PlayerDictionaries._playerSpells, "PlayerSpells"); } public static void LoadPlayerWeaponStats() { LoadData(ref PlayerDictionaries._playerWeaponStats, "WeaponStats"); } public static void LoadPlayerWorkerLegacy() { LoadData(ref PlayerDictionaries._playerWorkerLegacy, "WorkerLegacy"); } public static void LoadPlayerWarriorLegacy() { LoadData(ref PlayerDictionaries._playerWarriorLegacy, "WarriorLegacy"); } public static void LoadPlayerScholarLegacy() { LoadData(ref PlayerDictionaries._playerScholarLegacy, "ScholarLegacy"); } public static void LoadPlayerRogueLegacy() { LoadData(ref PlayerDictionaries._playerRogueLegacy, "RogueLegacy"); } public static void LoadPlayerMutantLegacy() { LoadData(ref PlayerDictionaries._playerMutantLegacy, "MutantLegacy"); } public static void LoadPlayerDraculinLegacy() { LoadData(ref PlayerDictionaries._playerDraculinLegacy, "DraculinLegacy"); } public static void LoadPlayerImmortalLegacy() { LoadData(ref PlayerDictionaries._playerImmortalLegacy, "ImmortalLegacy"); } public static void LoadPlayerCreatureLegacy() { LoadData(ref PlayerDictionaries._playerCreatureLegacy, "CreatureLegacy"); } public static void LoadPlayerBruteLegacy() { LoadData(ref PlayerDictionaries._playerBruteLegacy, "BruteLegacy"); } public static void LoadPlayerCorruptionLegacy() { LoadData(ref PlayerDictionaries._playerCorruptionLegacy, "CorruptionLegacy"); } public static void LoadPlayerBloodStats() { LoadData(ref PlayerDictionaries._playerBloodStats, "BloodStats"); } public static void LoadFamiliarBattleCoords() { LoadData>(ref PlayerDictionaries._familiarBattleCoords, "FamiliarBattleCoords"); } public static void LoadIgnoredPrestigeLeaderboard() { LoadData>(ref PlayerDictionaries._ignorePrestigeLeaderboard, "IgnoredPrestigeLeaderboard"); } public static void LoadIgnoredSharedExperience() { LoadData>(ref PlayerDictionaries._ignoreSharedExperience, "IgnoredSharedExperience"); } public static void SavePlayerExperience() { SaveData(PlayerDictionaries._playerExperience, "Experience"); } public static void SavePlayerRestedXP() { SaveData(PlayerDictionaries._playerRestedXP, "RestedXP"); } public static void SavePlayerQuests() { SaveData(PlayerDictionaries._playerQuests, "Quests"); } public static void SavePlayerClasses() { SaveData(PlayerDictionaries._playerClass, "Classes"); } public static void SavePlayerPrestiges() { SaveData(PlayerDictionaries._playerPrestiges, "Prestiges"); } public static void SavePlayerExoFormData() { SaveData(PlayerDictionaries._playerExoFormData, "ExoFormData"); } public static void SavePlayerWoodcutting() { SaveData(PlayerDictionaries._playerWoodcutting, "Woodcutting"); } public static void SavePlayerMining() { SaveData(PlayerDictionaries._playerMining, "Mining"); } public static void SavePlayerFishing() { SaveData(PlayerDictionaries._playerFishing, "Fishing"); } public static void SavePlayerBlacksmithing() { SaveData(PlayerDictionaries._playerBlacksmithing, "Blacksmithing"); } public static void SavePlayerTailoring() { SaveData(PlayerDictionaries._playerTailoring, "Tailoring"); } public static void SavePlayerEnchanting() { SaveData(PlayerDictionaries._playerEnchanting, "Enchanting"); } public static void SavePlayerAlchemy() { SaveData(PlayerDictionaries._playerAlchemy, "Alchemy"); } public static void SavePlayerHarvesting() { SaveData(PlayerDictionaries._playerHarvesting, "Harvesting"); } public static void SavePlayerSwordExpertise() { SaveData(PlayerDictionaries._playerSwordExpertise, "SwordExpertise"); } public static void SavePlayerAxeExpertise() { SaveData(PlayerDictionaries._playerAxeExpertise, "AxeExpertise"); } public static void SavePlayerMaceExpertise() { SaveData(PlayerDictionaries._playerMaceExpertise, "MaceExpertise"); } public static void SavePlayerSpearExpertise() { SaveData(PlayerDictionaries._playerSpearExpertise, "SpearExpertise"); } public static void SavePlayerCrossbowExpertise() { SaveData(PlayerDictionaries._playerCrossbowExpertise, "CrossbowExpertise"); } public static void SavePlayerGreatSwordExpertise() { SaveData(PlayerDictionaries._playerGreatSwordExpertise, "GreatSwordExpertise"); } public static void SavePlayerSlashersExpertise() { SaveData(PlayerDictionaries._playerSlashersExpertise, "SlashersExpertise"); } public static void SavePlayerPistolsExpertise() { SaveData(PlayerDictionaries._playerPistolsExpertise, "PistolsExpertise"); } public static void SavePlayerReaperExpertise() { SaveData(PlayerDictionaries._playerReaperExpertise, "ReaperExpertise"); } public static void SavePlayerLongbowExpertise() { SaveData(PlayerDictionaries._playerLongbowExpertise, "LongbowExpertise"); } public static void SavePlayerWhipExpertise() { SaveData(PlayerDictionaries._playerWhipExpertise, "WhipExpertise"); } public static void SavePlayerFishingPoleExpertise() { SaveData(PlayerDictionaries._playerFishingPoleExpertise, "FishingPoleExpertise"); } public static void SavePlayerUnarmedExpertise() { SaveData(PlayerDictionaries._playerUnarmedExpertise, "UnarmedExpertise"); } public static void SavePlayerTwinBladesExpertise() { SaveData(PlayerDictionaries._playerTwinBladesExpertise, "TwinBladesExpertise"); } public static void SavePlayerDaggersExpertise() { SaveData(PlayerDictionaries._playerDaggersExpertise, "DaggersExpertise"); } public static void SavePlayerClawsExpertise() { SaveData(PlayerDictionaries._playerClawsExpertise, "ClawsExpertise"); } public static void SavePlayerSpells() { SaveData(PlayerDictionaries._playerSpells, "PlayerSpells"); } public static void SavePlayerWeaponStats() { SaveData(PlayerDictionaries._playerWeaponStats, "WeaponStats"); } public static void SavePlayerWorkerLegacy() { SaveData(PlayerDictionaries._playerWorkerLegacy, "WorkerLegacy"); } public static void SavePlayerWarriorLegacy() { SaveData(PlayerDictionaries._playerWarriorLegacy, "WarriorLegacy"); } public static void SavePlayerScholarLegacy() { SaveData(PlayerDictionaries._playerScholarLegacy, "ScholarLegacy"); } public static void SavePlayerRogueLegacy() { SaveData(PlayerDictionaries._playerRogueLegacy, "RogueLegacy"); } public static void SavePlayerMutantLegacy() { SaveData(PlayerDictionaries._playerMutantLegacy, "MutantLegacy"); } public static void SavePlayerDraculinLegacy() { SaveData(PlayerDictionaries._playerDraculinLegacy, "DraculinLegacy"); } public static void SavePlayerImmortalLegacy() { SaveData(PlayerDictionaries._playerImmortalLegacy, "ImmortalLegacy"); } public static void SavePlayerCreatureLegacy() { SaveData(PlayerDictionaries._playerCreatureLegacy, "CreatureLegacy"); } public static void SavePlayerBruteLegacy() { SaveData(PlayerDictionaries._playerBruteLegacy, "BruteLegacy"); } public static void SavePlayerCorruptionLegacy() { SaveData(PlayerDictionaries._playerCorruptionLegacy, "CorruptionLegacy"); } public static void SavePlayerBloodStats() { SaveData(PlayerDictionaries._playerBloodStats, "BloodStats"); } public static void SaveFamiliarBattleCoords() { SaveData>(PlayerDictionaries._familiarBattleCoords, "FamiliarBattleCoords"); } public static void SaveIgnoredPrestigeLeaderboard() { SaveData>(PlayerDictionaries._ignorePrestigeLeaderboard, "IgnoredPrestigeLeaderboard"); } public static void SaveIgnoredSharedExperience() { SaveData>(PlayerDictionaries._ignoreSharedExperience, "IgnoredSharedExperience"); } } public static class PlayerBoolsManager { private static string GetFilePath(ulong steamId) { return Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[9], $"{steamId}_player_bools.json"); } public static void SavePlayerBools(ulong steamId, Dictionary preferences) { string filePath = GetFilePath(steamId); Directory.CreateDirectory(Path.GetDirectoryName(filePath)); JsonSerializerOptions options = new JsonSerializerOptions { WriteIndented = true }; string contents = JsonSerializer.Serialize(preferences, options); File.WriteAllText(filePath, contents); } public static Dictionary LoadPlayerBools(ulong steamId) { string filePath = GetFilePath(steamId); if (!File.Exists(filePath)) { return new Dictionary(); } return JsonSerializer.Deserialize>(File.ReadAllText(filePath)); } public static Dictionary GetOrInitializePlayerBools(ulong steamId, Dictionary defaultBools) { Dictionary dictionary = LoadPlayerBools(steamId); foreach (string key in defaultBools.Keys) { if (!dictionary.ContainsKey(key)) { dictionary[key] = defaultBools[key]; } } dictionary["Passives"] = false; SavePlayerBools(steamId, dictionary); return dictionary; } } public static class FamiliarPersistence { public static class FamiliarUnlocksManager { [Serializable] public class FamiliarUnlocksData { public Dictionary> FamiliarUnlocks { get; set; } = new Dictionary>(); } private static string GetFilePath(ulong steamId) { return Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[8], $"{steamId}_familiar_unlocks.json"); } public static void SaveFamiliarUnlocksData(ulong steamId, FamiliarUnlocksData data) { string filePath = GetFilePath(steamId); string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(filePath, contents); } public static FamiliarUnlocksData LoadFamiliarUnlocksData(ulong steamId) { string filePath = GetFilePath(steamId); if (!File.Exists(filePath)) { return new FamiliarUnlocksData(); } return JsonSerializer.Deserialize(File.ReadAllText(filePath)); } } public static class FamiliarExperienceManager { [Serializable] public class FamiliarExperienceData { public Dictionary> FamiliarExperience { get; set; } = new Dictionary>(); } private static string GetFilePath(ulong steamId) { return Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[7], $"{steamId}_familiar_experience.json"); } public static void SaveFamiliarExperienceData(ulong steamId, FamiliarExperienceData data) { string filePath = GetFilePath(steamId); string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(filePath, contents); } public static FamiliarExperienceData LoadFamiliarExperienceData(ulong steamId) { string filePath = GetFilePath(steamId); if (!File.Exists(filePath)) { return new FamiliarExperienceData(); } return JsonSerializer.Deserialize(File.ReadAllText(filePath)); } } public static class FamiliarPrestigeManager { [Serializable] public class FamiliarPrestigeData { public Dictionary FamiliarPrestige { get; set; } = new Dictionary(); } private static string GetFilePath(ulong steamId) { return Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[7], $"{steamId}_familiar_prestige.json"); } public static void SaveFamiliarPrestigeData(ulong steamId, FamiliarPrestigeData data) { string filePath = GetFilePath(steamId); string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(filePath, contents); } public static FamiliarPrestigeData LoadFamiliarPrestigeData(ulong steamId) { string filePath = GetFilePath(steamId); if (!File.Exists(filePath)) { return new FamiliarPrestigeData(); } return JsonSerializer.Deserialize(File.ReadAllText(filePath)); } } public static class FamiliarBuffsManager { [Serializable] public class FamiliarBuffsData { public Dictionary> FamiliarBuffs { get; set; } = new Dictionary>(); } private static string GetFilePath(ulong steamId) { return Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[8], $"{steamId}_familiar_buffs.json"); } public static void SaveFamiliarBuffsData(ulong steamId, FamiliarBuffsData data) { string filePath = GetFilePath(steamId); string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(filePath, contents); } public static FamiliarBuffsData LoadFamiliarBuffsData(ulong steamId) { string filePath = GetFilePath(steamId); if (!File.Exists(filePath)) { return new FamiliarBuffsData(); } return JsonSerializer.Deserialize(File.ReadAllText(filePath)); } } public static class FamiliarBattleGroupsManager { [Serializable] public class FamiliarBattleGroup { public string Name { get; set; } public List Familiars { get; set; } = new List(3) { 0, 0, 0 }; } [Serializable] public class FamiliarBattleGroupsData { public List BattleGroups { get; set; } = new List(); } private const int MAX_BATTLE_GROUPS = 10; private static readonly ConcurrentDictionary _activeFamiliarBattleGroup = new ConcurrentDictionary(); private static string GetFilePath(ulong steamId) { return Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[11], $"{steamId}_familiar_battle_groups.json"); } public static void SaveFamiliarBattleGroupsData(ulong steamId, FamiliarBattleGroupsData data) { string filePath = GetFilePath(steamId); string contents = JsonSerializer.Serialize(data, _jsonOptions); File.WriteAllText(filePath, contents); } public static FamiliarBattleGroupsData LoadFamiliarBattleGroupsData(ulong steamId) { string filePath = GetFilePath(steamId); if (!File.Exists(filePath)) { return new FamiliarBattleGroupsData(); } return JsonSerializer.Deserialize(File.ReadAllText(filePath)); } public static bool AssignFamiliarToGroup(ChatCommandContext ctx, ulong steamId, string groupName, int slotIndex) { FamiliarBattleGroupsData familiarBattleGroupsData = LoadFamiliarBattleGroupsData(steamId); if (!familiarBattleGroupsData.BattleGroups.Any((FamiliarBattleGroup bg) => bg.Name == groupName)) { return false; } FamiliarBattleGroup familiarBattleGroup = familiarBattleGroupsData.BattleGroups.First((FamiliarBattleGroup bg) => bg.Name == groupName); if (familiarBattleGroup.Familiars.Contains(Familiars.ActiveFamiliarManager.GetActiveFamiliarData(steamId).FamiliarId)) { LocalizationService.HandleReply(ctx, "Active familiar already present in battle group!"); return false; } familiarBattleGroup.Familiars[slotIndex - 1] = Familiars.ActiveFamiliarManager.GetActiveFamiliarData(steamId).FamiliarId; SaveFamiliarBattleGroupsData(steamId, familiarBattleGroupsData); return true; } public static bool AssignFamiliarToGroupDebug(ulong steamId, string groupName, int slotIndex, int familiarId) { //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Expected O, but got Unknown //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Expected O, but got Unknown FamiliarBattleGroupsData familiarBattleGroupsData = LoadFamiliarBattleGroupsData(steamId); FamiliarBattleGroup familiarBattleGroup = familiarBattleGroupsData.BattleGroups.FirstOrDefault((FamiliarBattleGroup bg) => bg.Name == groupName); bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val; if (familiarBattleGroup == null) { ManualLogSource log = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(52, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Battle group "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(groupName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" not found for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" for auto queue testing!"); } log.LogWarning(val); return false; } familiarBattleGroup.Familiars[slotIndex] = familiarId; SaveFamiliarBattleGroupsData(steamId, familiarBattleGroupsData); ManualLogSource log2 = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(57, 4, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Assigned familiar "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(familiarId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" to "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(groupName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" slot "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(slotIndex); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" for auto queue testing!"); } log2.LogWarning(val); return true; } public static FamiliarBattleGroup GetFamiliarBattleGroup(ulong steamId, string groupName) { return LoadFamiliarBattleGroupsData(steamId).BattleGroups.FirstOrDefault((FamiliarBattleGroup bg) => bg.Name == groupName); } public static bool CreateBattleGroup(ChatCommandContext ctx, ulong steamId, string groupName) { FamiliarBattleGroupsData familiarBattleGroupsData = LoadFamiliarBattleGroupsData(steamId); if (familiarBattleGroupsData.BattleGroups.Count >= 10) { LocalizationService.HandleReply(ctx, $"Can't have more than {10} battle groups!"); return false; } if (familiarBattleGroupsData.BattleGroups.Any((FamiliarBattleGroup bg) => bg.Name == groupName)) { return false; } familiarBattleGroupsData.BattleGroups.Add(new FamiliarBattleGroup { Name = groupName }); SaveFamiliarBattleGroupsData(steamId, familiarBattleGroupsData); return true; } public static bool DeleteBattleGroup(ChatCommandContext ctx, ulong steamId, string groupName) { FamiliarBattleGroupsData familiarBattleGroupsData = LoadFamiliarBattleGroupsData(steamId); FamiliarBattleGroup familiarBattleGroup = familiarBattleGroupsData.BattleGroups.FirstOrDefault((FamiliarBattleGroup bg) => bg.Name == groupName); if (familiarBattleGroup == null) { return false; } familiarBattleGroupsData.BattleGroups.Remove(familiarBattleGroup); SaveFamiliarBattleGroupsData(steamId, familiarBattleGroupsData); LocalizationService.HandleReply(ctx, "Deleted battle group " + groupName + "!"); return true; } public static bool SetActiveBattleGroup(ChatCommandContext ctx, ulong steamId, string groupName) { FamiliarBattleGroup familiarBattleGroup = LoadFamiliarBattleGroupsData(steamId).BattleGroups.FirstOrDefault((FamiliarBattleGroup bg) => bg.Name == groupName); if (familiarBattleGroup == null) { return false; } _activeFamiliarBattleGroup[steamId] = familiarBattleGroup; return true; } public static string GetActiveBattleGroupName(ulong steamId) { if (!_activeFamiliarBattleGroup.TryGetValue(steamId, out var value)) { return string.Empty; } return value.Name; } public static void HandleBattleGroupDetailsReply(ChatCommandContext ctx, ulong steamId, FamiliarBattleGroup battleGroup) { if (battleGroup.Familiars.Any((int x) => x != 0)) { FamiliarBuffsManager.FamiliarBuffsData buffsData = FamiliarBuffsManager.LoadFamiliarBuffsData(steamId); FamiliarPrestigeManager.FamiliarPrestigeData prestigeData = FamiliarPrestigeManager.LoadFamiliarPrestigeData(steamId); List familiars = new List(); BuildBattleGroupDetailsReply(steamId, buffsData, prestigeData, battleGroup, ref familiars); string text = string.Join(", ", familiars); LocalizationService.HandleReply(ctx, "Battle Group - " + text); } else { LocalizationService.HandleReply(ctx, "No familiars in battle group!"); } } private static void BuildBattleGroupDetailsReply(ulong steamId, FamiliarBuffsManager.FamiliarBuffsData buffsData, FamiliarPrestigeManager.FamiliarPrestigeData prestigeData, FamiliarBattleGroup battleGroup, ref List familiars) { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) foreach (int familiar in battleGroup.Familiars) { if (familiar != 0) { string localizedName = VExtensions.GetLocalizedName(new PrefabGUID(familiar)); string text = ""; int key = FamiliarLevelingSystem.GetFamiliarExperience(steamId, familiar).Key; int value = (prestigeData.FamiliarPrestige.ContainsKey(familiar) ? prestigeData.FamiliarPrestige[familiar] : 0); if (buffsData.FamiliarBuffs.ContainsKey(familiar) && FamiliarUnlockSystem.ShinyBuffColorHexes.TryGetValue(new PrefabGUID(buffsData.FamiliarBuffs[familiar][0]), out var value2)) { text = ""; } familiars.Add($"{battleGroup.Familiars.IndexOf(familiar) + 1}: {localizedName}{(buffsData.FamiliarBuffs.ContainsKey(familiar) ? (text + "*") : "")} [{key}][{value}]"); } } } } public static class FamiliarEquipmentManager { private static readonly FamiliarEquipment.EquipmentBaseV2 _emptySlot = CreateEmpty(); private const int EQUIPMENT_SLOTS = 6; private static readonly JsonSerializerOptions _jsonOptions = new JsonSerializerOptions { WriteIndented = true, Converters = { (JsonConverter)new FamiliarEquipment.EquipmentBaseConverter() } }; private static readonly JsonSerializerOptions _jsonOptionsV2 = new JsonSerializerOptions { WriteIndented = true, Converters = { (JsonConverter)new FamiliarEquipment.EquipmentBaseV2Converter() } }; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static FamiliarEquipment.StandardEquipmentV2 CreateEmpty() { return new FamiliarEquipment.StandardEquipmentV2 { Equipment = 0, Quality = 0, Durability = 0 }; } private static string GetFilePath(ulong steamId) { return Path.Combine(ConfigService.ConfigInitialization.DirectoryPaths[10], $"{steamId}_familiar_equipment.json"); } public static void SaveFamiliarEquipmentData(ulong steamId, FamiliarEquipment.FamiliarEquipmentDataV2 data) { //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Expected O, but got Unknown try { File.WriteAllText(GetFilePath(steamId), JsonSerializer.Serialize(data, _jsonOptions)); } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(33, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[SaveFamiliarEquipmentData] ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") – "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogError(val); } } public static FamiliarEquipment.FamiliarEquipmentDataV2 LoadFamiliarEquipment(ulong steamId) { string filePath = GetFilePath(steamId); FamiliarEquipment.FamiliarEquipmentDataV2 familiarEquipmentDataV = TryLoad(filePath, _jsonOptionsV2) ?? ConvertFromV1(TryLoad(filePath, _jsonOptions) ?? new FamiliarEquipment.FamiliarEquipmentData()) ?? new FamiliarEquipment.FamiliarEquipmentDataV2(); int[] array = familiarEquipmentDataV.FamiliarEquipment.Keys.ToArray(); foreach (int key in array) { familiarEquipmentDataV.FamiliarEquipment[key] = ConvertList(familiarEquipmentDataV.FamiliarEquipment[key]); } SaveFamiliarEquipmentData(steamId, familiarEquipmentDataV); return familiarEquipmentDataV; } private static T TryLoad(string p, JsonSerializerOptions opts) { if (!File.Exists(p)) { return default(T); } return JsonSerializer.Deserialize(File.ReadAllText(p), opts); } private static FamiliarEquipment.FamiliarEquipmentDataV2 ConvertFromV1(FamiliarEquipment.FamiliarEquipmentData oldData) { FamiliarEquipment.FamiliarEquipmentDataV2 familiarEquipmentDataV = new FamiliarEquipment.FamiliarEquipmentDataV2(); foreach (var (key, source) in oldData.FamiliarEquipment) { familiarEquipmentDataV.FamiliarEquipment[key] = ConvertList(source); } return familiarEquipmentDataV; } private static List ConvertList(IEnumerable source) { List list = new List(6); foreach (T item in source) { object obj = item; if (!(obj is FamiliarEquipment.StandardEquipment standardEquipment)) { if (!(obj is FamiliarEquipment.AncestralWeapon ancestralWeapon)) { if (!(obj is FamiliarEquipment.StandardEquipmentV2 standardEquipmentV)) { if (obj is FamiliarEquipment.AncestralWeaponV2 ancestralWeaponV) { list.Add(ToStdV2(ancestralWeaponV.Equipment, ancestralWeaponV.Quality, ancestralWeaponV.Durability)); } } else { list.Add(ToStdV2(standardEquipmentV.Equipment, standardEquipmentV.Quality, standardEquipmentV.Durability)); } } else { list.Add(ToStdV2(ancestralWeapon.Equipment, ancestralWeapon.Quality)); } } else { list.Add(ToStdV2(standardEquipment.Equipment, standardEquipment.Quality)); } } while (list.Count < 6) { list.Add(new FamiliarEquipment.StandardEquipmentV2 { Equipment = 0, Quality = 0, Durability = 0 }); } return list; } private static FamiliarEquipment.StandardEquipmentV2 ToStdV2(int guidHash, int quality, int durability = 0) { guidHash = MapToSanguineOrKey(guidHash); return new FamiliarEquipment.StandardEquipmentV2 { Equipment = guidHash, Quality = quality, Durability = durability }; } private static int MapToSanguineOrKey(int guidHash) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(guidHash); NativeParallelHashMap prefabGuidToEntityMap = PrefabCollectionSystem._PrefabGuidToEntityMap; if (_shardNecklaces.Contains(val)) { PrefabGUID item_MagicSource_BloodKey_T = PrefabGUIDs.Item_MagicSource_BloodKey_T01; return ((PrefabGUID)(ref item_MagicSource_BloodKey_T)).GuidHash; } Entity val2 = default(Entity); if (((PrefabGUID)(ref val)).HasValue() && prefabGuidToEntityMap.TryGetValue(val, ref val2) && !val2.Has() && val2.IsAncestralWeapon()) { WeaponType weaponTypeFromWeaponEntity = WeaponSystem.GetWeaponTypeFromWeaponEntity(val2); if (_sanguineWeapons.TryGetValue(weaponTypeFromWeaponEntity, out var value)) { return ((PrefabGUID)(ref value)).GuidHash; } } return guidHash; } public static List GetFamiliarEquipment(ulong steamId, int famKey) { FamiliarEquipment.FamiliarEquipmentDataV2 familiarEquipmentDataV = LoadFamiliarEquipment(steamId); if (!familiarEquipmentDataV.FamiliarEquipment.TryGetValue(famKey, out var value)) { List list = new List(); list.AddRange(Enumerable.Range(0, 6).Select((Func)((int _) => new FamiliarEquipment.StandardEquipmentV2 { Equipment = 0, Quality = 0, Durability = 0 }))); value = list; familiarEquipmentDataV.FamiliarEquipment[famKey] = value; SaveFamiliarEquipmentData(steamId, familiarEquipmentDataV); } return value; } public static void SaveFamiliarEquipment(ulong steamId, int famKey, List equipment) { FamiliarEquipment.FamiliarEquipmentDataV2 familiarEquipmentDataV = LoadFamiliarEquipment(steamId); familiarEquipmentDataV.FamiliarEquipment[famKey] = equipment; SaveFamiliarEquipmentData(steamId, familiarEquipmentDataV); } public static void EquipFamiliar(ulong steamId, int famKey, Entity servant, Entity familiar) { //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) bool professionSystem = ConfigService.ProfessionSystem; PrefabGUID val = default(PrefabGUID); foreach (FamiliarEquipment.EquipmentBaseV2 item in GetFamiliarEquipment(steamId, famKey)) { if (!item.Equipment.Equals(0)) { ((PrefabGUID)(ref val))..ctor(item.Equipment); int professionLevel = (professionSystem ? item.Quality : 0); Entity newEntity = InventoryUtilitiesServer.TryAddItem(Core.GetAddItemSettings(), servant, val, 1).NewEntity; int durability = item.Durability; if (newEntity.Exists()) { EquipmentQualityManager.ApplyFamiliarEquipmentStats(professionLevel, durability, newEntity); } } } } public static List UnequipFamiliar(Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) Entity familiarServant = Familiars.GetFamiliarServant(playerCharacter); List list = new List(); bool professionSystem = ConfigService.ProfessionSystem; if (familiarServant.TryGetComponent(out ServantEquipment componentData)) { Familiars.FamiliarEquipmentType[] values = Enum.GetValues(); foreach (Familiars.FamiliarEquipmentType key in values) { if (Familiars.FamiliarEquipmentMap.TryGetValue(key, out var value) && ((ServantEquipment)(ref componentData)).IsEquipped(value)) { NetworkedEntity equipmentEntity = ((ServantEquipment)(ref componentData)).GetEquipmentEntity(value); Entity entityOnServer = ((NetworkedEntity)(ref equipmentEntity)).GetEntityOnServer(); PrefabGUID equipmentItemId = ((ServantEquipment)(ref componentData)).GetEquipmentItemId(value); int quality = (professionSystem ? EquipmentQualityManager.CalculateProfessionLevelOfEquipmentFromMaxDurability(entityOnServer) : 0); if (!entityOnServer.IsAncestralWeapon()) { list.Add(new FamiliarEquipment.StandardEquipmentV2 { Equipment = ((PrefabGUID)(ref equipmentItemId)).GuidHash, Quality = quality, Durability = (int)entityOnServer.GetDurability() }); } } } Familiars.DestroyFamiliarServant(familiarServant); return list; } List list2 = new List(); list2.AddRange(Enumerable.Range(0, 6).Select((Func)((int _) => new FamiliarEquipment.StandardEquipmentV2 { Equipment = 0, Quality = 0, Durability = 0 }))); return list2; } public static List GetFamiliarEquipment(Entity servant) { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0080: 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_00ae: Unknown result type (might be due to invalid IL or missing references) List list = new List(); bool professionSystem = ConfigService.ProfessionSystem; if (servant.TryGetComponent(out ServantEquipment componentData)) { foreach (Familiars.FamiliarEquipmentType value2 in Enum.GetValues(typeof(Familiars.FamiliarEquipmentType))) { if (Familiars.FamiliarEquipmentMap.TryGetValue(value2, out var value) && ((ServantEquipment)(ref componentData)).IsEquipped(value)) { NetworkedEntity equipmentEntity = ((ServantEquipment)(ref componentData)).GetEquipmentEntity(value); Entity entityOnServer = ((NetworkedEntity)(ref equipmentEntity)).GetEntityOnServer(); PrefabGUID equipmentItemId = ((ServantEquipment)(ref componentData)).GetEquipmentItemId(value); int quality = (professionSystem ? EquipmentQualityManager.CalculateProfessionLevelOfEquipmentFromMaxDurability(entityOnServer) : 0); if (!entityOnServer.IsAncestralWeapon()) { list.Add(new FamiliarEquipment.StandardEquipmentV2 { Equipment = ((PrefabGUID)(ref equipmentItemId)).GuidHash, Quality = quality, Durability = (int)entityOnServer.GetDurability() }); } } else { list.Add(new FamiliarEquipment.StandardEquipmentV2 { Equipment = 0, Quality = 0, Durability = 0 }); } } } else { list.AddRange(Enumerable.Range(0, 6).Select((Func)((int _) => new FamiliarEquipment.StandardEquipmentV2 { Equipment = 0, Quality = 0, Durability = 0 }))); } return list; } } private static readonly JsonSerializerOptions _jsonOptions = new JsonSerializerOptions { WriteIndented = true }; private static readonly Dictionary _sanguineWeapons = new Dictionary { { WeaponType.Sword, new PrefabGUID(-774462329) }, { WeaponType.Axe, new PrefabGUID(-2044057823) }, { WeaponType.Mace, new PrefabGUID(-126076280) }, { WeaponType.Spear, new PrefabGUID(-850142339) }, { WeaponType.Crossbow, new PrefabGUID(1389040540) }, { WeaponType.GreatSword, new PrefabGUID(147836723) }, { WeaponType.Slashers, new PrefabGUID(1322545846) }, { WeaponType.Pistols, new PrefabGUID(1071656850) }, { WeaponType.Reaper, new PrefabGUID(-2053917766) }, { WeaponType.Longbow, new PrefabGUID(1860352606) }, { WeaponType.Whip, new PrefabGUID(-655095317) }, { WeaponType.TwinBlades, new PrefabGUID(-297349982) }, { WeaponType.Daggers, new PrefabGUID(1031107636) }, { WeaponType.Claws, new PrefabGUID(-1777908217) } }; private static readonly List _shardNecklaces = new List(5) { PrefabGUIDs.Item_MagicSource_SoulShard_Manticore, PrefabGUIDs.Item_MagicSource_SoulShard_Solarus, PrefabGUIDs.Item_MagicSource_SoulShard_Dracula, PrefabGUIDs.Item_MagicSource_SoulShard_Monster, PrefabGUIDs.Item_MagicSource_SoulShard_Morgana }; } public static class FamiliarEquipment { [Serializable] public abstract class EquipmentBase { public int Equipment { get; set; } public int Quality { get; set; } } [Serializable] public abstract class EquipmentBaseV2 { public int Equipment { get; set; } public int Quality { get; set; } public int Durability { get; set; } } [Serializable] public class StandardEquipment : EquipmentBase { } [Serializable] public class StandardEquipmentV2 : EquipmentBaseV2 { } [Serializable] public class AncestralWeapon : EquipmentBase { public int Tier { get; set; } public Misc.SpellSchool Infusion { get; set; } public StatMods[] StatMods { get; set; } } [Serializable] public class AncestralWeaponV2 : EquipmentBaseV2 { public int Tier { get; set; } public Misc.SpellSchool Infusion { get; set; } public StatMods[] StatMods { get; set; } } [Serializable] public class StatMods { public int StatMod { get; set; } public float Value { get; set; } } [Serializable] public class FamiliarEquipmentData { public Dictionary> FamiliarEquipment { get; set; } = new Dictionary>(); } [Serializable] public class FamiliarEquipmentDataV2 { public Dictionary> FamiliarEquipment { get; set; } = new Dictionary>(); } public class EquipmentBaseConverter : JsonConverter { public override EquipmentBase Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) { //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Expected O, but got Unknown using JsonDocument jsonDocument = JsonDocument.ParseValue(ref reader); JsonElement rootElement = jsonDocument.RootElement; if (!rootElement.TryGetProperty("Equipment", out var value)) { throw new JsonException("Invalid Equipment data!"); } try { return rootElement.TryGetProperty("Infusion", out value) ? ((EquipmentBase)JsonSerializer.Deserialize(rootElement.GetRawText(), options)) : ((EquipmentBase)JsonSerializer.Deserialize(rootElement.GetRawText(), options)); } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(68, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EquipmentBaseConverter] Failed to deserialize familiar equipment - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogError(val); return new StandardEquipment { Equipment = 0, Quality = 0 }; } } public override void Write(Utf8JsonWriter writer, EquipmentBase value, JsonSerializerOptions options) { if (value is AncestralWeapon value2) { JsonSerializer.Serialize(writer, value2, options); } else if (value is StandardEquipment value3) { JsonSerializer.Serialize(writer, value3, options); } } } public class EquipmentBaseV2Converter : JsonConverter { public override EquipmentBaseV2 Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) { //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Expected O, but got Unknown using JsonDocument jsonDocument = JsonDocument.ParseValue(ref reader); JsonElement rootElement = jsonDocument.RootElement; if (!rootElement.TryGetProperty("Equipment", out var value)) { throw new JsonException("Invalid Equipment data!"); } try { return rootElement.TryGetProperty("Infusion", out value) ? ((EquipmentBaseV2)JsonSerializer.Deserialize(rootElement.GetRawText(), options)) : ((EquipmentBaseV2)JsonSerializer.Deserialize(rootElement.GetRawText(), options)); } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(68, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EquipmentBaseConverter] Failed to deserialize familiar equipment - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex.Message); } log.LogError(val); return new StandardEquipmentV2 { Equipment = 0, Quality = 0, Durability = 0 }; } } public override void Write(Utf8JsonWriter writer, EquipmentBaseV2 value, JsonSerializerOptions options) { if (value is AncestralWeaponV2 value2) { JsonSerializer.Serialize(writer, value2, options); } else if (value is StandardEquipmentV2 value3) { JsonSerializer.Serialize(writer, value3, options); } } } } public static class PlayerDataInitialization { private static readonly Action[] _loadLeveling = new Action[5] { PlayerPersistence.LoadPlayerExperience, PlayerPersistence.LoadPlayerPrestiges, PlayerPersistence.LoadPlayerExoFormData, PlayerPersistence.LoadIgnoredPrestigeLeaderboard, PlayerPersistence.LoadIgnoredSharedExperience }; private static readonly Action[] _loadExpertises = new Action[18] { PlayerPersistence.LoadPlayerSwordExpertise, PlayerPersistence.LoadPlayerAxeExpertise, PlayerPersistence.LoadPlayerMaceExpertise, PlayerPersistence.LoadPlayerSpearExpertise, PlayerPersistence.LoadPlayerCrossbowExpertise, PlayerPersistence.LoadPlayerGreatSwordExpertise, PlayerPersistence.LoadPlayerSlashersExpertise, PlayerPersistence.LoadPlayerPistolsExpertise, PlayerPersistence.LoadPlayerReaperExpertise, PlayerPersistence.LoadPlayerLongbowExpertise, PlayerPersistence.LoadPlayerWhipExpertise, PlayerPersistence.LoadPlayerFishingPoleExpertise, PlayerPersistence.LoadPlayerUnarmedExpertise, PlayerPersistence.LoadPlayerTwinBladesExpertise, PlayerPersistence.LoadPlayerDaggersExpertise, PlayerPersistence.LoadPlayerClawsExpertise, PlayerPersistence.LoadPlayerSpells, PlayerPersistence.LoadPlayerWeaponStats }; private static readonly Action[] _loadLegacies = new Action[11] { PlayerPersistence.LoadPlayerWorkerLegacy, PlayerPersistence.LoadPlayerWarriorLegacy, PlayerPersistence.LoadPlayerScholarLegacy, PlayerPersistence.LoadPlayerRogueLegacy, PlayerPersistence.LoadPlayerMutantLegacy, PlayerPersistence.LoadPlayerDraculinLegacy, PlayerPersistence.LoadPlayerImmortalLegacy, PlayerPersistence.LoadPlayerCreatureLegacy, PlayerPersistence.LoadPlayerBruteLegacy, PlayerPersistence.LoadPlayerCorruptionLegacy, PlayerPersistence.LoadPlayerBloodStats }; private static readonly Action[] _loadProfessions = new Action[8] { PlayerPersistence.LoadPlayerWoodcutting, PlayerPersistence.LoadPlayerMining, PlayerPersistence.LoadPlayerFishing, PlayerPersistence.LoadPlayerBlacksmithing, PlayerPersistence.LoadPlayerTailoring, PlayerPersistence.LoadPlayerEnchanting, PlayerPersistence.LoadPlayerAlchemy, PlayerPersistence.LoadPlayerHarvesting }; private static readonly Action[] _loadFamiliars = new Action[1] { PlayerPersistence.LoadFamiliarBattleCoords }; public static void LoadPlayerData() { if (ConfigService.ClassSystem) { PlayerPersistence.LoadPlayerClasses(); } if (ConfigService.QuestSystem) { PlayerPersistence.LoadPlayerQuests(); } if (ConfigService.LevelingSystem) { Action[] loadLeveling = _loadLeveling; for (int i = 0; i < loadLeveling.Length; i++) { loadLeveling[i](); } if (ConfigService.RestedXPSystem) { PlayerPersistence.LoadPlayerRestedXP(); } } if (ConfigService.ExpertiseSystem) { Action[] loadLeveling = _loadExpertises; for (int i = 0; i < loadLeveling.Length; i++) { loadLeveling[i](); } } if (ConfigService.LegacySystem) { Action[] loadLeveling = _loadLegacies; for (int i = 0; i < loadLeveling.Length; i++) { loadLeveling[i](); } } if (ConfigService.ProfessionSystem) { Action[] loadLeveling = _loadProfessions; for (int i = 0; i < loadLeveling.Length; i++) { loadLeveling[i](); } } if (ConfigService.FamiliarSystem) { Action[] loadLeveling = _loadFamiliars; for (int i = 0; i < loadLeveling.Length; i++) { loadLeveling[i](); } } } } private static readonly object PersistenceSuppressionLock = new object(); private static int persistenceSuppressionDepth; private static bool IsPersistenceSuppressed { get { lock (PersistenceSuppressionLock) { return persistenceSuppressionDepth > 0; } } } internal static IDisposable SuppressPersistence() { return new PersistenceSuppressionScope(); } public static bool TryGetPlayerExperience(this ulong steamId, out KeyValuePair experience) { return PlayerDictionaries._playerExperience.TryGetValue(steamId, out experience); } public static bool TryGetPlayerRestedXP(this ulong steamId, out KeyValuePair restedXP) { return PlayerDictionaries._playerRestedXP.TryGetValue(steamId, out restedXP); } public static bool TryGetPlayerClass(this ulong steamId, out ClassManager.PlayerClass playerClass) { return PlayerDictionaries._playerClass.TryGetValue(steamId, out playerClass); } public static bool TryGetPlayerPrestiges(this ulong steamId, out Dictionary prestiges) { return PlayerDictionaries._playerPrestiges.TryGetValue(steamId, out prestiges); } public static bool TryGetPlayerExoFormData(this ulong steamId, out KeyValuePair exoFormData) { return PlayerDictionaries._playerExoFormData.TryGetValue(steamId, out exoFormData); } public static bool TryGetPlayerWoodcutting(this ulong steamId, out KeyValuePair woodcutting) { return PlayerDictionaries._playerWoodcutting.TryGetValue(steamId, out woodcutting); } public static bool TryGetPlayerMining(this ulong steamId, out KeyValuePair mining) { return PlayerDictionaries._playerMining.TryGetValue(steamId, out mining); } public static bool TryGetPlayerFishing(this ulong steamId, out KeyValuePair fishing) { return PlayerDictionaries._playerFishing.TryGetValue(steamId, out fishing); } public static bool TryGetPlayerBlacksmithing(this ulong steamId, out KeyValuePair blacksmithing) { return PlayerDictionaries._playerBlacksmithing.TryGetValue(steamId, out blacksmithing); } public static bool TryGetPlayerTailoring(this ulong steamId, out KeyValuePair tailoring) { return PlayerDictionaries._playerTailoring.TryGetValue(steamId, out tailoring); } public static bool TryGetPlayerEnchanting(this ulong steamId, out KeyValuePair enchanting) { return PlayerDictionaries._playerEnchanting.TryGetValue(steamId, out enchanting); } public static bool TryGetPlayerAlchemy(this ulong steamId, out KeyValuePair alchemy) { return PlayerDictionaries._playerAlchemy.TryGetValue(steamId, out alchemy); } public static bool TryGetPlayerHarvesting(this ulong steamId, out KeyValuePair harvesting) { return PlayerDictionaries._playerHarvesting.TryGetValue(steamId, out harvesting); } public static bool TryGetPlayerSwordExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerSwordExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerAxeExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerAxeExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerMaceExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerMaceExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerSpearExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerSpearExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerCrossbowExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerCrossbowExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerGreatSwordExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerGreatSwordExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerSlashersExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerSlashersExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerPistolsExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerPistolsExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerReaperExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerReaperExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerLongbowExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerLongbowExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerWhipExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerWhipExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerFishingPoleExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerFishingPoleExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerUnarmedExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerUnarmedExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerTwinBladesExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerTwinBladesExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerDaggersExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerDaggersExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerClawsExpertise(this ulong steamId, out KeyValuePair expertise) { return PlayerDictionaries._playerClawsExpertise.TryGetValue(steamId, out expertise); } public static bool TryGetPlayerWeaponStats(this ulong steamId, out Dictionary> weaponStats) { return PlayerDictionaries._playerWeaponStats.TryGetValue(steamId, out weaponStats); } public static bool TryGetPlayerSpells(this ulong steamId, out (int FirstUnarmed, int SecondUnarmed, int ClassSpell) spells) { return PlayerDictionaries._playerSpells.TryGetValue(steamId, out spells); } public static bool TryGetPlayerWorkerLegacy(this ulong steamId, out KeyValuePair workerLegacy) { return PlayerDictionaries._playerWorkerLegacy.TryGetValue(steamId, out workerLegacy); } public static bool TryGetPlayerWarriorLegacy(this ulong steamId, out KeyValuePair warriorLegacy) { return PlayerDictionaries._playerWarriorLegacy.TryGetValue(steamId, out warriorLegacy); } public static bool TryGetPlayerScholarLegacy(this ulong steamId, out KeyValuePair scholarLegacy) { return PlayerDictionaries._playerScholarLegacy.TryGetValue(steamId, out scholarLegacy); } public static bool TryGetPlayerRogueLegacy(this ulong steamId, out KeyValuePair rogueLegacy) { return PlayerDictionaries._playerRogueLegacy.TryGetValue(steamId, out rogueLegacy); } public static bool TryGetPlayerMutantLegacy(this ulong steamId, out KeyValuePair mutantLegacy) { return PlayerDictionaries._playerMutantLegacy.TryGetValue(steamId, out mutantLegacy); } public static bool TryGetPlayerDraculinLegacy(this ulong steamId, out KeyValuePair draculinLegacy) { return PlayerDictionaries._playerDraculinLegacy.TryGetValue(steamId, out draculinLegacy); } public static bool TryGetPlayerImmortalLegacy(this ulong steamId, out KeyValuePair immortalLegacy) { return PlayerDictionaries._playerImmortalLegacy.TryGetValue(steamId, out immortalLegacy); } public static bool TryGetPlayerCreatureLegacy(this ulong steamId, out KeyValuePair creatureLegacy) { return PlayerDictionaries._playerCreatureLegacy.TryGetValue(steamId, out creatureLegacy); } public static bool TryGetPlayerBruteLegacy(this ulong steamId, out KeyValuePair bruteLegacy) { return PlayerDictionaries._playerBruteLegacy.TryGetValue(steamId, out bruteLegacy); } public static bool TryGetPlayerCorruptionLegacy(this ulong steamId, out KeyValuePair corruptedLegacy) { return PlayerDictionaries._playerCorruptionLegacy.TryGetValue(steamId, out corruptedLegacy); } public static bool TryGetPlayerBloodStats(this ulong steamId, out Dictionary> bloodStats) { return PlayerDictionaries._playerBloodStats.TryGetValue(steamId, out bloodStats); } public static bool TryGetFamiliarBox(this ulong steamId, out string familiarSet) { return PlayerDictionaries._playerFamiliarBox.TryGetValue(steamId, out familiarSet); } public static bool TryGetBindingIndex(this ulong steamId, out int index) { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001b: 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_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) if (steamId.TryGetPlayerInfo(out var playerInfo)) { Entity charEntity = playerInfo.CharEntity; if (charEntity.Has()) { BagHolder val = charEntity.Read(); index = val.BagInstance0.InventoryIndex; return true; } } return PlayerDictionaries._playerBindingIndex.TryGetValue(steamId, out index); } public static bool TryGetPlayerShapeshift(this ulong steamId, out ShapeshiftType shapeshift) { //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) shapeshift = ShapeshiftType.EvolvedVampire; if (steamId.TryGetPlayerInfo(out var playerInfo)) { int inventoryIndex = playerInfo.CharEntity.Read().BagInstance2.InventoryIndex; foreach (KeyValuePair shapeshiftBuff in Shapeshifts.ShapeshiftBuffs) { PrefabGUID value = shapeshiftBuff.Value; if (((PrefabGUID)(ref value)).GuidHash == inventoryIndex) { shapeshift = shapeshiftBuff.Key; return true; } } } return false; } public static bool TryGetPlayerQuests(this ulong steamId, out Dictionary quests) { return PlayerDictionaries._playerQuests.TryGetValue(steamId, out quests); } public static void SetPlayerExperience(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerExperience[steamId] = data; if (!IsPersistenceSuppressed) { PlayerPersistence.SavePlayerExperience(); } } public static void SetPlayerRestedXP(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerRestedXP[steamId] = data; if (!IsPersistenceSuppressed) { PlayerPersistence.SavePlayerRestedXP(); } } public static void SetPlayerClass(this ulong steamId, ClassManager.PlayerClass playerClass) { PlayerDictionaries._playerClass[steamId] = playerClass; PlayerPersistence.SavePlayerClasses(); } public static void SetPlayerPrestiges(this ulong steamId, Dictionary data) { PlayerDictionaries._playerPrestiges[steamId] = data; PlayerPersistence.SavePlayerPrestiges(); } public static void SetPlayerExoFormData(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerExoFormData[steamId] = data; PlayerPersistence.SavePlayerExoFormData(); } public static void SetPlayerWoodcutting(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerWoodcutting[steamId] = data; PlayerPersistence.SavePlayerWoodcutting(); } public static void SetPlayerMining(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerMining[steamId] = data; PlayerPersistence.SavePlayerMining(); } public static void SetPlayerFishing(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerFishing[steamId] = data; PlayerPersistence.SavePlayerFishing(); } public static void SetPlayerBlacksmithing(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerBlacksmithing[steamId] = data; PlayerPersistence.SavePlayerBlacksmithing(); } public static void SetPlayerTailoring(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerTailoring[steamId] = data; PlayerPersistence.SavePlayerTailoring(); } public static void SetPlayerEnchanting(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerEnchanting[steamId] = data; PlayerPersistence.SavePlayerEnchanting(); } public static void SetPlayerAlchemy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerAlchemy[steamId] = data; PlayerPersistence.SavePlayerAlchemy(); } public static void SetPlayerHarvesting(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerHarvesting[steamId] = data; PlayerPersistence.SavePlayerHarvesting(); } public static void SetPlayerSwordExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerSwordExpertise[steamId] = data; PlayerPersistence.SavePlayerSwordExpertise(); } public static void SetPlayerAxeExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerAxeExpertise[steamId] = data; PlayerPersistence.SavePlayerAxeExpertise(); } public static void SetPlayerMaceExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerMaceExpertise[steamId] = data; PlayerPersistence.SavePlayerMaceExpertise(); } public static void SetPlayerSpearExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerSpearExpertise[steamId] = data; PlayerPersistence.SavePlayerSpearExpertise(); } public static void SetPlayerCrossbowExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerCrossbowExpertise[steamId] = data; PlayerPersistence.SavePlayerCrossbowExpertise(); } public static void SetPlayerGreatSwordExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerGreatSwordExpertise[steamId] = data; PlayerPersistence.SavePlayerGreatSwordExpertise(); } public static void SetPlayerSlashersExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerSlashersExpertise[steamId] = data; PlayerPersistence.SavePlayerSlashersExpertise(); } public static void SetPlayerPistolsExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerPistolsExpertise[steamId] = data; PlayerPersistence.SavePlayerPistolsExpertise(); } public static void SetPlayerReaperExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerReaperExpertise[steamId] = data; PlayerPersistence.SavePlayerReaperExpertise(); } public static void SetPlayerLongbowExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerLongbowExpertise[steamId] = data; PlayerPersistence.SavePlayerLongbowExpertise(); } public static void SetPlayerWhipExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerWhipExpertise[steamId] = data; PlayerPersistence.SavePlayerWhipExpertise(); } public static void SetPlayerFishingPoleExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerFishingPoleExpertise[steamId] = data; PlayerPersistence.SavePlayerFishingPoleExpertise(); } public static void SetPlayerUnarmedExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerUnarmedExpertise[steamId] = data; PlayerPersistence.SavePlayerUnarmedExpertise(); } public static void SetPlayerTwinBladesExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerTwinBladesExpertise[steamId] = data; PlayerPersistence.SavePlayerTwinBladesExpertise(); } public static void SetPlayerDaggersExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerDaggersExpertise[steamId] = data; PlayerPersistence.SavePlayerDaggersExpertise(); } public static void SetPlayerClawsExpertise(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerClawsExpertise[steamId] = data; PlayerPersistence.SavePlayerClawsExpertise(); } public static void SetPlayerWeaponStats(this ulong steamId, Dictionary> data) { PlayerDictionaries._playerWeaponStats[steamId] = data; PlayerPersistence.SavePlayerWeaponStats(); } public static void SetPlayerSpells(this ulong steamId, (int FirstUnarmed, int SecondUnarmed, int ClassSpell) data) { PlayerDictionaries._playerSpells[steamId] = data; PlayerPersistence.SavePlayerSpells(); } public static void SetPlayerWorkerLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerWorkerLegacy[steamId] = data; PlayerPersistence.SavePlayerWorkerLegacy(); } public static void SetPlayerWarriorLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerWarriorLegacy[steamId] = data; PlayerPersistence.SavePlayerWarriorLegacy(); } public static void SetPlayerScholarLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerScholarLegacy[steamId] = data; PlayerPersistence.SavePlayerScholarLegacy(); } public static void SetPlayerRogueLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerRogueLegacy[steamId] = data; PlayerPersistence.SavePlayerRogueLegacy(); } public static void SetPlayerMutantLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerMutantLegacy[steamId] = data; PlayerPersistence.SavePlayerMutantLegacy(); } public static void SetPlayerDraculinLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerDraculinLegacy[steamId] = data; PlayerPersistence.SavePlayerDraculinLegacy(); } public static void SetPlayerImmortalLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerImmortalLegacy[steamId] = data; PlayerPersistence.SavePlayerImmortalLegacy(); } public static void SetPlayerCreatureLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerCreatureLegacy[steamId] = data; PlayerPersistence.SavePlayerCreatureLegacy(); } public static void SetPlayerBruteLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerBruteLegacy[steamId] = data; PlayerPersistence.SavePlayerBruteLegacy(); } public static void SetPlayerCorruptionLegacy(this ulong steamId, KeyValuePair data) { PlayerDictionaries._playerCorruptionLegacy[steamId] = data; PlayerPersistence.SavePlayerCorruptionLegacy(); } public static void SetPlayerBloodStats(this ulong steamId, Dictionary> data) { PlayerDictionaries._playerBloodStats[steamId] = data; PlayerPersistence.SavePlayerBloodStats(); } public static void SetFamiliarBox(this ulong steamId, string data = null) { //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(steamId); if (string.IsNullOrEmpty(data) && steamId.TryGetPlayerInfo(out var playerInfo)) { if (playerInfo.CharEntity.TryGetComponent(out BagHolder componentData)) { Dictionary>.KeyCollection keys = familiarUnlocksData.FamiliarUnlocks.Keys; List list = new List(keys.Count); list.AddRange(keys); List list2 = list; int inventoryIndex = componentData.BagInstance1.InventoryIndex; if (list2.IsIndexWithinRange(inventoryIndex)) { data = list2[inventoryIndex]; } } } else if (!string.IsNullOrEmpty(data) && familiarUnlocksData.FamiliarUnlocks.ContainsKey(data) && steamId.TryGetPlayerInfo(out playerInfo)) { Entity charEntity = playerInfo.CharEntity; int index = familiarUnlocksData.FamiliarUnlocks.Keys.ToList().IndexOf(data); charEntity.With((VExtensions.WithRefHandler)delegate(ref BagHolder bagHolder) { bagHolder.BagInstance1.InventoryIndex = index; }); } PlayerDictionaries._playerFamiliarBox[steamId] = data; } public static void SetBindingIndex(this ulong steamId, int index) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (steamId.TryGetPlayerInfo(out var playerInfo)) { playerInfo.CharEntity.With((VExtensions.WithRefHandler)delegate(ref BagHolder bagHolder) { bagHolder.BagInstance0.InventoryIndex = index; }); } PlayerDictionaries._playerBindingIndex[steamId] = index; } public static void SetPlayerQuests(this ulong steamId, Dictionary data) { PlayerDictionaries._playerQuests[steamId] = data; PlayerPersistence.SavePlayerQuests(); } public static void SetPlayerShapeshift(this ulong steamId, ShapeshiftType shapeshiftType) { //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Expected O, but got Unknown //IL_005c: Unknown result type (might be due to invalid IL or missing references) PlayerService.PlayerInfo playerInfo; if (!Shapeshifts.ShapeshiftBuffs.TryGetValue(shapeshiftType, out var shapeshiftBuff)) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(79, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[DataService.SetPlayerShapeshift] ShapeshiftType "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(shapeshiftType); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" not found in ShapeshiftBuffs!"); } log.LogWarning(val); } else if (steamId.TryGetPlayerInfo(out playerInfo)) { playerInfo.CharEntity.With((VExtensions.WithRefHandler)delegate(ref BagHolder bagHolder) { bagHolder.BagInstance2.InventoryIndex = ((PrefabGUID)(ref shapeshiftBuff)).GuidHash; }); Shapeshifts.ShapeshiftCache.SetShapeshiftBuff(steamId, shapeshiftType); } } } internal class EclipseService { public enum NetworkEventSubType { RegisterUser, ProgressToClient, ConfigsToClient } private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _shiftSpell = ConfigService.ShiftSlot; private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _legacies = ConfigService.LegacySystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _prestige = ConfigService.PrestigeSystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _familiarPrestige = ConfigService.FamiliarPrestige; private static readonly bool _professions = ConfigService.ProfessionSystem; private static readonly bool _quests = ConfigService.QuestSystem; private static readonly bool _elitePrimalRifts = ConfigService.ElitePrimalRifts; private static readonly WaitForSeconds _delay = new WaitForSeconds(ConfigService.Eclipsed ? 0.1f : 2.5f); private const string V1_3 = "1.3"; private static readonly Regex _regex = new Regex("^\\[ECLIPSE\\]\\[(\\d+)\\]:(\\d+\\.\\d+\\.\\d+);(\\d+)$"); private static readonly ConcurrentDictionary _pendingRegistration = new ConcurrentDictionary(); private static readonly ConcurrentDictionary _registeredUsersAndClientVersions = new ConcurrentDictionary(); private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; public static IReadOnlyDictionary PendingRegistration => _pendingRegistration; public static IReadOnlyDictionary RegisteredUsersAndClientVersions => _registeredUsersAndClientVersions; public EclipseService() { EclipseServiceRoutine().Start(); } public static void HandleClientMessage(string message) { //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Expected O, but got Unknown //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Expected O, but got Unknown Match match = _regex.Match(message); if (match.Success) { int num = int.Parse(match.Groups[1].Value); string value = match.Groups[2].Value; bool flag = default(bool); if (!ulong.TryParse(match.Groups[3].Value, out var result)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(37, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Couldn't parse steamId for Eclipse["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.3"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("]!"); } log.LogWarning(val); } else if (num == 0) { RegisterUser(result, value); } else { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(48, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Unknown networkEventSubtype in Eclipse message: "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(num); } log2.LogError(val2); } } else { Core.Log.LogWarning((object)"Failed to parse client registration message from Eclipse!"); } } private static void RegisterUser(ulong steamId, string version) { //IL_0027: Unknown result type (might be due to invalid IL or missing references) if (RegisteredUsersAndClientVersions.ContainsKey(steamId)) { return; } if (steamId.TryGetPlayerInfo(out var playerInfo) && playerInfo.CharEntity.Exists()) { HandleRegistration(playerInfo, steamId, version); return; } _pendingRegistration.AddOrUpdate(steamId, version, (ulong _, string _) => version); } public static void HandlePreRegistration(ulong steamId) { _pendingRegistration.TryAdd(steamId, "1.3"); } public static void TryRemovePreRegistration(ulong steamId) { _pendingRegistration.TryRemove(steamId, out var _); } public static bool HandleRegistration(PlayerService.PlayerInfo playerInfo, ulong steamId, string version) { //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Expected O, but got Unknown //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Expected O, but got Unknown //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Expected O, but got Unknown //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val; if (_registeredUsersAndClientVersions.TryAdd(steamId, version)) { try { if (IsVersion1_3(version)) { IVersionHandler? handler = VersionHandler.GetHandler("1.3"); handler?.SendClientConfig(playerInfo.User); handler?.SendClientProgress(playerInfo.CharEntity, playerInfo.User.PlatformId); _pendingRegistration.TryRemove(steamId, out var _); return true; } ManualLogSource log = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(36, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Unsupported client version! "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(":Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(version); } log.LogWarning(val); return false; } catch (Exception ex) { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(71, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Error sending config/progress in HandleRegistration! "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(":Eclipse"); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(version); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(", Error - "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log2.LogError(val2); return false; } } ManualLogSource log3 = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(70, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to add "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(":Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(version); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" to RegisteredUsersAndClientVersions dictionary!"); } log3.LogWarning(val); return false; } private static IEnumerator EclipseServiceRoutine() { bool flag = default(bool); while (true) { if (!RegisteredUsersAndClientVersions.Any()) { yield return _delay; continue; } foreach (PlayerService.PlayerInfo value2 in PlayerService.SteamIdOnlinePlayerInfoCache.Values) { ulong platformId = value2.User.PlatformId; if (RegisteredUsersAndClientVersions.TryGetValue(platformId, out var value)) { try { if (IsVersion1_3(value)) { if ((_legacies || _expertise || _classes) && !value2.CharEntity.HasBuff(Buffs.BonusStatsBuff)) { value2.CharEntity.TryApplyBuff(Buffs.BonusStatsBuff); } VersionHandler.GetHandler("1.3")?.SendClientProgress(value2.CharEntity, value2.User.PlatformId); } else { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(99, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Unsupported client version in EclipseService! "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(platformId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(":Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(value); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(", unregistering user to avoid console spam..."); } log.LogWarning(val); TryUnregisterUser(platformId); } } catch (Exception ex) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(61, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed sending progress in EclipseService! "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(platformId); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(":Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(value); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(", Error - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log2.LogWarning(val); } } yield return null; } if (_elitePrimalRifts) { PrimalWarEventSystem.OnSchedule(); } yield return _delay; } } private static bool IsVersion1_3(string version) { return version.StartsWith("1.3"); } public static void TryUnregisterUser(ulong steamId) { _registeredUsersAndClientVersions.TryRemove(steamId, out var _); } public static (int Percent, int Level, int Prestige, int Class) GetExperienceData(ulong steamId) { int item = 0; int item2 = 0; int item3 = 0; int item4 = 0; if (_leveling) { item = LevelingSystem.GetLevelProgress(steamId); item2 = LevelingSystem.GetLevel(steamId); if (_prestige) { item3 = PrestigeFactory.GetPrestige(PrestigeType.Experience).GetPrestigeLevel(steamId); } } if (_classes && steamId.HasClass(out var playerClass) && playerClass.HasValue) { item4 = (int)(playerClass.Value + 1); } return (item, item2, item3, item4); } public static (int Percent, int Level, int Prestige, int Enum, int LegacyBonusStats) GetLegacyData(Entity character, ulong steamId) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) int item = 0; int item2 = 0; int item3 = 0; int item4 = 0; int item5 = 0; if (_legacies) { BloodType bloodTypeFromPrefab = BloodSystem.GetBloodTypeFromPrefab(character.Read().BloodType); IBloodLegacy bloodHandler = BloodLegacyFactory.GetBloodHandler(bloodTypeFromPrefab); if (bloodHandler != null) { item = BloodSystem.GetLevelProgress(steamId, bloodHandler); item2 = BloodSystem.GetLevel(steamId, bloodHandler); item4 = (int)bloodTypeFromPrefab; if (_prestige) { item3 = PrestigeFactory.GetPrestige(BloodSystem.BloodPrestigeTypes[bloodTypeFromPrefab]).GetPrestigeLevel(steamId); } if (steamId.TryGetPlayerBloodStats(out var bloodStats) && bloodStats.TryGetValue(bloodTypeFromPrefab, out var value)) { IEnumerable enumerable = from stat in value.Take(3) select ((int)(stat + 1)).ToString("D2"); if (enumerable.Any()) { item5 = int.Parse(string.Join("", enumerable), CultureInfo.InvariantCulture); } } } else if (bloodTypeFromPrefab.Equals(BloodType.None)) { item4 = (int)bloodTypeFromPrefab; } } return (item, item2, item3, item4, item5); } public static (int Percent, int Level, int Prestige, int Enum, int ExpertiseBonusStats) GetExpertiseData(Entity character, ulong steamId) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: 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_0025: Unknown result type (might be due to invalid IL or missing references) int item = 0; int item2 = 0; int item3 = 0; int item4 = 0; int item5 = 0; if (_expertise) { WeaponType weaponTypeFromWeaponEntity = WeaponSystem.GetWeaponTypeFromWeaponEntity(character.Read().WeaponSlot.SlotEntity._Entity); IWeaponExpertise expertise = WeaponExpertiseFactory.GetExpertise(weaponTypeFromWeaponEntity); if (expertise != null) { item = WeaponSystem.GetLevelProgress(steamId, expertise); item2 = WeaponSystem.GetLevel(steamId, expertise); item4 = (int)weaponTypeFromWeaponEntity; if (_prestige) { item3 = PrestigeFactory.GetPrestige(WeaponSystem.WeaponPrestigeTypes[weaponTypeFromWeaponEntity]).GetPrestigeLevel(steamId); } if (steamId.TryGetPlayerWeaponStats(out var weaponStats) && weaponStats.TryGetValue(weaponTypeFromWeaponEntity, out var value)) { IEnumerable enumerable = from stat in value.Take(3) select ((int)(stat + 1)).ToString("D2"); if (enumerable.Any()) { item5 = int.Parse(string.Join("", enumerable), CultureInfo.InvariantCulture); } } } } return (item, item2, item3, item4, item5); } public static (int Percent, int Level, int Prestige, string Name, string FamiliarStats) GetFamiliarData(Entity character, ulong steamId) { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) int item = 0; int item2 = 0; int num = 0; string item3 = ""; string item4 = ""; if (_familiars) { Entity activeFamiliar = Familiars.GetActiveFamiliar(character); if (!activeFamiliar.Exists()) { return (item, item2, num, item3, item4); } PrefabGUID prefabGuid = activeFamiliar.GetPrefabGuid(); int guidHash = ((PrefabGUID)(ref prefabGuid)).GuidHash; item3 = prefabGuid.GetLocalizedName(); KeyValuePair familiarExperience = FamiliarLevelingSystem.GetFamiliarExperience(steamId, guidHash); item = FamiliarLevelingSystem.GetLevelProgress(steamId, guidHash); item2 = familiarExperience.Key; if (_familiarPrestige) { num = ((DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(steamId).FamiliarPrestige.TryGetValue(guidHash, out var value) && value > 0) ? value : num); } UnitStats val = activeFamiliar.Read(); int num2 = (int)activeFamiliar.Read().MaxHealth._Value; int num3 = (int)val.PhysicalPower._Value; int num4 = (int)val.SpellPower._Value; item4 = num2.ToString("D4") + num3.ToString("D3") + num4.ToString("D3"); } return (item, item2, num, item3, item4); } public static (int EnchantingProgress, int EnchantingLevel, int AlchemyProgress, int AlchemyLevel, int HarvestingProgress, int HarvestingLevel, int BlacksmithingProgress, int BlacksmithingLevel, int TailoringProgress, int TailoringLevel, int WoodcuttingProgress, int WoodcuttingLevel, int MiningProgress, int MiningLevel, int FishingProgress, int FishingLevel) GetProfessionData(ulong steamId) { int item = 0; int item2 = 0; int item3 = 0; int item4 = 0; int item5 = 0; int item6 = 0; int item7 = 0; int item8 = 0; int item9 = 0; int item10 = 0; int item11 = 0; int item12 = 0; int item13 = 0; int item14 = 0; int item15 = 0; int item16 = 0; if (_professions) { IProfession profession = ProfessionFactory.GetProfession(Profession.Enchanting); item2 = profession.GetProfessionData(steamId).Key; item = ProfessionSystem.GetLevelProgress(steamId, profession); profession = ProfessionFactory.GetProfession(Profession.Alchemy); item4 = profession.GetProfessionData(steamId).Key; item3 = ProfessionSystem.GetLevelProgress(steamId, profession); profession = ProfessionFactory.GetProfession(Profession.Harvesting); item6 = profession.GetProfessionData(steamId).Key; item5 = ProfessionSystem.GetLevelProgress(steamId, profession); profession = ProfessionFactory.GetProfession(Profession.Blacksmithing); item8 = profession.GetProfessionData(steamId).Key; item7 = ProfessionSystem.GetLevelProgress(steamId, profession); profession = ProfessionFactory.GetProfession(Profession.Tailoring); item10 = profession.GetProfessionData(steamId).Key; item9 = ProfessionSystem.GetLevelProgress(steamId, profession); profession = ProfessionFactory.GetProfession(Profession.Woodcutting); item12 = profession.GetProfessionData(steamId).Key; item11 = ProfessionSystem.GetLevelProgress(steamId, profession); profession = ProfessionFactory.GetProfession(Profession.Mining); item14 = profession.GetProfessionData(steamId).Key; item13 = ProfessionSystem.GetLevelProgress(steamId, profession); profession = ProfessionFactory.GetProfession(Profession.Fishing); item16 = profession.GetProfessionData(steamId).Key; item15 = ProfessionSystem.GetLevelProgress(steamId, profession); return (item, item2, item3, item4, item5, item6, item7, item8, item9, item10, item11, item12, item13, item14, item15, item16); } return (item, item2, item3, item4, item5, item6, item7, item8, item9, item10, item11, item12, item13, item14, item15, item16); } public static (int Type, int Progress, int Goal, string Target, string IsVBlood) GetQuestData(ulong steamId, QuestSystem.QuestType questType) { //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) int num = 0; int item = 0; int item2 = 0; string item3 = ""; string item4 = "false"; if (_quests && steamId.TryGetPlayerQuests(out Dictionary quests) && quests.TryGetValue(questType, out var value) && !value.Item1.Complete) { num = (int)value.Item1.Goal; item = value.Item2; item2 = value.Item1.RequiredAmount; item3 = value.Item1.Target.GetLocalizedName(); if (num == 0 && PrefabCollectionSystem._PrefabGuidToEntityMap.ContainsKey(value.Item1.Target)) { item4 = PrefabCollectionSystem._PrefabGuidToEntityMap[value.Item1.Target].Has().ToString(); } } return (num, item, item2, item3, item4); } public static int GetShiftSpellData(Entity playerCharacter) { //IL_0010: 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_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) int num = -1; if (_classes && _shiftSpell) { ServerGameManager serverGameManager = ServerGameManager; Entity abilityGroup = ((ServerGameManager)(ref serverGameManager)).GetAbilityGroup(playerCharacter, 3); if (abilityGroup.Exists() && !abilityGroup.Has()) { num = ((abilityGroup.TryGetComponent(out PrefabGUID componentData) && AbilityRunScriptsSystemPatch.ClassSpells.TryGetValue(componentData, out var value)) ? value : num); } } return num; } } internal static class EmberglassEclipseBridge { private const string EMBERGLASS_ASSEMBLY_NAME = "Emberglass"; private const string VNETWORK_TYPE_NAME = "Emberglass.API.Shared.VNetwork"; private static bool _initialized; private static bool _available; private static bool _disabledForSession; private static bool _unavailableLogged; private static MethodInfo _sendToClient; private static PropertyInfo _isReady; private static EventInfo _onReady; private static EventInfo _onClientReady; private static readonly HashSet _loggedSendFailures = new HashSet(); public static void Initialize() { if (_initialized || !ConfigService.UseEmberglassEclipseBridge || _disabledForSession) { return; } _initialized = true; if (!TryResolveVNetwork(out var vNetworkType)) { LogUnavailable("Emberglass is not loaded"); return; } try { MethodInfo genericMethod = GetGenericMethod(vNetworkType, "RegisterServerbound", 1); _sendToClient = GetGenericMethod(vNetworkType, "SendToClient", 2); _isReady = vNetworkType.GetProperty("IsReady", BindingFlags.Static | BindingFlags.Public); _onReady = vNetworkType.GetEvent("OnReady", BindingFlags.Static | BindingFlags.Public); _onClientReady = vNetworkType.GetEvent("OnClientReady", BindingFlags.Static | BindingFlags.Public); genericMethod.MakeGenericMethod(typeof(EclipseRegistrationPacket)).Invoke(null, new object[1] { new Action(OnRegistrationPacket) }); _available = true; Core.Log.LogInfo((object)"[EclipseBridge:Emberglass] registered"); } catch (Exception ex) { DisableForSession($"failed to register bridge ({ex.GetType().Name}: {ex.Message})"); } } public static void SendToClientOrFallback(User user, string message, string messageKind) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (!TrySendToClient(user, message, messageKind)) { LocalizationService.HandleServerReply(Core.EntityManager, user, message); } } private static bool TrySendToClient(User user, string message, string messageKind) { //IL_004c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.UseEmberglassEclipseBridge || _disabledForSession) { return false; } Initialize(); if (!_available || !IsReady()) { return false; } try { _sendToClient.MakeGenericMethod(typeof(EclipseServerMessagePacket)).Invoke(null, new object[2] { user, new EclipseServerMessagePacket(message) }); return true; } catch (Exception exception) { LogSendFailure(messageKind, exception); return false; } } private static void OnRegistrationPacket(User sender, EclipseRegistrationPacket packet) { if (string.IsNullOrWhiteSpace(packet.Message)) { Core.Log.LogWarning((object)"[EclipseBridge:Emberglass] empty registration packet received"); return; } if (!ChatMessageSystemPatch.CheckMAC(packet.Message, out var originalMessage)) { Core.Log.LogWarning((object)"[EclipseBridge:Emberglass] failed to verify registration MAC"); return; } Core.Log.LogInfo((object)"[EclipseBridge:Emberglass] registration received"); EclipseService.HandleClientMessage(originalMessage); } private static bool TryResolveVNetwork(out Type vNetworkType) { vNetworkType = AppDomain.CurrentDomain.GetAssemblies().FirstOrDefault((Assembly loadedAssembly) => loadedAssembly.GetName().Name == "Emberglass")?.GetType("Emberglass.API.Shared.VNetwork", throwOnError: false); return vNetworkType != null; } private static MethodInfo GetGenericMethod(Type declaringType, string name, int parameterCount) { return declaringType.GetMethods(BindingFlags.Static | BindingFlags.Public).Single((MethodInfo method) => method.Name == name && method.IsGenericMethodDefinition && method.GetParameters().Length == parameterCount); } private static bool IsReady() { object obj = _isReady?.GetValue(null); if (obj is bool) { return (bool)obj; } return false; } private static void LogUnavailable(string reason) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Expected O, but got Unknown if (!_unavailableLogged) { _unavailableLogged = true; ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(67, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EclipseBridge:Emberglass] unavailable; using ChatMessage bridge ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(reason); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogInfo(val); } } private static void DisableForSession(string reason) { //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Expected O, but got Unknown _available = false; _disabledForSession = true; ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(81, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EclipseBridge:Emberglass] disabled for this session; using ChatMessage bridge ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(reason); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogWarning(val); } private static void LogSendFailure(string messageKind, Exception exception) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Expected O, but got Unknown string text = FormatExceptionForLog(exception); string item = messageKind + ":" + text; if (_loggedSendFailures.Add(item)) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(90, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EclipseBridge:Emberglass] failed to send "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(messageKind); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("; using ChatMessage fallback for this message ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(text); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogWarning(val); } } private static string FormatExceptionForLog(Exception exception) { if (exception is TargetInvocationException ex && exception.InnerException != null) { return $"{exception.GetType().Name}: {exception.Message}; inner={FormatExceptionForLog(ex.InnerException)}"; } return exception.GetType().Name + ": " + exception.Message; } } internal class FamiliarService { private static readonly WaitForSeconds _delay = new WaitForSeconds(10f); private static readonly ComponentType[] _familiarAllComponents = (ComponentType[])(object)new ComponentType[3] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static EntityQueries.QueryDesc _familiarQueryDesc; private static bool _shouldDestroy = true; private static EntityManager EntityManager => Core.EntityManager; public FamiliarService() { //IL_0006: Unknown result type (might be due to invalid IL or missing references) _familiarQueryDesc = EntityManager.CreateQueryDesc(_familiarAllComponents, null, null, null, (EntityQueryOptions)2); DisabledFamiliarPositionUpdateRoutine().Start(); } private static IEnumerator DisabledFamiliarPositionUpdateRoutine() { if (_shouldDestroy) { DestroyFamiliars(); } while (true) { yield return _delay; foreach (var (steamId, activeFamiliarData2) in Familiars.ActiveFamiliarManager.ActiveFamiliars) { if (steamId.TryGetPlayerInfo(out var playerInfo)) { if (activeFamiliarData2.Dismissed) { Familiars.TryReturnFamiliar(playerInfo.CharEntity, activeFamiliarData2.Familiar); } yield return null; } } } } private static void DestroyFamiliars() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Expected O, but got Unknown //IL_001b: 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_0028: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) EntityQuery entityQuery = _familiarQueryDesc.EntityQuery; NativeArray val = ((EntityQuery)(ref entityQuery)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; Entity val2 = Familiars.FindFamiliarServant(current); Entity servantCoffin = Familiars.GetServantCoffin(val2); if (val2.Exists()) { FamiliarBindingSystem.RemoveDropTable(val2); val2.Remove(); val2.Destroy(); } if (servantCoffin.Exists()) { servantCoffin.Remove(); servantCoffin.Destroy(); } if (current.Exists()) { current.Remove(); FamiliarBindingSystem.RemoveDropTable(current); StatChangeUtility.KillOrDestroyEntity(EntityManager, current, Entity.Null, Entity.Null, Core.ServerTime, (StatChangeReason)1, true); } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val3 = new BepInExWarningLogInterpolatedStringHandler(37, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral("[PlayerService] DestroyFamiliars() - "); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(ex); } log.LogWarning(val3); } _shouldDestroy = false; } } internal class LocalizationService { private struct Code { public string Key { get; set; } public string Value { get; set; } public string Description { get; set; } } private struct Node { public string Guid { get; set; } public string Text { get; set; } } private struct Word { public string Original { get; set; } public string Translation { get; set; } } private struct LocalizationFile { public Code[] Codes { get; set; } public Node[] Nodes { get; set; } public Word[] Words { get; set; } } private static readonly string _language = ConfigService.LanguageLocalization; private static readonly Dictionary _localizedLanguages = new Dictionary { { "English", "Bloodcraft.Resources.Localization.English.json" }, { "German", "Bloodcraft.Resources.Localization.German.json" }, { "French", "Bloodcraft.Resources.Localization.French.json" }, { "Spanish", "Bloodcraft.Resources.Localization.Spanish.json" }, { "Italian", "Bloodcraft.Resources.Localization.Italian.json" }, { "Japanese", "Bloodcraft.Resources.Localization.Japanese.json" }, { "Koreana", "Bloodcraft.Resources.Localization.Koreana.json" }, { "Portuguese", "Bloodcraft.Resources.Localization.Portuguese.json" }, { "Russian", "Bloodcraft.Resources.Localization.Russian.json" }, { "SimplifiedChinese", "Bloodcraft.Resources.Localization.SChinese.json" }, { "TraditionalChinese", "Bloodcraft.Resources.Localization.TChinese.json" }, { "Hungarian", "Bloodcraft.Resources.Localization.Hungarian.json" }, { "Latam", "Bloodcraft.Resources.Localization.Latam.json" }, { "Polish", "Bloodcraft.Resources.Localization.Polish.json" }, { "Thai", "Bloodcraft.Resources.Localization.Thai.json" }, { "Turkish", "Bloodcraft.Resources.Localization.Turkish.json" }, { "Vietnamese", "Bloodcraft.Resources.Localization.Vietnamese.json" }, { "Brazilian", "Bloodcraft.Resources.Localization.Brazilian.json" } }; private static readonly Dictionary _guidHashesToGuidStrings = new Dictionary(); private static readonly Dictionary _guidStringsToLocalizedNames = new Dictionary(); private static readonly Dictionary _prefabGuidNames = new Dictionary(); private static readonly Dictionary _sequenceGuidNames = new Dictionary(); private static readonly Dictionary _prefabGuidNameOverrides = new Dictionary { { PrefabGUIDs.CHAR_Bandit_Chaosarrow_GateBoss_Minor, "Primal Lidia" }, { PrefabGUIDs.CHAR_Bandit_Foreman_VBlood_GateBoss_Minor, "Primal Rufus" }, { PrefabGUIDs.CHAR_Bandit_StoneBreaker_VBlood_GateBoss_Minor, "Primal Errol" }, { PrefabGUIDs.CHAR_Bandit_Tourok_GateBoss_Minor, "Primal Quincey" }, { PrefabGUIDs.CHAR_Frostarrow_GateBoss_Minor, "Primal Keely" }, { PrefabGUIDs.CHAR_Gloomrot_Purifier_VBlood_GateBoss_Major, "Primal Angram" }, { PrefabGUIDs.CHAR_Gloomrot_Voltage_VBlood_GateBoss_Major, "Primal Domina" }, { PrefabGUIDs.CHAR_Militia_Guard_VBlood_GateBoss_Minor, "Primal Vincent" }, { PrefabGUIDs.CHAR_Militia_Leader_VBlood_GateBoss_Major, "Primal Octavian" }, { PrefabGUIDs.CHAR_Poloma_VBlood_GateBoss_Minor, "Primal Poloma" }, { PrefabGUIDs.CHAR_Spider_Queen_VBlood_GateBoss_Major, "Primal Ungora" }, { PrefabGUIDs.CHAR_Undead_BishopOfDeath_VBlood_GateBoss_Minor, "Primal Goreswine" }, { PrefabGUIDs.CHAR_Undead_BishopOfShadows_VBlood_GateBoss_Major, "Primal Leandra" }, { PrefabGUIDs.CHAR_Undead_Infiltrator_VBlood_GateBoss_Major, "Primal Bane" }, { PrefabGUIDs.CHAR_Undead_Leader_Vblood_GateBoss_Minor, "Primal Kriig" }, { PrefabGUIDs.CHAR_Undead_ZealousCultist_VBlood_GateBoss_Major, "Primal Foulrot" }, { PrefabGUIDs.CHAR_VHunter_Jade_VBlood_GateBoss_Major, "Primal Jade" }, { PrefabGUIDs.CHAR_VHunter_Leader_GateBoss_Minor, "Primal Tristan" }, { PrefabGUIDs.CHAR_Villager_CursedWanderer_VBlood_GateBoss_Major, "Primal Ben" }, { PrefabGUIDs.CHAR_Wendigo_GateBoss_Major, "Primal Frostmaw" }, { PrefabGUIDs.CHAR_WerewolfChieftain_VBlood_GateBoss_Major, "Primal Willfred" }, { PrefabGUIDs.CHAR_Winter_Yeti_VBlood_GateBoss_Major, "Primal Terrorclaw" }, { PrefabGUIDs.FakeItem_AnyFish, "Go Fish!" } }; private static readonly ComponentType[] _networkEventComponents = (ComponentType[])(object)new ComponentType[4] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static readonly NetworkEventType _networkEventType = new NetworkEventType { IsAdminEvent = false, EventId = NetworkEvents.EventId_ChatMessageServerEvent, IsDebugEvent = false }; public static IReadOnlyDictionary PrefabGuidNames => _prefabGuidNames; public static IReadOnlyDictionary SequenceGuidNames => _sequenceGuidNames; public LocalizationService() { InitializeLocalizations(); GetPrefabGuidNames(); GetSequenceGuidNames(); } private static void InitializeLocalizations() { LoadGuidStringsToLocalizedNames(); } private static void GetPrefabGuidNames() { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Expected O, but got Unknown //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) NativeParallelHashMap prefabDataLookup = Core.SystemService.PrefabCollectionSystem._PrefabDataLookup; NativeArray keyArray = prefabDataLookup.GetKeyArray(AllocatorHandle.op_Implicit((Allocator)2)); NativeArray valueArray = prefabDataLookup.GetValueArray(AllocatorHandle.op_Implicit((Allocator)2)); try { for (int i = 0; i < keyArray.Length; i++) { PrefabGUID key = keyArray[i]; ConvertedAssetData val = valueArray[i]; _prefabGuidNames[key] = ((FixedString128Bytes)(ref val.AssetName)).Value; } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(33, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Error initializing prefab names: "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex.Message); } log.LogWarning(val2); } finally { keyArray.Dispose(); valueArray.Dispose(); } } private static void GetSequenceGuidNames() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) FieldInfo[] fields = typeof(SequenceGUIDs).GetFields(BindingFlags.Static | BindingFlags.Public); foreach (FieldInfo obj in fields) { SequenceGUID key = (SequenceGUID)obj.GetValue(null); string name = obj.Name; _sequenceGuidNames[key] = name; } } private static void LoadGuidStringsToLocalizedNames() { //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Expected O, but got Unknown //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Expected O, but got Unknown //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Expected O, but got Unknown string text = (_localizedLanguages.ContainsKey(_language) ? _localizedLanguages[_language] : "Bloodcraft.Resources.Localization.English.json"); Stream? manifestResourceStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(text); bool flag = default(bool); if (manifestResourceStream == null) { ManualLogSource logSource = Plugin.MiniBehaviour.LogSource; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(41, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[Localization] Failed to load resource - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(text); } logSource.LogError(val); } using StreamReader streamReader = new StreamReader(manifestResourceStream); string text2 = streamReader.ReadToEnd(); if (string.IsNullOrWhiteSpace(text2)) { ManualLogSource logSource2 = Plugin.MiniBehaviour.LogSource; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(31, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[Localization] No JSON content!"); } logSource2.LogError(val); } LocalizationFile localizationFile = JsonSerializer.Deserialize(text2, new JsonSerializerOptions { PropertyNameCaseInsensitive = true }); if (localizationFile.Nodes == null) { ManualLogSource logSource3 = Plugin.MiniBehaviour.LogSource; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(58, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[Localization] Deserialized file is null or missing Nodes!"); } logSource3.LogError(val); } localizationFile.Nodes.ToDictionary((Node x) => x.Guid, (Node x) => x.Text).ForEach(delegate(KeyValuePair kvp) { _guidStringsToLocalizedNames[kvp.Key] = kvp.Value; }); } public static string GetAssetGuidString(PrefabGUID prefabGUID) { if (_guidHashesToGuidStrings.TryGetValue(((PrefabGUID)(ref prefabGUID)).GuidHash, out var value)) { return value; } return string.Empty; } public static string GetGuidString(PrefabGUID prefabGuid) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) if (PrefabNames.LocalizedNameKeys.TryGetValue(prefabGuid, out var value)) { return value; } return string.Empty; } public static string GetNameFromGuidString(string guidString) { if (_guidStringsToLocalizedNames.TryGetValue(guidString, out var value)) { return value; } return string.Empty; } public static string GetNameFromPrefabGuid(PrefabGUID prefabGuid) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) if (_prefabGuidNameOverrides.TryGetValue(prefabGuid, out var value)) { return value; } return GetNameFromGuidString(GetGuidString(prefabGuid)); } public static void HandleReply(ChatCommandContext ctx, string message) { ctx.Reply(message); } public static void HandleReply(PlayerService.PlayerInfo playerInfo, string message) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) HandleServerReply(Core.EntityManager, playerInfo.User, message); } public static void SendToClient(Entity playerCharacter, Entity userEntity, string messageWithMAC) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002c: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) ChatMessageServerEvent val = default(ChatMessageServerEvent); val.MessageText = new FixedString512Bytes(messageWithMAC); val.MessageType = (ServerChatMessageType)6; val.FromCharacter = playerCharacter.GetNetworkId(); val.FromUser = userEntity.GetNetworkId(); val.TimeUTC = DateTime.UtcNow.Ticks; ChatMessageServerEvent componentData = val; EntityManager entityManager = Core.EntityManager; Entity entity = ((EntityManager)(ref entityManager)).CreateEntity(_networkEventComponents); entity.Write(new FromCharacter { Character = playerCharacter, User = userEntity }); entity.Write(_networkEventType); entity.Write(componentData); } public static void HandleServerReply(EntityManager entityManager, User user, string message) { //IL_0008: 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) FixedString512Bytes val = default(FixedString512Bytes); ((FixedString512Bytes)(ref val))..ctor(message); ServerChatUtils.SendSystemMessageToClient(entityManager, user, ref val); } } internal class PlayerService { public struct PlayerInfo { public User User { get; set; } public Entity UserEntity { get; set; } public Entity CharEntity { get; set; } public PlayerInfo(Entity userEntity = default(Entity), Entity charEntity = default(Entity), User user = default(User)) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) User = user; UserEntity = userEntity; CharEntity = charEntity; } } private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _exoForm = ConfigService.ExoPrestiging; private static readonly ComponentType[] _userAllComponents = (ComponentType[])(object)new ComponentType[1] { ComponentType.ReadOnly(Il2CppType.Of()) }; private static EntityQueries.QueryDesc _userQueryDesc; private static readonly ConcurrentDictionary _steamIdPlayerInfoCache = new ConcurrentDictionary(); private static readonly ConcurrentDictionary _steamIdOnlinePlayerInfoCache = new ConcurrentDictionary(); private static EntityManager EntityManager => Core.EntityManager; public static IReadOnlyDictionary SteamIdPlayerInfoCache => _steamIdPlayerInfoCache; public static IReadOnlyDictionary SteamIdOnlinePlayerInfoCache => _steamIdOnlinePlayerInfoCache; public PlayerService() { //IL_0006: Unknown result type (might be due to invalid IL or missing references) _userQueryDesc = EntityManager.CreateQueryDesc(_userAllComponents, null, null, null, (EntityQueryOptions)2); BuildPlayerInfoCache(); } private static void BuildPlayerInfoCache() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: 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_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: 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: Expected O, but got Unknown //IL_001b: 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_0028: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) EntityQuery entityQuery = _userQueryDesc.EntityQuery; NativeArray val = ((EntityQuery)(ref entityQuery)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.Exists()) { User user = current.GetUser(); Entity entityOnServer = ((NetworkedEntity)(ref user.LocalCharacter)).GetEntityOnServer(); ulong platformId = user.PlatformId; _ = ((FixedString64Bytes)(ref user.CharacterName)).Value; _steamIdPlayerInfoCache[platformId] = new PlayerInfo(current, entityOnServer, user); if (user.IsConnected) { _steamIdOnlinePlayerInfoCache[platformId] = new PlayerInfo(current, entityOnServer, user); } if (_leveling) { int level = LevelingSystem.GetLevel(platformId); bool hasPrestiged = Bloodcraft.Systems.Leveling.PrestigeManager.HasPrestiged(platformId); Progression.PlayerProgressionCacheManager.UpdatePlayerProgression(platformId, level, hasPrestiged); } if (_exoForm && Bloodcraft.Systems.Leveling.PrestigeManager.HasExoPrestiged(platformId) && platformId.TryGetPlayerShapeshift(out var shapeshift)) { Shapeshifts.ShapeshiftCache.SetShapeshiftBuff(platformId, shapeshift); } } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(41, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("[PlayerService] BuildPlayerInfoCache() - "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log.LogWarning(val2); } finally { val.Dispose(); } } public static void HandleConnection(ulong steamId, PlayerInfo playerInfo) { _steamIdOnlinePlayerInfoCache[steamId] = playerInfo; _steamIdPlayerInfoCache[steamId] = playerInfo; } public static void HandleDisconnection(ulong steamId) { _steamIdOnlinePlayerInfoCache.TryRemove(steamId, out var _); EclipseService.TryRemovePreRegistration(steamId); EclipseService.TryUnregisterUser(steamId); } public static PlayerInfo GetPlayerInfo(string playerName) { return SteamIdPlayerInfoCache.FirstOrDefault(delegate(KeyValuePair kvp) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) User user = kvp.Value.User; return string.Equals(((FixedString64Bytes)(ref user.CharacterName)).Value, playerName, StringComparison.CurrentCultureIgnoreCase); }).Value; } } internal static class QueryService { private static readonly EntityQuery _updateBuffsBufferDestroyQuery; private static readonly EntityQuery _buffSpawnServerQuery; private static readonly EntityQuery _scriptSpawnServerQuery; private static EntityManager EntityManager { get; set; } public static EntityQuery UpdateBuffsBufferDestroyQuery => _updateBuffsBufferDestroyQuery; public static EntityQuery BuffSpawnServerQuery => _buffSpawnServerQuery; public static EntityQuery ScriptSpawnServerQuery => _scriptSpawnServerQuery; static QueryService() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) World val = WorldUtility.FindServerWorld(true); EntityManager = val.EntityManager; _updateBuffsBufferDestroyQuery = ModifyEntityQuery(((Il2CppArrayBase)(object)((ComponentSystemBase)val.GetExistingSystemManaged()).EntityQueries)[0], (ComponentType[])(object)new ComponentType[1] { ComponentType.ReadOnly(Il2CppType.Of()) }); _buffSpawnServerQuery = ModifyEntityQuery(((Il2CppArrayBase)(object)((ComponentSystemBase)val.GetExistingSystemManaged()).EntityQueries)[0], (ComponentType[])(object)new ComponentType[1] { ComponentType.ReadOnly(Il2CppType.Of()) }); _scriptSpawnServerQuery = ModifyEntityQuery(((Il2CppArrayBase)(object)((ComponentSystemBase)val.GetExistingSystemManaged()).EntityQueries)[0], (ComponentType[])(object)new ComponentType[2] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); } public static EntityQuery ModifyEntityQuery(EntityQuery originalQuery, ComponentType[] includeComponents = null, ComponentType[] excludeComponents = null) { //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) EntityQueryDesc entityQueryDesc = ((EntityQuery)(ref originalQuery)).GetEntityQueryDesc(); EntityQueryBuilder val = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref val))..ctor(AllocatorHandle.op_Implicit((Allocator)2)); if (((IEnumerable)entityQueryDesc.All).Any()) { foreach (ComponentType item in (Il2CppArrayBase)(object)entityQueryDesc.All) { ((EntityQueryBuilder)(ref val)).AddAll(item); } if (includeComponents != null && includeComponents.Any()) { ComponentType[] array = includeComponents; foreach (ComponentType val2 in array) { ((EntityQueryBuilder)(ref val)).AddAll(val2); } } } if (((IEnumerable)entityQueryDesc.Any).Any()) { foreach (ComponentType item2 in (Il2CppArrayBase)(object)entityQueryDesc.Any) { ((EntityQueryBuilder)(ref val)).AddAny(item2); } } if (((IEnumerable)entityQueryDesc.Absent).Any()) { foreach (ComponentType item3 in (Il2CppArrayBase)(object)entityQueryDesc.Absent) { ((EntityQueryBuilder)(ref val)).AddAny(item3); } } if (((IEnumerable)entityQueryDesc.None).Any()) { foreach (ComponentType item4 in (Il2CppArrayBase)(object)entityQueryDesc.None) { ((EntityQueryBuilder)(ref val)).AddNone(item4); } if (excludeComponents != null && excludeComponents.Any()) { ComponentType[] array = excludeComponents; foreach (ComponentType val3 in array) { ((EntityQueryBuilder)(ref val)).AddNone(val3); } } } ((EntityQueryBuilder)(ref val)).WithOptions(entityQueryDesc.Options); EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).CreateEntityQuery(ref val); } } internal class QuestService { private static readonly bool _leveling = ConfigService.LevelingSystem; private const float START_DELAY = 10f; private const float ROUTINE_DELAY = 60f; private static readonly WaitForSeconds _startDelay = new WaitForSeconds(10f); private static readonly WaitForSeconds _routineDelay = new WaitForSeconds(60f); public static DateTime _lastUpdate; private static readonly ComponentType[] _targetUnitAllComponents = (ComponentType[])(object)new ComponentType[7] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static readonly ComponentType[] _harvestableResourceAllComponents = (ComponentType[])(object)new ComponentType[7] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static EntityQueries.QueryDesc _targetUnitQueryDesc; private static EntityQueries.QueryDesc _harvestableResourceQueryDesc; private static readonly ConcurrentDictionary> _targetCache = new ConcurrentDictionary>(); public static readonly List ShardBearers = new List(5) { PrefabGUIDs.CHAR_Manticore_VBlood, PrefabGUIDs.CHAR_ChurchOfLight_Paladin_VBlood, PrefabGUIDs.CHAR_Gloomrot_Monster_VBlood, PrefabGUIDs.CHAR_Vampire_Dracula_VBlood, PrefabGUIDs.CHAR_Blackfang_Morgana_VBlood }; public static readonly HashSet FilteredTargetUnits = new HashSet { "Trader", "HostileVillager", "TombSummon", "StatueSpawn", "SmiteOrb", "CardinalAide", "GateBoss", "DraculaMinion", "Summon", "Minion", "Chieftain", "ConstrainingPole", "Horse", "EnchantedCross", "DivineAngel", "FallenAngel", "FarbaneSuprise", "Withered", "Servant", "Spider_Melee", "Spider_Range", "GroundSword", "FloatingWeapon", "Airborne", "SpiritDouble", "ValyrCauldron", "EmeryGolem" }; private static readonly HashSet _filteredCraftableItems = new HashSet { "Item_Cloak", "BloodKey_T01", "NewBag", "Miners", "WoodCutter", "ShadowMatter", "T0X", "Heart_T", "Water_T", "FakeItem", "PrisonPotion", "Dracula", "Consumable_Empty", "Reaper_T02", "Slashers_T02", "FishingPole", "Disguise", "Canister", "Trippy", "Eat_Rat", "Irradiant", "Slashers_T01", "Slashers_T03", "Slashers_T04", "Reaper_T03", "Reaper_T04", "Reaper_T01", "GarlicResistance", "T01_Bone" }; private static readonly HashSet _filteredHarvestableResources = new HashSet { "Item_Ingredient_Crystal", "Coal", "Thistle" }; private static bool _craftables = true; private static bool _harvestables = true; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static GameDataSystem GameDataSystem => SystemService.GameDataSystem; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; public static IReadOnlyDictionary> TargetCache => _targetCache; public QuestService() { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) _targetUnitQueryDesc = EntityManager.CreateQueryDesc(_targetUnitAllComponents, null, null, new int[1], (EntityQueryOptions)2); _harvestableResourceQueryDesc = EntityManager.CreateQueryDesc(_harvestableResourceAllComponents, null, null, new int[1], (EntityQueryOptions)64); Configuration.GetQuestRewardItems(); QuestServiceRoutine().Run(); } private static IEnumerator QuestServiceRoutine() { if (_craftables) { InitializeCraftables(); } if (_harvestables) { InitializeHarvestables().Run(); } while (true) { foreach (KeyValuePair item in PlayerService.SteamIdPlayerInfoCache) { ulong key = item.Key; PlayerService.PlayerInfo value = item.Value; Entity charEntity = value.CharEntity; User user = value.User; KeyValuePair experience; if (!_leveling) { QuestSystem.RefreshQuests(user, key, Progression.GetSimulatedLevel(charEntity)); } else if (_leveling && key.TryGetPlayerExperience(out experience)) { QuestSystem.RefreshQuests(user, key, experience.Key); } yield return null; } _lastUpdate = DateTime.UtcNow; yield return _routineDelay; } } private static void InitializeCraftables() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0010: 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_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Expected O, but got Unknown //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) NativeParallelHashMap prefabGuidToEntityMap = PrefabCollectionSystem._PrefabGuidToEntityMap; NativeParallelHashMap recipeHashLookupMap = GameDataSystem.RecipeHashLookupMap; NativeArray keyArray = recipeHashLookupMap.GetKeyArray(AllocatorHandle.op_Implicit((Allocator)2)); NativeArray valueArray = recipeHashLookupMap.GetValueArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Entity entity = default(Entity); for (int i = 0; i < keyArray.Length; i++) { PrefabGUID val = keyArray[i]; if (!valueArray[i].Entity.TryGetBuffer(out DynamicBuffer dynamicBuffer) || dynamicBuffer.IsEmpty || !prefabGuidToEntityMap.TryGetValue(dynamicBuffer[0].Guid, ref entity)) { continue; } val = entity.GetPrefabGuid(); string prefabName = val.GetPrefabName(); if (_filteredCraftableItems.Any((string item) => prefabName.Contains(item, StringComparison.CurrentCultureIgnoreCase))) { continue; } if (entity.Has() && entity.TryGetComponent(out Salvageable componentData)) { if (((PrefabGUID)(ref componentData.RecipeGUID)).HasValue()) { QuestSystem.CraftPrefabs.Add(val); } } else if (entity.Has()) { QuestSystem.CraftPrefabs.Add(val); } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(40, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("[QuestService] InitializeCraftables() - "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log.LogError(val2); } finally { keyArray.Dispose(); valueArray.Dispose(); } _craftables = false; } private static IEnumerator InitializeHarvestables() { yield return EntityQueries.QueryResultStreamAsync(_harvestableResourceQueryDesc, delegate(EntityQueries.QueryResultStream stream) { //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Expected O, but got Unknown //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) try { using (stream) { foreach (EntityQueries.QueryResult result in stream.GetResults()) { Entity entity = result.Entity; PrefabGUID val = result.ResolveComponentData(); string prefabName = val.GetPrefabName(); if (entity.Has() && !_filteredHarvestableResources.Any((string resource) => prefabName.Contains(resource, StringComparison.CurrentCultureIgnoreCase)) && ((PrefabGUID)(ref val)).HasValue()) { QuestSystem.ResourcePrefabs.Add(val); } } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(42, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("[QuestService] InitializeHarvestables() - "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log.LogError(val2); } }); _harvestables = false; } } [Flags] internal enum StartupState { None = 0, ConfigLoaded = 1, PlayerDataLoaded = 2, BootstrapPatched = 4, BootstrapFired = 8, MainHarmonyPatched = 0x10, CoreInitialized = 0x20, CommandsRegistered = 0x40, RconRegistered = 0x80 } internal static class StartupStateService { internal sealed class StartupStateSnapshot { public bool Ready { get; init; } public string[] Current { get; init; } = Array.Empty(); public string[] Missing { get; init; } = Array.Empty(); public string[] Required { get; init; } = Array.Empty(); } private static int _current; private static readonly JsonSerializerOptions _jsonOptions = new JsonSerializerOptions { WriteIndented = false }; internal const StartupState RequiredReadyStates = StartupState.ConfigLoaded | StartupState.PlayerDataLoaded | StartupState.BootstrapPatched | StartupState.BootstrapFired | StartupState.MainHarmonyPatched | StartupState.CoreInitialized | StartupState.CommandsRegistered | StartupState.RconRegistered; internal static StartupState Current => (StartupState)Volatile.Read(ref _current); internal static void Mark(StartupState state) { int num; int value; do { num = Volatile.Read(ref _current); value = num | (int)state; } while (Interlocked.CompareExchange(ref _current, value, num) != num); } internal static bool IsSet(StartupState state) { return (Current & state) == state; } internal static StartupState MissingRequired() { return (StartupState.ConfigLoaded | StartupState.PlayerDataLoaded | StartupState.BootstrapPatched | StartupState.BootstrapFired | StartupState.MainHarmonyPatched | StartupState.CoreInitialized | StartupState.CommandsRegistered | StartupState.RconRegistered) & ~Current; } internal static bool IsReady() { return MissingRequired() == StartupState.None; } private static string[] GetOrderedStateNames(StartupState states) { StartupState[] source = new StartupState[8] { StartupState.ConfigLoaded, StartupState.PlayerDataLoaded, StartupState.BootstrapPatched, StartupState.BootstrapFired, StartupState.MainHarmonyPatched, StartupState.CoreInitialized, StartupState.CommandsRegistered, StartupState.RconRegistered }; List list = new List(); list.AddRange(from state in source where state != 0 && (states & state) == state select state.ToString()); return list.ToArray(); } internal static StartupStateSnapshot GetSnapshot() { StartupState current = Current; StartupState startupState = MissingRequired(); return new StartupStateSnapshot { Ready = (startupState == StartupState.None), Current = GetOrderedStateNames(current), Missing = GetOrderedStateNames(startupState), Required = GetOrderedStateNames(StartupState.ConfigLoaded | StartupState.PlayerDataLoaded | StartupState.BootstrapPatched | StartupState.BootstrapFired | StartupState.MainHarmonyPatched | StartupState.CoreInitialized | StartupState.CommandsRegistered | StartupState.RconRegistered) }; } internal static string BuildSummary() { StartupStateSnapshot snapshot = GetSnapshot(); string value = ((snapshot.Current.Length == 0) ? "None" : string.Join(",", snapshot.Current)); string value2 = ((snapshot.Missing.Length == 0) ? "None" : string.Join(",", snapshot.Missing)); return $"Ready: {snapshot.Ready} | Current: {value} | Missing: {value2}"; } internal static string BuildJsonSummary() { return JsonSerializer.Serialize(GetSnapshot(), _jsonOptions); } internal static void Reset() { Interlocked.Exchange(ref _current, 0); } } internal class SystemService { private readonly World _world = world ?? throw new ArgumentNullException("world"); private DebugEventsSystem _debugEventsSystem; private PrefabCollectionSystem _prefabCollectionSystem; private ServerGameSettingsSystem _serverGameSettingsSystem; private ServerScriptMapper _serverScriptMapper; private SpellSchoolMappingSystem _spellSchoolMappingSystem; private EntityCommandBufferSystem _entityCommandBufferSystem; private ClaimAchievementSystem _claimAchievementSystem; private GameDataSystem _gameDataSystem; private ScriptSpawnServer _scriptSpawnServer; private CombatMusicSystem_Server _combatMusicSystem_Server; private NameableInteractableSystem _nameableInteractableSystem; private ActivateVBloodAbilitySystem _activateVBloodAbilitySystem; private EndSimulationEntityCommandBufferSystem _endSimulationEntityCommandBufferSystem; private ReplaceAbilityOnSlotSystem _replaceAbilityOnSlotSystem; private UnEquipItemSystem _unEquipItemSystem; private EquipItemSystem _equipItemSystem; private Update_ReplaceAbilityOnSlotSystem _updateReplaceAbilityOnSlotSystem; private StatChangeSystem _statChangeSystem; private GenerateCastleSystem _generateCastleSystem; private ServerBootstrapSystem _serverBootstrapSystem; private BehaviourTreeBindingSystem_Spawn _behaviourTreeBindingSystem; private SpawnAbilityGroupSlotsSystem _spawnAbilityGroupSlotSystem; private AttachParentIdSystem _attachParentIdSystem; private AbilitySpawnSystem _abilitySpawnSystem; private SpawnTeamSystem _spawnTeamSystem; private ModificationSystem _modificationSystem; private SetTeamOnSpawnSystem _setTeamOnSpawnSystem; private SpellModSyncSystem_Server _spellModSyncSystem_Server; private JewelSpawnSystem _jewelSpawnSystem; private SpellModCollectionSystem _spellModCollectionSystem; private TraderPurchaseSystem _traderPurchaseSystem; private UpdateBuffsBuffer_Destroy _updateBuffsBuffer_Destroy; private BuffSystem_Spawn_Server _buffSystem_Spawn_Server; private InstantiateMapIconsSystem_Spawn _instantiateMapIconsSystem_Spawn; private MapZoneCollectionSystem _mapZoneCollectionSystem; private UserActivityGridSystem _userActivityGridSystem; private ServantPowerSystem _servantPowerSystem; private RemoveCharmSourceFromVBloods_Hotfix_0_6 _removeCharmSourceVBloodSystem; private Singleton _networkIdSystem_Singleton; private Singleton _currentCastsSystem_Singleton; private Entity _tileModelSpatialLookupSystem; private Entity _dayNightCycleSystem; public DebugEventsSystem DebugEventsSystem => _debugEventsSystem ?? (_debugEventsSystem = GetSystem()); public PrefabCollectionSystem PrefabCollectionSystem => _prefabCollectionSystem ?? (_prefabCollectionSystem = GetSystem()); public ServerGameSettingsSystem ServerGameSettingsSystem => _serverGameSettingsSystem ?? (_serverGameSettingsSystem = GetSystem()); public ServerScriptMapper ServerScriptMapper => _serverScriptMapper ?? (_serverScriptMapper = GetSystem()); public SpellSchoolMappingSystem SpellSchoolMappingSystem => _spellSchoolMappingSystem ?? (_spellSchoolMappingSystem = GetSystem()); public EntityCommandBufferSystem EntityCommandBufferSystem => _entityCommandBufferSystem ?? (_entityCommandBufferSystem = GetSystem()); public ClaimAchievementSystem ClaimAchievementSystem => _claimAchievementSystem ?? (_claimAchievementSystem = GetSystem()); public GameDataSystem GameDataSystem => _gameDataSystem ?? (_gameDataSystem = GetSystem()); public ScriptSpawnServer ScriptSpawnServer => _scriptSpawnServer ?? (_scriptSpawnServer = GetSystem()); public CombatMusicSystem_Server CombatMusicSystem_Server => _combatMusicSystem_Server ?? (_combatMusicSystem_Server = GetSystem()); public NameableInteractableSystem NameableInteractableSystem => _nameableInteractableSystem ?? (_nameableInteractableSystem = GetSystem()); public ActivateVBloodAbilitySystem ActivateVBloodAbilitySystem => _activateVBloodAbilitySystem ?? (_activateVBloodAbilitySystem = GetSystem()); public EndSimulationEntityCommandBufferSystem EndSimulationEntityCommandBufferSystem => _endSimulationEntityCommandBufferSystem ?? (_endSimulationEntityCommandBufferSystem = GetSystem()); public ReplaceAbilityOnSlotSystem ReplaceAbilityOnSlotSystem => _replaceAbilityOnSlotSystem ?? (_replaceAbilityOnSlotSystem = GetSystem()); public UnEquipItemSystem UnEquipItemSystem => _unEquipItemSystem ?? (_unEquipItemSystem = GetSystem()); public EquipItemSystem EquipItemSystem => _equipItemSystem ?? (_equipItemSystem = GetSystem()); public Update_ReplaceAbilityOnSlotSystem Update_ReplaceAbilityOnSlotSystem => _updateReplaceAbilityOnSlotSystem ?? (_updateReplaceAbilityOnSlotSystem = GetSystem()); public StatChangeSystem StatChangeSystem => _statChangeSystem ?? (_statChangeSystem = GetSystem()); public GenerateCastleSystem GenerateCastleSystem => _generateCastleSystem ?? (_generateCastleSystem = GetOrCreateSystem()); public ServerBootstrapSystem ServerBootstrapSystem => _serverBootstrapSystem ?? (_serverBootstrapSystem = GetSystem()); public BehaviourTreeBindingSystem_Spawn BehaviourTreeBindingSystem_Spawn => _behaviourTreeBindingSystem ?? (_behaviourTreeBindingSystem = GetSystem()); public SpawnAbilityGroupSlotsSystem SpawnAbilityGroupSlotSystem => _spawnAbilityGroupSlotSystem ?? (_spawnAbilityGroupSlotSystem = GetSystem()); public AttachParentIdSystem AttachParentIdSystem => _attachParentIdSystem ?? (_attachParentIdSystem = GetSystem()); public AbilitySpawnSystem AbilitySpawnSystem => _abilitySpawnSystem ?? (_abilitySpawnSystem = GetSystem()); public SpawnTeamSystem SpawnTeamSystem => _spawnTeamSystem ?? (_spawnTeamSystem = GetSystem()); public ModificationSystem ModificationSystem => _modificationSystem ?? (_modificationSystem = GetSystem()); public SetTeamOnSpawnSystem SetTeamOnSpawnSystem => _setTeamOnSpawnSystem ?? (_setTeamOnSpawnSystem = GetSystem()); public SpellModSyncSystem_Server SpellModSyncSystem_Server => _spellModSyncSystem_Server ?? (_spellModSyncSystem_Server = GetSystem()); public JewelSpawnSystem JewelSpawnSystem => _jewelSpawnSystem ?? (_jewelSpawnSystem = GetSystem()); public SpellModCollectionSystem SpellModCollectionSystem => _spellModCollectionSystem ?? (_spellModCollectionSystem = GetSystem()); public TraderPurchaseSystem TraderPurchaseSystem => _traderPurchaseSystem ?? (_traderPurchaseSystem = GetSystem()); public UpdateBuffsBuffer_Destroy UpdateBuffsBuffer_Destroy => _updateBuffsBuffer_Destroy ?? (_updateBuffsBuffer_Destroy = GetSystem()); public BuffSystem_Spawn_Server BuffSystem_Spawn_Server => _buffSystem_Spawn_Server ?? (_buffSystem_Spawn_Server = GetSystem()); public InstantiateMapIconsSystem_Spawn InstantiateMapIconsSystem_Spawn => _instantiateMapIconsSystem_Spawn ?? (_instantiateMapIconsSystem_Spawn = GetSystem()); public MapZoneCollectionSystem MapZoneCollectionSystem => _mapZoneCollectionSystem ?? (_mapZoneCollectionSystem = GetSystem()); public UserActivityGridSystem UserActivityGridSystem => _userActivityGridSystem ?? (_userActivityGridSystem = GetSystem()); public ServantPowerSystem ServantPowerSystem => _servantPowerSystem ?? (_servantPowerSystem = GetSystem()); public RemoveCharmSourceFromVBloods_Hotfix_0_6 RemoveCharmSourceVBloodSystem => _removeCharmSourceVBloodSystem ?? (_removeCharmSourceVBloodSystem = GetSystem()); public Singleton NetworkIdSystem { get { //IL_0008: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) if (((object)(Singleton)(ref _networkIdSystem_Singleton)).Equals((object)default(Singleton))) { _networkIdSystem_Singleton = GetSingleton(); } return _networkIdSystem_Singleton; } } public Singleton CurrentCastsSystem { get { //IL_0008: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) if (((object)(Singleton)(ref _currentCastsSystem_Singleton)).Equals((object)default(Singleton))) { _currentCastsSystem_Singleton = GetSingleton(); } return _currentCastsSystem_Singleton; } } public Entity TileModelSpatialLookupSystem { get { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!_tileModelSpatialLookupSystem.Exists()) { _tileModelSpatialLookupSystem = GetSingletonEntity(); } return _tileModelSpatialLookupSystem; } } public Entity DayNightCycleSystem { get { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!_dayNightCycleSystem.Exists()) { _dayNightCycleSystem = GetSingletonEntityFromAccessor(); } return _dayNightCycleSystem; } } public SystemService(World world) { } private T GetSystem() where T : ComponentSystemBase { return _world.GetExistingSystemManaged() ?? throw new InvalidOperationException($"[{_world.Name}] - failed to get ({Il2CppType.Of().FullName})"); } private T GetOrCreateSystem() where T : ComponentSystemBase { return _world.GetOrCreateSystemManaged() ?? throw new InvalidOperationException($"[{_world.Name}] - failed to get ({Il2CppType.Of().FullName})"); } private T GetSingleton() { return ((ComponentSystemBase)ServerScriptMapper).GetSingleton(); } private Entity GetSingletonEntity() { //IL_0006: Unknown result type (might be due to invalid IL or missing references) return ((ComponentSystemBase)ServerScriptMapper).GetSingletonEntity(); } private Entity GetSingletonEntityFromAccessor() { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) Entity result = default(Entity); if (!SingletonAccessor.TryGetSingletonEntityWasteful(Core.EntityManager, ref result)) { throw new InvalidOperationException($"[{_world.Name}] - failed to get singleton entity ({Il2CppType.Of().FullName})"); } return result; } } } namespace Bloodcraft.Resources { internal static class PrefabGUIDs { public static readonly PrefabGUID VM_VBlood_TEMPLATE = new PrefabGUID(2075390218); public static readonly PrefabGUID _10x6RectangularTablesModularBuildMenuGroup = new PrefabGUID(-375280343); public static readonly PrefabGUID _3x3RoundTablesModularBuildMenuGroup = new PrefabGUID(-1226637162); public static readonly PrefabGUID _3x6RectangularTablesBuildMenuGroup = new PrefabGUID(-1058166909); public static readonly PrefabGUID _6x6RoundTablesModularBuildMenuGroup = new PrefabGUID(-1428481029); public static readonly PrefabGUID AB_AmbientLightning_Light = new PrefabGUID(589474506); public static readonly PrefabGUID AB_AmbientLightning_Light_GameplayStrike = new PrefabGUID(-2094079027); public static readonly PrefabGUID AB_ApplyWeaponCoating_AbilityGroup = new PrefabGUID(1327173823); public static readonly PrefabGUID AB_ApplyWeaponCoating_Activate = new PrefabGUID(-578949147); public static readonly PrefabGUID AB_ApplyWeaponCoating_Blood_AbilityGroup = new PrefabGUID(-1007451621); public static readonly PrefabGUID AB_ApplyWeaponCoating_Blood_Activate = new PrefabGUID(1186329047); public static readonly PrefabGUID AB_ApplyWeaponCoating_Blood_Cast = new PrefabGUID(765001445); public static readonly PrefabGUID AB_ApplyWeaponCoating_Cast = new PrefabGUID(1271061994); public static readonly PrefabGUID AB_ApplyWeaponCoating_Chaos_AbilityGroup = new PrefabGUID(-1706926836); public static readonly PrefabGUID AB_ApplyWeaponCoating_Chaos_Activate = new PrefabGUID(-1012725577); public static readonly PrefabGUID AB_ApplyWeaponCoating_Chaos_Cast = new PrefabGUID(1273123129); public static readonly PrefabGUID AB_ApplyWeaponCoating_Frost_AbilityGroup = new PrefabGUID(2110406288); public static readonly PrefabGUID AB_ApplyWeaponCoating_Frost_Activate = new PrefabGUID(-1250180678); public static readonly PrefabGUID AB_ApplyWeaponCoating_Frost_Cast = new PrefabGUID(-346833706); public static readonly PrefabGUID AB_ApplyWeaponCoating_Illusion_AbilityGroup = new PrefabGUID(-1063090297); public static readonly PrefabGUID AB_ApplyWeaponCoating_Illusion_Activate = new PrefabGUID(1197567253); public static readonly PrefabGUID AB_ApplyWeaponCoating_Illusion_Cast = new PrefabGUID(-237809887); public static readonly PrefabGUID AB_ApplyWeaponCoating_Storm_AbilityGroup = new PrefabGUID(419215380); public static readonly PrefabGUID AB_ApplyWeaponCoating_Storm_Activate = new PrefabGUID(655641197); public static readonly PrefabGUID AB_ApplyWeaponCoating_Storm_Cast = new PrefabGUID(1215462047); public static readonly PrefabGUID AB_ApplyWeaponCoating_Unholy_AbilityGroup = new PrefabGUID(1293762372); public static readonly PrefabGUID AB_ApplyWeaponCoating_Unholy_Activate = new PrefabGUID(1932625569); public static readonly PrefabGUID AB_ApplyWeaponCoating_Unholy_Cast = new PrefabGUID(-2088804628); public static readonly PrefabGUID AB_Archer_Projectile_Cast = new PrefabGUID(1106195644); public static readonly PrefabGUID AB_Archer_Projectile_Group = new PrefabGUID(-751119210); public static readonly PrefabGUID AB_Archer_Projectile01 = new PrefabGUID(-1423243724); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_AbilityGroup = new PrefabGUID(91941562); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_Cast = new PrefabGUID(1965996833); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_ImprisonBuff = new PrefabGUID(2007858431); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_MoveBehaviourBuff = new PrefabGUID(1099681289); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_RingArea = new PrefabGUID(-1952370580); public static readonly PrefabGUID AB_ArchMage_CrystalLance_AbilityGroup = new PrefabGUID(1520734123); public static readonly PrefabGUID AB_ArchMage_CrystalLance_AggroBuff = new PrefabGUID(-967628321); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Cast_01 = new PrefabGUID(-88630604); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Cast_02 = new PrefabGUID(1895752824); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Cast_03 = new PrefabGUID(-518248879); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_AbilityGroup = new PrefabGUID(1187623532); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_Cast = new PrefabGUID(-1536831420); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_HitBuff = new PrefabGUID(1237316881); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_Projectile = new PrefabGUID(-1385969356); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_SplinterProjectile = new PrefabGUID(-485680280); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Projectile = new PrefabGUID(826214455); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_AbilityGroup = new PrefabGUID(-139137314); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_Buff = new PrefabGUID(-1161618215); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_Buff_ALREADY_EXISTS_2 = new PrefabGUID(-1748472670); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_Cast = new PrefabGUID(-2059383344); public static readonly PrefabGUID AB_ArchMage_FireSpinner_AbilityGroup = new PrefabGUID(1217615468); public static readonly PrefabGUID AB_ArchMage_FireSpinner_Cast = new PrefabGUID(-1997201513); public static readonly PrefabGUID AB_ArchMage_FireSpinner_Projectile = new PrefabGUID(612861780); public static readonly PrefabGUID AB_ArchMage_FireSpinner_Spinner = new PrefabGUID(-1672727739); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AggroBuff = new PrefabGUID(-240922728); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AreaDamageBuff = new PrefabGUID(-1640482518); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AreaEffectBuff = new PrefabGUID(-139562596); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AreaInitBuff = new PrefabGUID(451676082); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Dash_AbilityGroup = new PrefabGUID(-1754787506); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Dash_Cast = new PrefabGUID(2138663579); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Dash_Trigger = new PrefabGUID(1679920133); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Projectile = new PrefabGUID(269193311); public static readonly PrefabGUID AB_ArchMage_FlameSphere_ShouldDestroyBuff = new PrefabGUID(299001257); public static readonly PrefabGUID AB_ArchMage_FlamingIce_AbilityGroup = new PrefabGUID(-2025881745); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Area = new PrefabGUID(379217467); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Cast = new PrefabGUID(1890249378); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Channel = new PrefabGUID(-920928426); public static readonly PrefabGUID AB_ArchMage_FlamingIce_FreezeBuff = new PrefabGUID(821255111); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Trigger = new PrefabGUID(-1488767962); public static readonly PrefabGUID AB_ArchMage_LightningArc_AbilityGroup = new PrefabGUID(-1232816408); public static readonly PrefabGUID AB_ArchMage_LightningArc_Cast = new PrefabGUID(-1524769526); public static readonly PrefabGUID AB_ArchMage_LightningArc_Projectile = new PrefabGUID(1211897000); public static readonly PrefabGUID AB_ArchMage_LightningCurse_AbilityGroup = new PrefabGUID(1365358996); public static readonly PrefabGUID AB_ArchMage_LightningCurse_Cast = new PrefabGUID(1142315183); public static readonly PrefabGUID AB_ArchMage_LightningCurse_Projectile = new PrefabGUID(-1317668918); public static readonly PrefabGUID AB_ArchMage_LightningCurse_ProjectileSpawnerBuff = new PrefabGUID(2089605812); public static readonly PrefabGUID AB_ArchMage_LightningCurse_ProjectileTrigger = new PrefabGUID(390853496); public static readonly PrefabGUID AB_ArchMage_LightningCurse_Trigger = new PrefabGUID(-988990419); public static readonly PrefabGUID AB_ArchMage_MirrorImage_AbilityGroup = new PrefabGUID(-1897317770); public static readonly PrefabGUID AB_ArchMage_MirrorImage_Cast = new PrefabGUID(-1714013936); public static readonly PrefabGUID AB_ArchMage_MirrorImage_EndPhase = new PrefabGUID(262354515); public static readonly PrefabGUID AB_ArchMage_MirrorImage_MoveBehaviourBuff = new PrefabGUID(-1099792891); public static readonly PrefabGUID AB_ArchMage_MirrorImage_Phase = new PrefabGUID(30325069); public static readonly PrefabGUID AB_ArchMage_MirrorImage_Trigger = new PrefabGUID(292114817); public static readonly PrefabGUID AB_ArchMage_Teleport_AbilityGroup = new PrefabGUID(886063983); public static readonly PrefabGUID AB_ArchMage_Teleport_Cast = new PrefabGUID(484270946); public static readonly PrefabGUID AB_ArchMage_Teleport_EndPhase = new PrefabGUID(56049482); public static readonly PrefabGUID AB_ArchMage_Teleport_Phase = new PrefabGUID(-723899936); public static readonly PrefabGUID AB_Bandit_Ambush_Buff = new PrefabGUID(614276301); public static readonly PrefabGUID AB_Bandit_Ambush_RevealBuff = new PrefabGUID(-1076678456); public static readonly PrefabGUID AB_Bandit_Bomber_Elite_Roll = new PrefabGUID(-2048180340); public static readonly PrefabGUID AB_Bandit_Bomber_Elite_Roll_Group = new PrefabGUID(192866635); public static readonly PrefabGUID AB_Bandit_BombThrow_AbilityGroup = new PrefabGUID(-1743551272); public static readonly PrefabGUID AB_Bandit_BombThrow_Cast = new PrefabGUID(-733996338); public static readonly PrefabGUID AB_Bandit_BombThrow_Throw = new PrefabGUID(746729709); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_AbilityGroup = new PrefabGUID(-444905742); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Cast = new PrefabGUID(-1999880094); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Throw_A = new PrefabGUID(-2120057081); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Throw_B = new PrefabGUID(1077321307); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Throw_C = new PrefabGUID(-1517314668); public static readonly PrefabGUID AB_Bandit_Deadeye_Camouflage_AbilityGroup = new PrefabGUID(403340165); public static readonly PrefabGUID AB_Bandit_Deadeye_Camouflage_Buff = new PrefabGUID(-1494713411); public static readonly PrefabGUID AB_Bandit_Deadeye_Camouflage_Cast = new PrefabGUID(1619421912); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Area = new PrefabGUID(-2085683744); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Cast = new PrefabGUID(-425480162); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Channel_Buff = new PrefabGUID(-1024366257); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Group = new PrefabGUID(1996370390); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Area = new PrefabGUID(318586876); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Cast = new PrefabGUID(646697719); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Channel_Buff = new PrefabGUID(1894913654); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Group = new PrefabGUID(642767950); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Throw = new PrefabGUID(-1052631664); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Throw = new PrefabGUID(1552667718); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Area = new PrefabGUID(1433173866); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Cast = new PrefabGUID(-538723780); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Group = new PrefabGUID(-1181691042); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_ProjectileDown = new PrefabGUID(-1181723749); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_ProjectileUp = new PrefabGUID(-2066463501); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Spawner = new PrefabGUID(516139794); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Cast = new PrefabGUID(-2024307089); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Channel_Buff = new PrefabGUID(-1625210735); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Group = new PrefabGUID(-1230681995); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Cast = new PrefabGUID(-549357932); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Channel_Buff = new PrefabGUID(-381215490); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Group = new PrefabGUID(-836774616); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Projectile = new PrefabGUID(338969973); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Projectile = new PrefabGUID(659256615); public static readonly PrefabGUID AB_Bandit_Deadeye_Idle_Buff = new PrefabGUID(-881914431); public static readonly PrefabGUID AB_Bandit_Deadeye_RangedAttack_Cast = new PrefabGUID(1015300268); public static readonly PrefabGUID AB_Bandit_Deadeye_RangedAttack_Group = new PrefabGUID(1336193986); public static readonly PrefabGUID AB_Bandit_Deadeye_RangedAttack_Projectile = new PrefabGUID(1262043059); public static readonly PrefabGUID AB_Bandit_Deadeye_Roll_AbilityGroup = new PrefabGUID(-912372242); public static readonly PrefabGUID AB_Bandit_Deadeye_Roll_CastAndRoll = new PrefabGUID(-1983337096); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_01_AbilityGroup = new PrefabGUID(-1601441951); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_02_AbilityGroup = new PrefabGUID(-1657698157); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_03_AbilityGroup = new PrefabGUID(-228936316); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Cast = new PrefabGUID(16980588); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_AbilityGroup = new PrefabGUID(514628041); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_Cast = new PrefabGUID(1621374433); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_ReachPos = new PrefabGUID(-2128770207); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_TargetSerpentSlotBuff = new PrefabGUID(343491640); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_WalkToPosBuff = new PrefabGUID(-352192969); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_ReachPos = new PrefabGUID(145985534); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_TargetSerpentSlotBuff = new PrefabGUID(1018849261); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_WalkToPosBuff = new PrefabGUID(424796826); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_AbilityGroup = new PrefabGUID(643209588); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Buff = new PrefabGUID(1578560559); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Cast = new PrefabGUID(1802235612); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_DownedStun = new PrefabGUID(-531963043); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_PullBuff = new PrefabGUID(1511401953); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Throw = new PrefabGUID(-406761191); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Travel = new PrefabGUID(-56609007); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_AbilityGroup = new PrefabGUID(-2096565232); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_Buff = new PrefabGUID(-942168862); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_Cast = new PrefabGUID(2137527296); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_MinionSpawnPostTravel = new PrefabGUID(2145493958); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_MinionSpawnTravel = new PrefabGUID(796446287); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_MinionTrigger = new PrefabGUID(-263342865); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_TargetFishSpotBuff = new PrefabGUID(-1441774408); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_AbilityGroup = new PrefabGUID(-82547339); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_Cast = new PrefabGUID(-1677547928); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_TargetSerpentSlotBuff = new PrefabGUID(-459325308); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_WalkToPosBuff = new PrefabGUID(1667669669); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_AbilityGroup = new PrefabGUID(396802528); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_Buff = new PrefabGUID(1143164491); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_Cast = new PrefabGUID(1705082862); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_Object = new PrefabGUID(1173936438); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_SpawnTravel = new PrefabGUID(-2113681866); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_TargetFishSpotBuff = new PrefabGUID(-588408781); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_AbilityGroup = new PrefabGUID(647582679); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_Buff = new PrefabGUID(-1612091215); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_Cast = new PrefabGUID(-256287804); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_MinionSpawnPostTravel = new PrefabGUID(1359094029); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_MinionSpawnTravel = new PrefabGUID(-1957344524); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_MinionTrigger = new PrefabGUID(-1982947231); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_TargetFishSpotBuff = new PrefabGUID(-1108714409); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_AbilityGroup = new PrefabGUID(571532506); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Buff = new PrefabGUID(-515272712); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Cast_Throw = new PrefabGUID(1184409626); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_DespawnBuff = new PrefabGUID(-163781604); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_DespawnDelayBuff = new PrefabGUID(2141155864); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_AbilityGroup = new PrefabGUID(-405467076); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Buff = new PrefabGUID(-162196022); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Cast_Throw = new PrefabGUID(-31935559); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_DespawnBuff = new PrefabGUID(1573364739); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_DespawnDelayBuff = new PrefabGUID(1995307154); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_SpawnBuff = new PrefabGUID(796768594); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_SpawnPosOccupiedBuff = new PrefabGUID(45227631); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Summon = new PrefabGUID(-1203439535); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_TargetFishSpotBuff = new PrefabGUID(-1067814600); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Throw = new PrefabGUID(605436873); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_SpawnBuff = new PrefabGUID(1431881003); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_SpawnPosOccupiedBuff = new PrefabGUID(979966699); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Summon = new PrefabGUID(294823191); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_TargetFishSpotBuff = new PrefabGUID(-2105496725); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Throw = new PrefabGUID(197909875); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_AbilityGroup = new PrefabGUID(-1807544727); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_Cast = new PrefabGUID(160205942); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_Channel = new PrefabGUID(-1448436196); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_Hit = new PrefabGUID(1481190476); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_AbilityGroup = new PrefabGUID(1516349451); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Cast01 = new PrefabGUID(1168365685); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Cast02 = new PrefabGUID(102339461); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Hit01 = new PrefabGUID(1700359110); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Hit02 = new PrefabGUID(2031929448); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_AbilityGroup = new PrefabGUID(-892431821); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_Area = new PrefabGUID(-55501018); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_Buff = new PrefabGUID(-250777393); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_Cast = new PrefabGUID(1967051268); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Cast = new PrefabGUID(-102278544); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Group = new PrefabGUID(1187864883); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Throw = new PrefabGUID(-326095012); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Throw_Center = new PrefabGUID(1034684941); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Trigger = new PrefabGUID(-978448375); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_BloodRage_Cast = new PrefabGUID(-236936957); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_BloodRage_Group = new PrefabGUID(-1100933071); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Cast = new PrefabGUID(-504877178); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Group = new PrefabGUID(-2010697707); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_AbilityGroup = new PrefabGUID(46962343); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_BloodRage_AbilityGroup = new PrefabGUID(-1432555386); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_BloodRage_Cast = new PrefabGUID(-1188423561); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_Cast = new PrefabGUID(-1555191296); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_Projectile = new PrefabGUID(-1461521784); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Projectile = new PrefabGUID(926720349); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_AbilityGroup = new PrefabGUID(-1326540020); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Cast = new PrefabGUID(13962946); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Hard_AbilityGroup = new PrefabGUID(-1696612225); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Hard_Cast = new PrefabGUID(45482985); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_AbilityGroup = new PrefabGUID(-871701576); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Buff = new PrefabGUID(-1850501474); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Cast = new PrefabGUID(1428691280); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Hard_AbilityGroup = new PrefabGUID(-1568783706); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Hard_Cast = new PrefabGUID(-1456665278); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Projectile = new PrefabGUID(1154919829); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_StaggerBuff = new PrefabGUID(1772599073); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_Cast = new PrefabGUID(-968455089); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_GateBoss_MinionBuff = new PrefabGUID(1936552741); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_Group = new PrefabGUID(1914101495); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_Summon = new PrefabGUID(891231141); public static readonly PrefabGUID AB_Bandit_Foreman_Roll_CastAndRoll = new PrefabGUID(-902150618); public static readonly PrefabGUID AB_Bandit_Foreman_Roll_Group = new PrefabGUID(-1773431654); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Buff = new PrefabGUID(-1388221055); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Cast = new PrefabGUID(-378355710); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Group = new PrefabGUID(2130985273); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Throw = new PrefabGUID(1792504388); public static readonly PrefabGUID AB_Bandit_Foreman_VBlood_Emote_Aggro_AbilityGroup = new PrefabGUID(-1675488046); public static readonly PrefabGUID AB_Bandit_Foreman_VBlood_Emote_Aggro_Buff = new PrefabGUID(1564776620); public static readonly PrefabGUID AB_Bandit_Foreman_VBlood_Emote_Aggro_Cast = new PrefabGUID(-1709807211); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_AbilityGroup = new PrefabGUID(1015070299); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_Buff = new PrefabGUID(172001911); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_Cast = new PrefabGUID(1320706811); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_EndBuff = new PrefabGUID(-289232633); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_Nova = new PrefabGUID(577840459); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_AbilityGroup = new PrefabGUID(766284586); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Cast = new PrefabGUID(-652657527); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_AbilityGroup = new PrefabGUID(-328617085); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Cast = new PrefabGUID(2055017810); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Throw01 = new PrefabGUID(-698051948); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Throw02 = new PrefabGUID(209868589); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Trigger01 = new PrefabGUID(-721181968); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Trigger02 = new PrefabGUID(1789626324); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Throw = new PrefabGUID(-1404569475); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Trigger = new PrefabGUID(1085881602); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Cast = new PrefabGUID(-895811403); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Group = new PrefabGUID(2134585360); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Hard_Cast = new PrefabGUID(-1374239147); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Hard_Group = new PrefabGUID(-1871956083); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Projectile = new PrefabGUID(1042909452); public static readonly PrefabGUID AB_Bandit_Hunter_Bow_Cast = new PrefabGUID(1547925762); public static readonly PrefabGUID AB_Bandit_Hunter_Bow_Group = new PrefabGUID(-39311902); public static readonly PrefabGUID AB_Bandit_Hunter_Bow_Projectile = new PrefabGUID(1802976129); public static readonly PrefabGUID AB_Bandit_Hunter_Roll_AbilityGroup = new PrefabGUID(564244811); public static readonly PrefabGUID AB_Bandit_Hunter_Roll_CastAndRoll = new PrefabGUID(828882973); public static readonly PrefabGUID AB_Bandit_Leader_CallWolf_AbilityGroup = new PrefabGUID(-1854347593); public static readonly PrefabGUID AB_Bandit_Leader_CallWolf_Cast = new PrefabGUID(-1437515280); public static readonly PrefabGUID AB_Bandit_Leader_CallWolf_Summon = new PrefabGUID(-419870015); public static readonly PrefabGUID AB_Bandit_Leader_Crossbow_Cast = new PrefabGUID(1956190540); public static readonly PrefabGUID AB_Bandit_Leader_Crossbow_Group = new PrefabGUID(-589722860); public static readonly PrefabGUID AB_Bandit_Leader_Crossbow_Projectile = new PrefabGUID(-269688030); public static readonly PrefabGUID AB_Bandit_Leader_OnAggro_AbilityGroup = new PrefabGUID(1567999366); public static readonly PrefabGUID AB_Bandit_Leader_OnAggro_Cast = new PrefabGUID(1304417048); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_AbilityGroup = new PrefabGUID(-67405040); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_Buff = new PrefabGUID(-1406264844); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_Cast = new PrefabGUID(-1144749945); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_CountEnemies = new PrefabGUID(1163260); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_Stagger_Debuff = new PrefabGUID(2013098681); public static readonly PrefabGUID AB_Bandit_Leader_Roll_AbilityGroup = new PrefabGUID(138056981); public static readonly PrefabGUID AB_Bandit_Leader_Roll_CastAndRoll = new PrefabGUID(814281313); public static readonly PrefabGUID AB_Bandit_Leader_Strafe_Cast = new PrefabGUID(-1478907722); public static readonly PrefabGUID AB_Bandit_Leader_Strafe_Group = new PrefabGUID(920868547); public static readonly PrefabGUID AB_Bandit_Leader_Strafe_Projectile = new PrefabGUID(-835823412); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Buff = new PrefabGUID(1167706357); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Cast = new PrefabGUID(-1795398926); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Group = new PrefabGUID(1550497814); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Throw = new PrefabGUID(-293977621); public static readonly PrefabGUID AB_Bandit_MegaBomb_Ground = new PrefabGUID(1249427475); public static readonly PrefabGUID AB_Bandit_Mugger_Block_AbilityGroup = new PrefabGUID(616797239); public static readonly PrefabGUID AB_Bandit_Mugger_Block_Buff = new PrefabGUID(-816211166); public static readonly PrefabGUID AB_Bandit_Mugger_Block_Cast = new PrefabGUID(-137254439); public static readonly PrefabGUID AB_Bandit_Mugger_GapCloser_Buff = new PrefabGUID(1058444186); public static readonly PrefabGUID AB_Bandit_Mugger_GapCloser_Cast = new PrefabGUID(1973172284); public static readonly PrefabGUID AB_Bandit_Mugger_GapCloser_Group = new PrefabGUID(2034763818); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Cast01 = new PrefabGUID(-662440840); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Cast02 = new PrefabGUID(-2120002335); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Group = new PrefabGUID(1281316565); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Hit = new PrefabGUID(-1244488154); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Pushups = new PrefabGUID(639938511); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Situps = new PrefabGUID(-1749423133); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Tinker = new PrefabGUID(-692399578); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Whittling = new PrefabGUID(25089619); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Pushups = new PrefabGUID(-1880729304); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Situps = new PrefabGUID(-976938930); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Tinker = new PrefabGUID(-937443015); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Whittling = new PrefabGUID(1067834426); public static readonly PrefabGUID AB_Bandit_Stalker_ChargeAttack_Cast = new PrefabGUID(-943520805); public static readonly PrefabGUID AB_Bandit_Stalker_ChargeAttack_Group = new PrefabGUID(-1250624804); public static readonly PrefabGUID AB_Bandit_Stalker_ChargeAttack_Hit = new PrefabGUID(904465818); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack_Cast = new PrefabGUID(1722414615); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack_Group = new PrefabGUID(-1969189808); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack_Hit = new PrefabGUID(-1248839893); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack02_Cast = new PrefabGUID(-695801888); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack02_Group = new PrefabGUID(1365760673); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack02_Hit = new PrefabGUID(120174250); public static readonly PrefabGUID AB_Bandit_Stalker_Projectile = new PrefabGUID(810694829); public static readonly PrefabGUID AB_Bandit_Stalker_Projectile_Cast = new PrefabGUID(1492163222); public static readonly PrefabGUID AB_Bandit_Stalker_Projectile_Group = new PrefabGUID(-1997657671); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_ChargeAttack_Cast = new PrefabGUID(-1110837825); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_ChargeAttack_Group = new PrefabGUID(65616384); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_ChargeAttack_Hit = new PrefabGUID(13465215); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_Aggro_AbilityGroup = new PrefabGUID(-146108512); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_Aggro_Buff = new PrefabGUID(-768608303); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_Aggro_Cast = new PrefabGUID(1704098967); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1194576057); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_MeleeAttack_Cast = new PrefabGUID(-375142); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_MeleeAttack_Group = new PrefabGUID(-66951019); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_MeleeAttack_Hit = new PrefabGUID(-1648675359); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile = new PrefabGUID(1248898466); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Cast = new PrefabGUID(-746091239); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Group = new PrefabGUID(226929260); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Hard = new PrefabGUID(1809270482); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Hard_Cast = new PrefabGUID(40230641); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Hard_Group = new PrefabGUID(-1865487078); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Reinforcement_Cast = new PrefabGUID(-1166042431); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Reinforcement_Group = new PrefabGUID(-1749428209); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Reinforcement_Summon = new PrefabGUID(-2021138427); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Cast = new PrefabGUID(-1337978054); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_ChannlingBuff = new PrefabGUID(1659131783); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Group = new PrefabGUID(19031114); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Object = new PrefabGUID(1416059704); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Throw = new PrefabGUID(-1312236901); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_ThrowLong = new PrefabGUID(-1463258350); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_ThrowShort = new PrefabGUID(849433643); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Trigger = new PrefabGUID(165382461); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Cast = new PrefabGUID(-1279337499); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Channel = new PrefabGUID(936484594); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Group = new PrefabGUID(-2121210997); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Hard_Cast = new PrefabGUID(-237625615); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Hard_Group = new PrefabGUID(-609538743); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Hit = new PrefabGUID(1721747521); public static readonly PrefabGUID AB_Bandit_StickyBomb_AbilityGroup = new PrefabGUID(1479036818); public static readonly PrefabGUID AB_Bandit_StickyBomb_Cast = new PrefabGUID(-1779424390); public static readonly PrefabGUID AB_Bandit_StickyBomb_ExplosiveBuff = new PrefabGUID(-695537141); public static readonly PrefabGUID AB_Bandit_StickyBomb_ExplosiveImpact = new PrefabGUID(-896351921); public static readonly PrefabGUID AB_Bandit_StickyBomb_HitBuff = new PrefabGUID(1118893557); public static readonly PrefabGUID AB_Bandit_StickyBomb_Projectile = new PrefabGUID(-525938660); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_AbilityGroup = new PrefabGUID(1688748795); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_AreaThrow = new PrefabGUID(810319466); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_Cast = new PrefabGUID(-211553165); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_Hit = new PrefabGUID(1603067418); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_Projectile = new PrefabGUID(1873064515); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_AbilityGroup = new PrefabGUID(2078583785); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_AreaThrow = new PrefabGUID(-1005194448); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_Cast = new PrefabGUID(-54449418); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_Hit = new PrefabGUID(616126562); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_Projectile = new PrefabGUID(-1856356338); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_AbilityGroup = new PrefabGUID(1684865572); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_Cast = new PrefabGUID(1832709242); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_DownedStun = new PrefabGUID(-621173288); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_Hit = new PrefabGUID(1646866546); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_LaunchBuff = new PrefabGUID(728002893); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_ChaosArea_Hard = new PrefabGUID(-870209514); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_AbilityGroup = new PrefabGUID(593979922); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_AreaThrow = new PrefabGUID(-49087485); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_Cast = new PrefabGUID(2019901258); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_Hit = new PrefabGUID(1093076824); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_Projectile = new PrefabGUID(-1320443001); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_Reinforcement_Cast = new PrefabGUID(-660133369); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_Reinforcement_Group = new PrefabGUID(1267543813); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_Reinforcement_Summon = new PrefabGUID(1189193321); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_AbilityGroup = new PrefabGUID(-96620724); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_AreaThrow = new PrefabGUID(-735643063); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_Cast = new PrefabGUID(852775925); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_Hit = new PrefabGUID(-1202407466); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_Projectile = new PrefabGUID(1173431424); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Cast = new PrefabGUID(526486472); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Channel = new PrefabGUID(-1097545335); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Group = new PrefabGUID(-47403235); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Hit = new PrefabGUID(195936210); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SwingAttack_AbilityGroup = new PrefabGUID(-331113507); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SwingAttack_Cast = new PrefabGUID(26586665); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SwingAttack_Hit = new PrefabGUID(207297823); public static readonly PrefabGUID AB_Bandit_Thief_Counter_AbilityGroup = new PrefabGUID(817680188); public static readonly PrefabGUID AB_Bandit_Thief_Counter_Buff = new PrefabGUID(-1641592767); public static readonly PrefabGUID AB_Bandit_Thief_Counter_Cast = new PrefabGUID(-544841952); public static readonly PrefabGUID AB_Bandit_Thief_Counter_PreTravel = new PrefabGUID(751373588); public static readonly PrefabGUID AB_Bandit_Thief_Counter_Travel = new PrefabGUID(-1180330107); public static readonly PrefabGUID AB_Bandit_Thief_Counter_TravelEnd = new PrefabGUID(1334064160); public static readonly PrefabGUID AB_Bandit_Thief_HeavyAttack_Cast = new PrefabGUID(1927151107); public static readonly PrefabGUID AB_Bandit_Thief_HeavyAttack_Group = new PrefabGUID(-691814641); public static readonly PrefabGUID AB_Bandit_Thief_HeavyAttack_Hit = new PrefabGUID(1509293541); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack01_Cast01 = new PrefabGUID(-923748863); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack01_Group = new PrefabGUID(1734839687); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack01_Hit = new PrefabGUID(-113835723); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack02_Cast02 = new PrefabGUID(1155744315); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack02_Group = new PrefabGUID(-2106739571); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Buff = new PrefabGUID(1595547018); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Cast = new PrefabGUID(-1015417951); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Elite_Buff = new PrefabGUID(2070247233); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Elite_Cast = new PrefabGUID(388863053); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Elite_Group = new PrefabGUID(-659513479); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Group = new PrefabGUID(-1956103113); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite01_Cast01 = new PrefabGUID(1771160214); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite01_Group = new PrefabGUID(-1484849310); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite01_Hit = new PrefabGUID(-889980562); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite02_Cast02 = new PrefabGUID(366397341); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite02_Group = new PrefabGUID(1112631726); public static readonly PrefabGUID AB_Bandit_Thieft_Dash_Elite_AbilityGroup = new PrefabGUID(1660492999); public static readonly PrefabGUID AB_Bandit_Thieft_Dash_Elite_Cast = new PrefabGUID(-829105677); public static readonly PrefabGUID AB_Bandit_Thieft_Dash_Elite_Phase = new PrefabGUID(789337881); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Cast01 = new PrefabGUID(422940571); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Cast02 = new PrefabGUID(1317399641); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Group = new PrefabGUID(-1970983747); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Hit = new PrefabGUID(1692417678); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_CallReinforcements_AbilityGroup = new PrefabGUID(-3835897); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_CallReinforcements_Cast = new PrefabGUID(-238992625); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_CallReinforcements_Summon = new PrefabGUID(-2124269656); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_AbilityGroup = new PrefabGUID(840159262); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_Cast = new PrefabGUID(1271701569); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_Hard_Area = new PrefabGUID(152359773); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_Phase = new PrefabGUID(1489346628); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_AbilityGroup = new PrefabGUID(1452056926); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_Buff = new PrefabGUID(694556689); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_Cast = new PrefabGUID(606469554); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_Projectile = new PrefabGUID(1197747538); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_AbilityGroup = new PrefabGUID(2003603501); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_AreaThrow = new PrefabGUID(-1873502217); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_Cast = new PrefabGUID(-676261650); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_Hit = new PrefabGUID(1334540542); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_Projectile = new PrefabGUID(1243050104); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_AbilityGroup01 = new PrefabGUID(455219779); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_AbilityGroup02 = new PrefabGUID(-453755281); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Cast01 = new PrefabGUID(2019564238); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Cast02 = new PrefabGUID(1328465502); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Hit01 = new PrefabGUID(-2065483664); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Hit02 = new PrefabGUID(931326790); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_AbilityGroup = new PrefabGUID(69086718); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Buff = new PrefabGUID(784366378); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Cast = new PrefabGUID(-302281354); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Charge_AbilityGroup = new PrefabGUID(82350674); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Charge_Cast = new PrefabGUID(1608242820); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Charge_Phase = new PrefabGUID(-183575635); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_AbilityGroup = new PrefabGUID(358187796); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_Cast = new PrefabGUID(210911413); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_HideWeapon_Buff = new PrefabGUID(1114144111); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_Projectile = new PrefabGUID(1327750581); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Cast01 = new PrefabGUID(-1412708535); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Cast02 = new PrefabGUID(-1242398765); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Group = new PrefabGUID(1400073690); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Hit = new PrefabGUID(-1541586928); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_AbilityGroup = new PrefabGUID(-309308308); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_Buff = new PrefabGUID(-885699430); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_Cast = new PrefabGUID(-1709720054); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_Throw = new PrefabGUID(-703151210); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_AbilityGroup = new PrefabGUID(-1826323796); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_Cast01 = new PrefabGUID(-1264467506); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_Cast02 = new PrefabGUID(400623713); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_Hit01 = new PrefabGUID(526643802); public static readonly PrefabGUID AB_Bandit_Worker_Miner_Mine_AbilityGroup = new PrefabGUID(900927411); public static readonly PrefabGUID AB_Bandit_Worker_Miner_Mine_Cast = new PrefabGUID(156862047); public static readonly PrefabGUID AB_Bandit_Worker_Miner_Mine_Hit = new PrefabGUID(126204861); public static readonly PrefabGUID AB_Bandit_Worker_Shared_Flee_AbilityGroup = new PrefabGUID(1340319300); public static readonly PrefabGUID AB_Bandit_Worker_Shared_Flee_Cast = new PrefabGUID(1566211437); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_AbilityGroup = new PrefabGUID(2039677643); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_Cast01 = new PrefabGUID(1661895736); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_Cast02 = new PrefabGUID(-1902190116); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_Hit01 = new PrefabGUID(-1879470218); public static readonly PrefabGUID AB_BarrelDisguise_BarrelRoll_AbilityGroup = new PrefabGUID(-1176933244); public static readonly PrefabGUID AB_BarrelDisguise_BarrelRoll_Cast = new PrefabGUID(1366309622); public static readonly PrefabGUID AB_BarrelDisguise_BarrelRoll_Phase = new PrefabGUID(794168656); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationApproch_Buff = new PrefabGUID(581640601); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationApproch_Cast = new PrefabGUID(-1151659014); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationApproch_Group = new PrefabGUID(-292632051); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleClose_Buff = new PrefabGUID(1644611028); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleClose_Cast = new PrefabGUID(518003890); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleClose_Group = new PrefabGUID(1493606342); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleFar_Buff = new PrefabGUID(-1073433311); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleFar_Cast = new PrefabGUID(-706163371); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleFar_Group = new PrefabGUID(1407801281); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleMid_Buff = new PrefabGUID(-1425536461); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleMid_Cast = new PrefabGUID(1668553037); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleMid_Group = new PrefabGUID(417450031); public static readonly PrefabGUID AB_BatSwarm_Melee_AbilityGroup = new PrefabGUID(5164221); public static readonly PrefabGUID AB_BatSwarm_Melee_Cast = new PrefabGUID(-510562927); public static readonly PrefabGUID AB_BatSwarm_Melee_Hit = new PrefabGUID(1437404153); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_AbilityGroup = new PrefabGUID(1450902136); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Cast = new PrefabGUID(-1933992648); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Debuff = new PrefabGUID(418565276); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_End = new PrefabGUID(-1461371214); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Hit = new PrefabGUID(-1055188210); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Phase = new PrefabGUID(100945319); public static readonly PrefabGUID AB_BatVampire_BatStorm_AbilityGroup = new PrefabGUID(-254080557); public static readonly PrefabGUID AB_BatVampire_BatStorm_Cast = new PrefabGUID(2070624298); public static readonly PrefabGUID AB_BatVampire_BatStorm_Projectile = new PrefabGUID(-833043519); public static readonly PrefabGUID AB_BatVampire_BatStorm_ProjectileSpawnerBuff = new PrefabGUID(1280015305); public static readonly PrefabGUID AB_BatVampire_BatStorm_ProjectileTrigger = new PrefabGUID(190165383); public static readonly PrefabGUID AB_BatVampire_BatStorm_ScreenEffectBuff = new PrefabGUID(-1762287907); public static readonly PrefabGUID AB_BatVampire_BatStorm_Trigger = new PrefabGUID(1292017056); public static readonly PrefabGUID AB_BatVampire_BatSwarm_AbilityGroup = new PrefabGUID(716346677); public static readonly PrefabGUID AB_BatVampire_BatSwarm_BleedBuff = new PrefabGUID(1248170710); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Cast = new PrefabGUID(-97131038); public static readonly PrefabGUID AB_BatVampire_BatSwarm_HitBuff = new PrefabGUID(363438545); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Projectile_Straight = new PrefabGUID(-1553976958); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Projectile01 = new PrefabGUID(850610109); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Projectile02 = new PrefabGUID(-1049196958); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Trigger = new PrefabGUID(410670682); public static readonly PrefabGUID AB_BatVampire_JumpStrike_AbilityGroup = new PrefabGUID(-66831677); public static readonly PrefabGUID AB_BatVampire_JumpStrike_Cast = new PrefabGUID(347077642); public static readonly PrefabGUID AB_BatVampire_JumpStrike_End = new PrefabGUID(1110408956); public static readonly PrefabGUID AB_BatVampire_JumpStrike_Phase = new PrefabGUID(-2133957108); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_AbilityGroup = new PrefabGUID(-1965562520); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Cast01 = new PrefabGUID(-1581102443); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Cast02 = new PrefabGUID(1248469826); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Cast03 = new PrefabGUID(1658073310); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Hit = new PrefabGUID(636829290); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Hit03 = new PrefabGUID(359609110); public static readonly PrefabGUID AB_BatVampire_NightDash_AbilityGroup = new PrefabGUID(1416508240); public static readonly PrefabGUID AB_BatVampire_NightDash_AggroBuff = new PrefabGUID(1751996731); public static readonly PrefabGUID AB_BatVampire_NightDash_BleedBuff = new PrefabGUID(765789382); public static readonly PrefabGUID AB_BatVampire_NightDash_Cast = new PrefabGUID(793689690); public static readonly PrefabGUID AB_BatVampire_NightDash_Dash_AbilityGroup = new PrefabGUID(-1648920159); public static readonly PrefabGUID AB_BatVampire_NightDash_Dash_Cast = new PrefabGUID(1741985697); public static readonly PrefabGUID AB_BatVampire_NightDash_Dash_Phase = new PrefabGUID(-794295605); public static readonly PrefabGUID AB_BatVampire_NightDash_MaxDurationBuff = new PrefabGUID(-1830017075); public static readonly PrefabGUID AB_BatVampire_NightDash_TargetedBuff = new PrefabGUID(-1202372086); public static readonly PrefabGUID AB_BatVampire_NightDash_Travel = new PrefabGUID(-873017477); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_AbilityGroup = new PrefabGUID(1146467217); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_Cast = new PrefabGUID(-428216997); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_End = new PrefabGUID(1991819397); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_Phase = new PrefabGUID(-205551308); public static readonly PrefabGUID AB_BatVampire_SummonMinions_AbilityGroup = new PrefabGUID(-597709516); public static readonly PrefabGUID AB_BatVampire_SummonMinions_Cast = new PrefabGUID(-1081262130); public static readonly PrefabGUID AB_BatVampire_SummonMinions_End = new PrefabGUID(568585403); public static readonly PrefabGUID AB_BatVampire_SummonMinions_MinionTravel = new PrefabGUID(-243606225); public static readonly PrefabGUID AB_BatVampire_SummonMinions_MinionTravelEnd = new PrefabGUID(-1385157697); public static readonly PrefabGUID AB_BatVampire_SummonMinions_Phase = new PrefabGUID(-224955481); public static readonly PrefabGUID AB_BatVampire_Whirlwind_AbilityGroup = new PrefabGUID(-1698981316); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Cast = new PrefabGUID(-659266870); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Channel = new PrefabGUID(-376963499); public static readonly PrefabGUID AB_BatVampire_Whirlwind_End = new PrefabGUID(2092565960); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Hit = new PrefabGUID(689442495); public static readonly PrefabGUID AB_BatVampire_Whirlwind_HitBuff = new PrefabGUID(-301760618); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Projectile = new PrefabGUID(-2115186527); public static readonly PrefabGUID AB_Bear_AreaAttack_Cast = new PrefabGUID(1078899666); public static readonly PrefabGUID AB_Bear_AreaAttack_Group = new PrefabGUID(160063059); public static readonly PrefabGUID AB_Bear_AreaAttack_Hit = new PrefabGUID(-1857672586); public static readonly PrefabGUID AB_Bear_AreaAttack_Large_Cast = new PrefabGUID(-1357868245); public static readonly PrefabGUID AB_Bear_AreaAttack_Large_Group = new PrefabGUID(-1385141321); public static readonly PrefabGUID AB_Bear_AreaAttack_Large_Hit = new PrefabGUID(2085177302); public static readonly PrefabGUID AB_Bear_Corrupted_AreaAttack_Cast = new PrefabGUID(1435954159); public static readonly PrefabGUID AB_Bear_Corrupted_AreaAttack_Group = new PrefabGUID(-1756745786); public static readonly PrefabGUID AB_Bear_Corrupted_AreaAttack_Hit = new PrefabGUID(-1131367727); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_AbilityGroup = new PrefabGUID(369886705); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_Cast = new PrefabGUID(-26219035); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_Channel = new PrefabGUID(-1204533751); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_Throw = new PrefabGUID(628633211); public static readonly PrefabGUID AB_Bear_Cursed_Dash = new PrefabGUID(1691986235); public static readonly PrefabGUID AB_Bear_Cursed_Dash_Cast = new PrefabGUID(-1200048631); public static readonly PrefabGUID AB_Bear_Cursed_Dash_Group = new PrefabGUID(-730437928); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_AbilityGroup = new PrefabGUID(-1972594588); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_Cast = new PrefabGUID(-1332081065); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_Hit = new PrefabGUID(1684028547); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_LongThrow = new PrefabGUID(661385602); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_MediumThrow = new PrefabGUID(1431423545); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_ShortThrow = new PrefabGUID(-472333822); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_ThrowSpawnerBuff = new PrefabGUID(-283916213); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_VeryLongThrow = new PrefabGUID(-1671998261); public static readonly PrefabGUID AB_Bear_Dire_Dash = new PrefabGUID(1769653891); public static readonly PrefabGUID AB_Bear_Dire_Dash_AbilityGroup = new PrefabGUID(-1709055711); public static readonly PrefabGUID AB_Bear_Dire_Dash_Cast = new PrefabGUID(-279330870); public static readonly PrefabGUID AB_Bear_Dire_Knockdown_StunBuff = new PrefabGUID(-1133702782); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_AbilityGroup = new PrefabGUID(1814567660); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_AbilityGroup_Hasted = new PrefabGUID(-217583794); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_Cast = new PrefabGUID(1648109595); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_Cast_Hasted = new PrefabGUID(-46604831); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_CountBuff_01 = new PrefabGUID(637874708); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_CountBuff_02 = new PrefabGUID(-1010916840); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_Hit = new PrefabGUID(-969508928); public static readonly PrefabGUID AB_Bear_Dire_OnAggro_Emote_AbilityGroup = new PrefabGUID(-1155840114); public static readonly PrefabGUID AB_Bear_Dire_OnAggro_Emote_Cast = new PrefabGUID(-835404749); public static readonly PrefabGUID AB_Bear_Dire_PermaStone_Hard_Spawner = new PrefabGUID(1869400217); public static readonly PrefabGUID AB_Bear_Dire_PermaStone_Hard_Throw = new PrefabGUID(826184677); public static readonly PrefabGUID AB_Bear_Dire_Roar_AbilityGroup = new PrefabGUID(-1559349374); public static readonly PrefabGUID AB_Bear_Dire_Roar_Area = new PrefabGUID(1623254064); public static readonly PrefabGUID AB_Bear_Dire_Roar_Cast = new PrefabGUID(-714122181); public static readonly PrefabGUID AB_Bear_Dire_Roar_Haste = new PrefabGUID(1121555092); public static readonly PrefabGUID AB_Bear_Dire_TargetSwitch_AbilityGroup = new PrefabGUID(-1748125028); public static readonly PrefabGUID AB_Bear_Dire_TargetSwitch_AggroBuff = new PrefabGUID(772366153); public static readonly PrefabGUID AB_Bear_Dire_TargetSwitch_Cast = new PrefabGUID(-1786472471); public static readonly PrefabGUID AB_Bear_FallAsleep_Cast = new PrefabGUID(1221985602); public static readonly PrefabGUID AB_Bear_FallAsleep_Group = new PrefabGUID(-193432841); public static readonly PrefabGUID AB_Bear_FallAsleep_SleepingIdle_Buff = new PrefabGUID(-883762685); public static readonly PrefabGUID AB_Bear_MeleeAttack_Cast = new PrefabGUID(-27277817); public static readonly PrefabGUID AB_Bear_MeleeAttack_Group = new PrefabGUID(1745337333); public static readonly PrefabGUID AB_Bear_MeleeAttack_Hit = new PrefabGUID(-78823281); public static readonly PrefabGUID AB_Bear_MeleeAttack_Large_Cast = new PrefabGUID(1582839126); public static readonly PrefabGUID AB_Bear_MeleeAttack_Large_Group = new PrefabGUID(-1041059859); public static readonly PrefabGUID AB_Bear_MeleeAttack_Large_Hit = new PrefabGUID(-1355938576); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Cast = new PrefabGUID(582367638); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Fast_Cast = new PrefabGUID(881572895); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Fast_Group = new PrefabGUID(616732424); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Group = new PrefabGUID(-44955695); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Hit = new PrefabGUID(-1283390641); public static readonly PrefabGUID AB_Bear_Mutant_MeleeAttack_Cast = new PrefabGUID(899195461); public static readonly PrefabGUID AB_Bear_Mutant_MeleeAttack_Group = new PrefabGUID(-77977745); public static readonly PrefabGUID AB_Bear_Mutant_MeleeAttack_Hit = new PrefabGUID(557784151); public static readonly PrefabGUID AB_Bear_OnAggro_AbilityGroup = new PrefabGUID(-1241654227); public static readonly PrefabGUID AB_Bear_OnAggro_Cast = new PrefabGUID(64260220); public static readonly PrefabGUID AB_Bear_Shapeshift_AreaAttack_Cast = new PrefabGUID(1510777326); public static readonly PrefabGUID AB_Bear_Shapeshift_AreaAttack_Group = new PrefabGUID(-2138455533); public static readonly PrefabGUID AB_Bear_Shapeshift_AreaAttack_Hit = new PrefabGUID(-931027244); public static readonly PrefabGUID AB_Bear_SpiritAreaAttack_Cast = new PrefabGUID(-1364267866); public static readonly PrefabGUID AB_Bear_SpiritAreaAttack_Group = new PrefabGUID(-190598145); public static readonly PrefabGUID AB_Bear_SpiritAreaAttack_Hit = new PrefabGUID(1585340389); public static readonly PrefabGUID AB_Bear_WakeUp_Cast = new PrefabGUID(443716463); public static readonly PrefabGUID AB_Bear_WakeUp_Group = new PrefabGUID(-388636006); public static readonly PrefabGUID AB_BellRingerMale_OnAggro_AbilityGroup_01 = new PrefabGUID(1276793139); public static readonly PrefabGUID AB_BellRingerMale_OnAggro_Cast_01 = new PrefabGUID(1179982386); public static readonly PrefabGUID AB_Blackfang_Alchemist_Drink_AbilityGroup = new PrefabGUID(-1641231517); public static readonly PrefabGUID AB_Blackfang_Alchemist_Drink_Cast = new PrefabGUID(-1166630536); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_AbilityGroup = new PrefabGUID(-1573201851); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_Cast = new PrefabGUID(-1630606068); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_Dash = new PrefabGUID(587002960); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_MovementBuff = new PrefabGUID(-772506607); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_AbilityGroup = new PrefabGUID(516384057); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Cast01 = new PrefabGUID(498995886); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Cast02 = new PrefabGUID(-422405387); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_ContinousArea = new PrefabGUID(-765325334); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_ContinousArea_Small = new PrefabGUID(1794991801); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_HitBuff = new PrefabGUID(-106509608); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Throw = new PrefabGUID(-1470568471); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Throw2 = new PrefabGUID(853770047); public static readonly PrefabGUID AB_Blackfang_Ambush_Buff = new PrefabGUID(1692138750); public static readonly PrefabGUID AB_Blackfang_Ambush_RevealBuff = new PrefabGUID(-170529237); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_AbilityGroup = new PrefabGUID(1798105602); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Cast = new PrefabGUID(1939813747); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Channel = new PrefabGUID(-899295252); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Dash = new PrefabGUID(-734202137); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_FlightBuff = new PrefabGUID(1637315709); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_GrabbedBuff = new PrefabGUID(957938484); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_GrabingBuff = new PrefabGUID(1803412155); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_LandBuff = new PrefabGUID(107060256); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_PinBuff = new PrefabGUID(434680966); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Projectile = new PrefabGUID(892837941); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Recover = new PrefabGUID(58711313); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_RecoverMiss = new PrefabGUID(-1762149671); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopChop_AbilityGroup = new PrefabGUID(74226303); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopChop_Cast01 = new PrefabGUID(710361545); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopChop_Hit = new PrefabGUID(1389755604); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_AbilityGroup = new PrefabGUID(-1796211602); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_AggroBuff = new PrefabGUID(803492554); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_Cast01 = new PrefabGUID(330806151); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_Channel = new PrefabGUID(456613973); public static readonly PrefabGUID AB_Blackfang_carverBoss_ChopLeap_MissRecover = new PrefabGUID(-353789914); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_StabTargetBuff = new PrefabGUID(1629292845); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_Travel = new PrefabGUID(-385326595); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_TravelEnd = new PrefabGUID(1543986369); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_AbilityGroup = new PrefabGUID(964878669); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_AggroBuff = new PrefabGUID(926596166); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_Buff = new PrefabGUID(242858653); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_Cast = new PrefabGUID(2062119815); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_Trigger = new PrefabGUID(-1796297364); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area = new PrefabGUID(1792743267); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Dash = new PrefabGUID(-1101163949); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Dash_NoSound = new PrefabGUID(-909375245); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Large = new PrefabGUID(-606663366); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Melee = new PrefabGUID(-303466414); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Projectile = new PrefabGUID(423900563); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Buff = new PrefabGUID(1472320596); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_AbilityGroup = new PrefabGUID(1147924409); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_AggroBuff = new PrefabGUID(-1047968169); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_BlockBuff = new PrefabGUID(1642687067); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_Cast01 = new PrefabGUID(-1113063271); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_Projectile = new PrefabGUID(-1943006622); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_Travel = new PrefabGUID(1445522819); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_TravelEnd = new PrefabGUID(-404224222); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_AbilityGroup = new PrefabGUID(2102431676); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_AggroBuff = new PrefabGUID(1379727984); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_BlockBuff = new PrefabGUID(1539287677); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Cast01 = new PrefabGUID(728880455); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Cast02 = new PrefabGUID(1240343186); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Hit = new PrefabGUID(2065525237); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Hit02 = new PrefabGUID(1370037725); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Projectile = new PrefabGUID(-619652431); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_ProjectileLauncher = new PrefabGUID(911035600); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SingleThrow_AbilityGroup = new PrefabGUID(-68142483); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SingleThrow_Cast = new PrefabGUID(2029434860); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SingleThrow_Throw = new PrefabGUID(-1037563967); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_AbilityGroup = new PrefabGUID(-833255541); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Cast = new PrefabGUID(-1906026424); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Channel = new PrefabGUID(-864074498); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_FollowupThrow = new PrefabGUID(651636982); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_InitialThrow = new PrefabGUID(-1719525983); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_AbilityGroup = new PrefabGUID(684024768); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_Cast = new PrefabGUID(-1774430544); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_Throw = new PrefabGUID(221418359); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_Trigger = new PrefabGUID(1237856852); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_SplashThrow = new PrefabGUID(-1158517504); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_AbilityGroup = new PrefabGUID(-1592003626); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_Cast = new PrefabGUID(-806722104); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_StandBack_Buff = new PrefabGUID(861028343); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_Summon = new PrefabGUID(-2104854704); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonGuards_AbiliyGroup = new PrefabGUID(-521003587); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonGuards_Cast = new PrefabGUID(543579520); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonGuards_SummonGuards_Summon = new PrefabGUID(-1152250194); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_AbilityGroup = new PrefabGUID(1290253258); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_Cast = new PrefabGUID(-72487923); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_MultiThrow = new PrefabGUID(-1612336591); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_SingleThrow = new PrefabGUID(-241647784); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_Trigger = new PrefabGUID(1465983347); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_AbilityGroup = new PrefabGUID(-1808411682); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_BlockBuff = new PrefabGUID(-2084302194); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_Cast01 = new PrefabGUID(-1013326587); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_HasLeaptBuff = new PrefabGUID(1743736757); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_PreviousTargetBuff = new PrefabGUID(-2070186195); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_Projectile = new PrefabGUID(-961318961); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_Travel = new PrefabGUID(-158689543); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_TravelEnd = new PrefabGUID(-195822017); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_AbilityGroup = new PrefabGUID(-1193077056); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Cast = new PrefabGUID(245223722); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Intense_AbilityGroup = new PrefabGUID(1705726981); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Intense_Cast = new PrefabGUID(-822796547); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Intense_Projectile = new PrefabGUID(1206576023); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Projectile = new PrefabGUID(112277332); public static readonly PrefabGUID AB_Blackfang_CarverBoss_Whirlwind_Buff = new PrefabGUID(-1463517253); public static readonly PrefabGUID AB_Blackfang_CarverBoss_Whirlwind_PostChannelBuff = new PrefabGUID(1973436542); public static readonly PrefabGUID AB_Blackfang_CarverBoss_Whirlwind_Projectile = new PrefabGUID(-1474131978); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_AbilityGroup = new PrefabGUID(-1457510412); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_Cast01 = new PrefabGUID(-1923679156); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_Cast02 = new PrefabGUID(-1949887359); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_Hit = new PrefabGUID(-528838806); public static readonly PrefabGUID AB_Blackfang_CorruptedCrow_CorruptionSpill_Area = new PrefabGUID(2065347452); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitClose_AbilityGroup = new PrefabGUID(-1629729690); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitClose_Buff = new PrefabGUID(1864118786); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitClose_Cast = new PrefabGUID(-1746784831); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitFar_AbilityGroup = new PrefabGUID(-865776841); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitFar_Buff = new PrefabGUID(-841258144); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitFar_Cast = new PrefabGUID(-1102275102); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_AbilityGroup = new PrefabGUID(-1167502816); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Cast = new PrefabGUID(-1923988887); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Cast02 = new PrefabGUID(-571282625); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Cast03 = new PrefabGUID(1414411227); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Projectile = new PrefabGUID(685037685); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Projectile02 = new PrefabGUID(-1743854638); public static readonly PrefabGUID AB_Blackfang_General_WeaponCoatingCharged = new PrefabGUID(1815945310); public static readonly PrefabGUID AB_Blackfang_General_WeaponCoatingReady = new PrefabGUID(532646688); public static readonly PrefabGUID AB_Blackfang_General_WeaponCoatingRecharge = new PrefabGUID(981131442); public static readonly PrefabGUID AB_Blackfang_Livith_AggroPlayers_AbilityGroup = new PrefabGUID(-941466362); public static readonly PrefabGUID AB_Blackfang_Livith_AggroPlayers_AggroBuff = new PrefabGUID(1976120182); public static readonly PrefabGUID AB_Blackfang_Livith_AggroPlayers_Cast = new PrefabGUID(-1336073441); public static readonly PrefabGUID AB_Blackfang_Livith_CirclingStance_AbilityGroup = new PrefabGUID(987540308); public static readonly PrefabGUID AB_Blackfang_Livith_CirclingStance_Cast = new PrefabGUID(982754605); public static readonly PrefabGUID AB_Blackfang_Livith_CirclingStance_CircleBuff = new PrefabGUID(-778792811); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_AbilityGroup = new PrefabGUID(-1337706250); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_Cast = new PrefabGUID(1143560250); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FakeTarget = new PrefabGUID(-1676800249); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile01 = new PrefabGUID(1779809540); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile02 = new PrefabGUID(-976430586); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile03 = new PrefabGUID(1979385190); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile04 = new PrefabGUID(794522069); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanTrigger = new PrefabGUID(-963662266); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FearGoToPosBuff = new PrefabGUID(984009223); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FearTargetPosThrow = new PrefabGUID(-1230254155); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FearTrigger = new PrefabGUID(-640727499); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_HideBuff = new PrefabGUID(-1511449744); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_IllusionKilledBuff = new PrefabGUID(-548966732); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_IllusionVisualiserBuff = new PrefabGUID(338004206); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_MasterTrigger = new PrefabGUID(2038175415); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_MinionTrigger = new PrefabGUID(-1318821795); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_Phase = new PrefabGUID(61752401); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_PostShieldDestroyBuff = new PrefabGUID(-1293543428); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_ScreenBuff = new PrefabGUID(-1828369565); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_ShieldBuff = new PrefabGUID(-1960475034); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_ShieldDestroyedPhase = new PrefabGUID(1297667389); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TargetedBuff01 = new PrefabGUID(-1194802586); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TargetedBuff02 = new PrefabGUID(181939917); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TargetedBuff03 = new PrefabGUID(-1530584845); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TriggerManager = new PrefabGUID(-354118264); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_AbilityGroup = new PrefabGUID(-315621824); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_AggroBuff = new PrefabGUID(-248859657); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_Cast01 = new PrefabGUID(-1889498551); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_Cast02 = new PrefabGUID(-1057568866); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_ForceLookBuff = new PrefabGUID(-297390358); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_Projectile = new PrefabGUID(-1297908446); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_AbilityGroup = new PrefabGUID(1318543111); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_CastAndDash = new PrefabGUID(1607213183); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_CircleBuff = new PrefabGUID(-1438729998); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_ImmaterialBuff = new PrefabGUID(841798001); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_AbilityGroup = new PrefabGUID(139802405); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Cast01 = new PrefabGUID(-1282189200); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Cast02 = new PrefabGUID(1853670600); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Cast03 = new PrefabGUID(1577286406); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Hit01 = new PrefabGUID(267995118); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Hit03 = new PrefabGUID(801768090); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_RotationBuff = new PrefabGUID(-1037056595); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_AbilityGroup = new PrefabGUID(-140727030); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_Buff = new PrefabGUID(-1387196851); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_Cast = new PrefabGUID(72289721); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_CircleBuff = new PrefabGUID(-683082530); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_AbilityGroup = new PrefabGUID(-385314771); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_Cast = new PrefabGUID(-1468323661); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_DropBuff = new PrefabGUID(1756436822); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_Hit = new PrefabGUID(-1384219466); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_LandStunBuff = new PrefabGUID(1732804032); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_LaunchBuff = new PrefabGUID(-1721636531); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_AbilityGroup = new PrefabGUID(168833229); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_AggroBuff = new PrefabGUID(-629777717); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_Buff = new PrefabGUID(2104665805); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_Cast = new PrefabGUID(-1293624718); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_LifetimeBuff = new PrefabGUID(-1653761848); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_Phase = new PrefabGUID(1860384370); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_AbilityGroup = new PrefabGUID(-407341422); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Buff = new PrefabGUID(-1187321033); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Cast01 = new PrefabGUID(-992416432); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_End = new PrefabGUID(210337041); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Phase01 = new PrefabGUID(-1954426858); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Phase02 = new PrefabGUID(-1111564854); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_AbilityGroup = new PrefabGUID(1261373899); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_AggroBuff = new PrefabGUID(-1221989239); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_Cast = new PrefabGUID(1424845963); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_Phase = new PrefabGUID(759627901); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Trigger = new PrefabGUID(1539319213); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_AbilityGroup = new PrefabGUID(1584749067); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Cast = new PrefabGUID(-516285679); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_CastingTrackerBuff = new PrefabGUID(1907899256); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Channel_Buff = new PrefabGUID(2075087526); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_ClearCheck_AbilityGroup = new PrefabGUID(-1518495336); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_ClearCheck_CanCastBuff = new PrefabGUID(1927043186); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_ClearCheck_Cast = new PrefabGUID(276618087); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Throw = new PrefabGUID(-554619371); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Trigger = new PrefabGUID(1941829996); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_AbilityGroup = new PrefabGUID(1920281924); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_AggroBuff = new PrefabGUID(505048937); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_Buff = new PrefabGUID(-361911593); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_Cast = new PrefabGUID(1839796503); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_CircleBuff = new PrefabGUID(993273548); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_TeleportBuff = new PrefabGUID(520997728); public static readonly PrefabGUID AB_Blackfang_Livith_StealthAttack_AbilityGroup = new PrefabGUID(-1372642162); public static readonly PrefabGUID AB_Blackfang_Livith_StealthAttack_Cast = new PrefabGUID(-832479758); public static readonly PrefabGUID AB_Blackfang_Livith_StealthAttack_Hit = new PrefabGUID(-1615565110); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_AbilityGroup = new PrefabGUID(1115417829); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Cast01 = new PrefabGUID(-1532980842); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Cast02 = new PrefabGUID(2122043310); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Hit01 = new PrefabGUID(-1845474794); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Hit02 = new PrefabGUID(903282285); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Overhead_Cast = new PrefabGUID(633853154); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_AbilityGroup = new PrefabGUID(1298623256); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Cast = new PrefabGUID(-813136125); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Channel = new PrefabGUID(629317715); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_ContinousArea = new PrefabGUID(937999600); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Far_AbilityGroup = new PrefabGUID(325438116); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_HitBuff = new PrefabGUID(257901187); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_SpawnDelay = new PrefabGUID(-2066653512); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Throw01 = new PrefabGUID(1214604939); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Throw02 = new PrefabGUID(1011791275); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Trigger = new PrefabGUID(-925450187); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_AbilityGroup = new PrefabGUID(846291757); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Cast = new PrefabGUID(2124769465); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_FollowupHitBuff = new PrefabGUID(-1430472663); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_HomingProjectile = new PrefabGUID(1419730100); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_HomingTarget = new PrefabGUID(-149925775); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_InitialHit = new PrefabGUID(-1812098607); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_FollowupHitBuff = new PrefabGUID(961740099); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_HomingProjectile = new PrefabGUID(-996021019); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_HomingTarget = new PrefabGUID(35684891); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_InitialHit = new PrefabGUID(1727302918); public static readonly PrefabGUID AB_Blackfang_Morgana_DeathEffectsBuff = new PrefabGUID(1539099925); public static readonly PrefabGUID AB_Blackfang_Morgana_DisableCollisionBuff = new PrefabGUID(582104639); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamDamageBuff01 = new PrefabGUID(552045786); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamDamageBuff02 = new PrefabGUID(-724535911); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamInitBuff01 = new PrefabGUID(987175530); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamInitBuff02 = new PrefabGUID(-993656149); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_CenterSpinner01 = new PrefabGUID(1137468146); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_CenterSpinner02 = new PrefabGUID(-1741464220); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_AbilityGroup = new PrefabGUID(-63677606); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_Cast = new PrefabGUID(805360002); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_FollowupHitBuff = new PrefabGUID(-718813882); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_InitialHit = new PrefabGUID(-1286355674); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_Projectile = new PrefabGUID(2100366639); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_AbilityGroup = new PrefabGUID(-1736482208); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_Cast = new PrefabGUID(-1844243668); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_FollowupHitBuff = new PrefabGUID(-1980410717); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_InitialHit = new PrefabGUID(1021234102); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_Projectile = new PrefabGUID(-1184116318); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Straight_Projectile = new PrefabGUID(-594193232); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_CenterSpinner01 = new PrefabGUID(930752844); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_CenterSpinner02 = new PrefabGUID(-158142011); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_HitBuff = new PrefabGUID(-638863409); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffLeft01 = new PrefabGUID(1253365853); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffLeft02 = new PrefabGUID(-1210840119); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffLeft03 = new PrefabGUID(1895430817); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffRight01 = new PrefabGUID(170061582); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffRight02 = new PrefabGUID(-2013744813); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffRight03 = new PrefabGUID(-959715680); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff01 = new PrefabGUID(-1606188422); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff02 = new PrefabGUID(341312225); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff03 = new PrefabGUID(1442248600); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff04 = new PrefabGUID(822188221); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff05 = new PrefabGUID(-1324731077); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff06 = new PrefabGUID(729991045); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_Setup_AbilityGroup = new PrefabGUID(734658196); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_Setup_Cast = new PrefabGUID(229127513); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_AbilityGroup = new PrefabGUID(-668068170); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_Cast = new PrefabGUID(-1243460454); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_DownedStun = new PrefabGUID(-1746192504); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_ThrowHit = new PrefabGUID(764467131); public static readonly PrefabGUID AB_Blackfang_Morgana_IdleBuff = new PrefabGUID(515276391); public static readonly PrefabGUID AB_Blackfang_Morgana_KillWorshippersAoe = new PrefabGUID(377127592); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_Base = new PrefabGUID(267146481); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_CenterPool = new PrefabGUID(-1739908100); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_Default = new PrefabGUID(-75547790); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_Dive = new PrefabGUID(-1664779682); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_DiveToCenterPool = new PrefabGUID(-947834471); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_DiveToDefault = new PrefabGUID(2051243649); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_DiveToSmall = new PrefabGUID(-563834486); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Buff = new PrefabGUID(-818762715); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_CombatTag_AbilityGroup = new PrefabGUID(1684080967); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_CombatTag_Buff = new PrefabGUID(1192244413); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_CombatTag_Cast = new PrefabGUID(-36977253); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_MinionLifetimeBuff = new PrefabGUID(-805424796); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_AbilityGroup = new PrefabGUID(2134120100); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Cast01 = new PrefabGUID(-1987288586); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Cast02 = new PrefabGUID(-333943326); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Hit01 = new PrefabGUID(121004364); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Hit02 = new PrefabGUID(58588340); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Staggered = new PrefabGUID(-893458861); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_AbilityGroup = new PrefabGUID(1278045964); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_Cast = new PrefabGUID(491862922); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition01 = new PrefabGUID(708863087); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition02 = new PrefabGUID(169986938); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition03 = new PrefabGUID(-1359040628); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition04 = new PrefabGUID(-1763877514); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_Projectile = new PrefabGUID(-1148836039); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_SetupTrigger = new PrefabGUID(1092461475); public static readonly PrefabGUID AB_Blackfang_Morgana_OnAggroBuff = new PrefabGUID(-1724573818); public static readonly PrefabGUID AB_Blackfang_Morgana_RevealWorshippersTrigger = new PrefabGUID(-1624877009); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_AbilityGroup = new PrefabGUID(-616120746); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Cast = new PrefabGUID(537275128); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Humanoid_AbilityGroup = new PrefabGUID(345561766); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Humanoid_Cast = new PrefabGUID(705231806); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Projectile = new PrefabGUID(-736078018); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_ProjectileTrigger01 = new PrefabGUID(-106247465); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_ProjectileTrigger02 = new PrefabGUID(-968981875); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Throw = new PrefabGUID(581747098); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_ThrowTrigger = new PrefabGUID(-529560817); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_AbilityGroup = new PrefabGUID(2099754785); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_AggroBuff = new PrefabGUID(600294053); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_Cast01 = new PrefabGUID(459091878); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_Cast02 = new PrefabGUID(-809908296); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_ThrowHit = new PrefabGUID(2116092559); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_AbilityGroup = new PrefabGUID(-1241930020); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_Cast01 = new PrefabGUID(-811904132); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_Cast02 = new PrefabGUID(219174627); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_EndTrigger = new PrefabGUID(-895629603); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_StartTrigger = new PrefabGUID(-1430340649); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_AbilityGroup = new PrefabGUID(898624706); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_Cast = new PrefabGUID(2053458243); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_EffectBuff = new PrefabGUID(-1756303410); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_ThrowHit = new PrefabGUID(1353249536); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_AbilityGroup = new PrefabGUID(1173842428); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Cast = new PrefabGUID(-152322352); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Hit = new PrefabGUID(1939629884); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_AbilityGroup = new PrefabGUID(-1681336728); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_Cast = new PrefabGUID(1754994413); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_Hit = new PrefabGUID(-1685351564); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_MoveBehBuff = new PrefabGUID(-1216556711); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_AbilityGroup = new PrefabGUID(1185642044); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_AnimBuff = new PrefabGUID(-1095140374); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Cast = new PrefabGUID(412191768); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_AbilityGroup = new PrefabGUID(-135866689); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_Cast = new PrefabGUID(-1314000343); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectile_01 = new PrefabGUID(2088902993); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectile_02 = new PrefabGUID(1509695584); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectileRear_01 = new PrefabGUID(559148038); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectileRear_02 = new PrefabGUID(-583521978); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_ProjectileSpawner_01 = new PrefabGUID(-1837800027); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_ProjectileSpawner_02 = new PrefabGUID(186328883); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_SmallProjectile_01 = new PrefabGUID(2033548339); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_SmallProjectile_02 = new PrefabGUID(-416871642); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_HitBuff = new PrefabGUID(2089905588); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_MainProjectile_01 = new PrefabGUID(-16851640); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_MainProjectile_02 = new PrefabGUID(-1125606680); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_ProjectileSpawner_01 = new PrefabGUID(-2053014187); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_ProjectileSpawner_02 = new PrefabGUID(1871948906); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SmallProjectile_01 = new PrefabGUID(-370795778); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SmallProjectile_02 = new PrefabGUID(-1870465108); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SpawnDelayBuff = new PrefabGUID(-1059448417); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SpawnGreenlightBuff = new PrefabGUID(499389677); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_AbilityGroup = new PrefabGUID(1990869093); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Cast = new PrefabGUID(-875630608); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Channel = new PrefabGUID(-1220460029); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Throw01 = new PrefabGUID(1998201653); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Throw02 = new PrefabGUID(-810698669); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Throw03 = new PrefabGUID(1455189473); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_ThrowToPlayer = new PrefabGUID(497806743); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_TriggerToPlayer = new PrefabGUID(-1076370381); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_AbilityGroup = new PrefabGUID(1946293901); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Cast = new PrefabGUID(1909376866); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_AbilityGroup = new PrefabGUID(-95450612); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_Cast = new PrefabGUID(1980668316); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_TargetBuff = new PrefabGUID(898677408); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_Throw_02 = new PrefabGUID(221558427); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_TargetBuff = new PrefabGUID(1995740870); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_01 = new PrefabGUID(1223305415); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_02 = new PrefabGUID(-2016269821); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_03 = new PrefabGUID(1909014584); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_04 = new PrefabGUID(-1223885396); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_05 = new PrefabGUID(-96338213); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_06 = new PrefabGUID(-339469055); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_07 = new PrefabGUID(933412174); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_AbilityGroup = new PrefabGUID(1485893437); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Cast = new PrefabGUID(2015628217); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_ChannelBuff = new PrefabGUID(-2122362769); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_DummyBuff = new PrefabGUID(2017731479); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_AbilityGroup = new PrefabGUID(1326530647); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_Cast = new PrefabGUID(89633088); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_ChannelBuff = new PrefabGUID(-1196616673); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FakeProj01 = new PrefabGUID(-303381870); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FakeProj02 = new PrefabGUID(1586663586); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FakeProjTilePlacementMatch = new PrefabGUID(534490374); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FanTrigger01 = new PrefabGUID(-403933920); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FanTrigger02 = new PrefabGUID(-723198303); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_GoToPosBuff = new PrefabGUID(1737878645); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_MoveBehBuff = new PrefabGUID(-1439973921); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_MovementPredictionBuff = new PrefabGUID(-418045958); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_ShouldFindPosBuff = new PrefabGUID(2055599493); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_MovementPredictionBuff = new PrefabGUID(-1134886700); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_PostChannelBuff = new PrefabGUID(1016472610); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Projectile01 = new PrefabGUID(-870775456); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Projectile02 = new PrefabGUID(1268090318); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_ProjectileHitSlow = new PrefabGUID(-2049305989); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Trigger = new PrefabGUID(80162438); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_AbilityGroup = new PrefabGUID(1680946425); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Buff = new PrefabGUID(1875425595); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Cast = new PrefabGUID(419868766); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_DespawnBuff = new PrefabGUID(-1159869992); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_DespawnDelayBuff = new PrefabGUID(-1949076270); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_SpawnBuff = new PrefabGUID(2136903946); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_SpawnPosOccupiedBuff = new PrefabGUID(1751995860); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Summon = new PrefabGUID(-1419491999); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_TargetFishSpotBuff = new PrefabGUID(2009594389); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Throw = new PrefabGUID(455945434); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_AbilityGroup = new PrefabGUID(-195933675); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_Cast = new PrefabGUID(-320080385); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_MinionSpawn = new PrefabGUID(-898953218); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_SharedHealthBuff = new PrefabGUID(-1417257872); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_01_TravelToCenter = new PrefabGUID(1896010089); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_02_HoverBuildup = new PrefabGUID(520738398); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_03_Submerge = new PrefabGUID(242050219); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_04_Emerge = new PrefabGUID(-1714790857); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_AbilityGroup = new PrefabGUID(-690426342); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_BubbleBuff = new PrefabGUID(631394021); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_Cast = new PrefabGUID(915415023); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_SnakePhaseBuff = new PrefabGUID(-1859425781); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_Trigger = new PrefabGUID(-981046477); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_AbilityGroup = new PrefabGUID(1242557903); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Cast = new PrefabGUID(-1678187501); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_PostTravelBuff = new PrefabGUID(-1387354075); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Throw01 = new PrefabGUID(-1880893170); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Throw02 = new PrefabGUID(1014466388); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Throw03 = new PrefabGUID(-23887081); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_ThrowToPlayer = new PrefabGUID(-227535602); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Travel = new PrefabGUID(376576928); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_TriggerToPlayer = new PrefabGUID(320348317); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_AbilityGroup = new PrefabGUID(-918633640); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_AttachBuff = new PrefabGUID(376179328); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Cast = new PrefabGUID(126215347); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_CenterPoolCooldownBuff = new PrefabGUID(-305886309); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_CenterPoolShieldBuff = new PrefabGUID(-1733669874); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_CenterPoolTrackerBuff = new PrefabGUID(-1898979936); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Emerge_AbilityGroup = new PrefabGUID(1673956324); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Emerge_Cast = new PrefabGUID(737213827); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Emerge_Trigger = new PrefabGUID(1849380415); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Hidden_AbilityGroup = new PrefabGUID(1059128); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Hidden_Cast = new PrefabGUID(2049319069); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_ImmaterialBuff = new PrefabGUID(-99719403); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_LastPoolBuff = new PrefabGUID(901738182); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_OccupiedBuff = new PrefabGUID(1947116545); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_OuterPoolTrackerBuff = new PrefabGUID(2132400508); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_AbilityGroup = new PrefabGUID(-1980019894); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_Cast = new PrefabGUID(478929064); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_CastTrackerBuff = new PrefabGUID(-1495038629); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_FearTrigger = new PrefabGUID(1996723050); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_Thrower = new PrefabGUID(-730747480); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_ThrowToPlayer = new PrefabGUID(2053275461); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_TriggerToPlayer = new PrefabGUID(1912709201); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Tail_AbilityGroup = new PrefabGUID(690549364); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Tail_Cast = new PrefabGUID(-2000239337); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_TailEmerge_AbilityGroup = new PrefabGUID(438919203); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_TailEmerge_Cast = new PrefabGUID(148165843); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Trigger = new PrefabGUID(-1307922425); public static readonly PrefabGUID AB_Blackfang_Morgana_TriggerSecondPhase_DEBUG = new PrefabGUID(809604772); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_AbilityGroup = new PrefabGUID(-2140645618); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_AttachBuff = new PrefabGUID(-1464702772); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_Buff = new PrefabGUID(-210174333); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_Cast = new PrefabGUID(683761386); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_Trigger = new PrefabGUID(1946628258); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_AbilityGroup = new PrefabGUID(-1859321594); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Cast01 = new PrefabGUID(-1682123341); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Cast02 = new PrefabGUID(546011461); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Cast03 = new PrefabGUID(-16293641); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_DownedStun = new PrefabGUID(-1992016390); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Single_AbilityGroup = new PrefabGUID(29969582); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Single_Cast01 = new PrefabGUID(-1779263890); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Single_ThrowHit = new PrefabGUID(-1542843694); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_ThrowHit = new PrefabGUID(-311138981); public static readonly PrefabGUID AB_Blackfang_MorganasTail_TailSlam_AbilityGroup = new PrefabGUID(62301155); public static readonly PrefabGUID AB_Blackfang_MorganasTail_TailSlam_Cast = new PrefabGUID(725885534); public static readonly PrefabGUID AB_Blackfang_MorganasTail_TailSlam_Hit = new PrefabGUID(733131428); public static readonly PrefabGUID AB_Blackfang_Peon_Melee_AbilityGroup = new PrefabGUID(2107551739); public static readonly PrefabGUID AB_Blackfang_Peon_Melee_Cast = new PrefabGUID(-608795005); public static readonly PrefabGUID AB_Blackfang_Peon_Melee_Hit = new PrefabGUID(1593243784); public static readonly PrefabGUID AB_Blackfang_Peon_Mining_MeleeAttack_AbilityGroup = new PrefabGUID(-459395643); public static readonly PrefabGUID AB_Blackfang_Peon_Mining_MeleeAttack_Cast01 = new PrefabGUID(-1061845446); public static readonly PrefabGUID AB_Blackfang_Peon_Mining_MeleeAttack_Hit01 = new PrefabGUID(545351337); public static readonly PrefabGUID AB_Blackfang_Peon_WoodChopping_MeleeAttack_AbilityGroup = new PrefabGUID(651647554); public static readonly PrefabGUID AB_Blackfang_Peon_WoodChopping_MeleeAttack_Cast01 = new PrefabGUID(-376684558); public static readonly PrefabGUID AB_Blackfang_Peon_WoodChopping_MeleeAttack_Hit01 = new PrefabGUID(728796049); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_CarryBarrel_AbilityGroup = new PrefabGUID(112453727); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_CarryBarrel_Buff = new PrefabGUID(1714696616); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_CarryBarrel_Cast = new PrefabGUID(-938773373); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_Melee_AbilityGroup = new PrefabGUID(596395337); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_Melee_Cast = new PrefabGUID(-1744264720); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_Melee_Hit = new PrefabGUID(-632441504); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_AbilityGroup = new PrefabGUID(-1869018808); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_Cast = new PrefabGUID(1112120717); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_Throw = new PrefabGUID(-36892102); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_Trigger = new PrefabGUID(-390653002); public static readonly PrefabGUID AB_Blackfang_PeonLogCarryer_Melee_AbilityGroup = new PrefabGUID(936609695); public static readonly PrefabGUID AB_Blackfang_PeonLogCarryer_Melee_Cast = new PrefabGUID(-499832574); public static readonly PrefabGUID AB_Blackfang_PeonLogCarryer_Melee_Hit = new PrefabGUID(-65809171); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_AbilityGroup = new PrefabGUID(-123334608); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Cast = new PrefabGUID(1395413257); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_CounterShield = new PrefabGUID(-797550365); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_HitShieldBuff = new PrefabGUID(1792098639); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_AbilityGroup = new PrefabGUID(-637041016); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_Cast = new PrefabGUID(-1408308711); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_Hit = new PrefabGUID(1238576754); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_Travel = new PrefabGUID(-1749921093); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_AbilityGroup = new PrefabGUID(170206690); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_Cast = new PrefabGUID(1970107705); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_Hit = new PrefabGUID(-275026019); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_Knockdown = new PrefabGUID(-919942886); public static readonly PrefabGUID AB_Blackfang_Sentinel_DrinkPotion_AbilityGroup = new PrefabGUID(-838311342); public static readonly PrefabGUID AB_Blackfang_Sentinel_DrinkPotion_Cast = new PrefabGUID(489936308); public static readonly PrefabGUID AB_Blackfang_Sentinel_DrinkPotion_Trigger = new PrefabGUID(1406378740); public static readonly PrefabGUID AB_Blackfang_Sentinel_HeavySwing_AbilityGroup = new PrefabGUID(-100357751); public static readonly PrefabGUID AB_Blackfang_Sentinel_HeavySwing_Cast = new PrefabGUID(-959137339); public static readonly PrefabGUID AB_Blackfang_Sentinel_HeavySwing_Hit = new PrefabGUID(1724880522); public static readonly PrefabGUID AB_Blackfang_Sentinel_NormalSwing_AbilityGroup = new PrefabGUID(-2067963108); public static readonly PrefabGUID AB_Blackfang_Sentinel_NormalSwing_Cast01 = new PrefabGUID(814774769); public static readonly PrefabGUID AB_Blackfang_Sentinel_NormalSwing_Hit = new PrefabGUID(634106161); public static readonly PrefabGUID AB_Blackfang_Sentinel_Ram_AbilityGroup = new PrefabGUID(-1138991224); public static readonly PrefabGUID AB_Blackfang_Sentinel_Ram_Cast = new PrefabGUID(1621355397); public static readonly PrefabGUID AB_Blackfang_Sentinel_Ram_Dash = new PrefabGUID(2133143672); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_AbilityGroup = new PrefabGUID(481790231); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Cast = new PrefabGUID(-535619588); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Hit = new PrefabGUID(484664521); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Projectile = new PrefabGUID(-2052182507); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Spinner = new PrefabGUID(1186910615); public static readonly PrefabGUID AB_Blackfang_Shared_DrinkCorruption_Buff = new PrefabGUID(-1664518297); public static readonly PrefabGUID AB_Blackfang_Shared_DrinkCorruption_Buff_Long = new PrefabGUID(1639519700); public static readonly PrefabGUID AB_Blackfang_Striker_ChargeAttack_AbilityGroup = new PrefabGUID(1213228171); public static readonly PrefabGUID AB_Blackfang_Striker_ChargeAttack_Cast = new PrefabGUID(1229245390); public static readonly PrefabGUID AB_Blackfang_Striker_ChargeAttack_Phase = new PrefabGUID(-1786601272); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_AbilityGroup = new PrefabGUID(1125833271); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_AllyBuff = new PrefabGUID(1398380888); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_Cast = new PrefabGUID(-1248447384); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_SelfBuff = new PrefabGUID(2040321461); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_AbilityGroup = new PrefabGUID(-2096054164); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_Buff = new PrefabGUID(659713715); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_Cast = new PrefabGUID(-789920422); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_Hit = new PrefabGUID(-1358214253); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_SuccessfulBlockBuff = new PrefabGUID(1517666230); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_AbilityGroup = new PrefabGUID(1105771640); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_Cast01 = new PrefabGUID(995538769); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_Hit01 = new PrefabGUID(655082091); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_HitBuff = new PrefabGUID(493369900); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_PostStun = new PrefabGUID(1016698824); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_AbilityGroup = new PrefabGUID(1126476370); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Cast01 = new PrefabGUID(-1984797362); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Cast02 = new PrefabGUID(-1065405327); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Hit01 = new PrefabGUID(1296895227); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Hit02 = new PrefabGUID(-459564484); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_AbilityGroup = new PrefabGUID(-1329409686); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_Cast = new PrefabGUID(512154391); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_Explosion = new PrefabGUID(1635931004); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_Explosion_Frost = new PrefabGUID(426371423); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_HitBuff = new PrefabGUID(-2069141812); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_LaunchBuff = new PrefabGUID(-226456685); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_PrepBuff = new PrefabGUID(1832202530); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile1 = new PrefabGUID(712606005); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile1_1 = new PrefabGUID(-151353528); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile1_1_Frost = new PrefabGUID(-1055644410); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile2 = new PrefabGUID(241812099); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile2_2 = new PrefabGUID(-169561289); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile2_2_Frost = new PrefabGUID(-1483588498); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile3 = new PrefabGUID(-790980400); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile3_3 = new PrefabGUID(-2109994027); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile3_3_Frost = new PrefabGUID(1286464424); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile4 = new PrefabGUID(1922806246); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile4_4 = new PrefabGUID(2116685056); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile4_4_Frost = new PrefabGUID(1035404539); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_ChaseTargetBuff_AbilityGroup = new PrefabGUID(-1015932492); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_ChaseTargetBuff_Cast = new PrefabGUID(682468428); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_ChaseTargetBuff_RageBuff = new PrefabGUID(-365858678); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_AbilityGroup = new PrefabGUID(68363809); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Cast01 = new PrefabGUID(413338757); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Cast02 = new PrefabGUID(615149404); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Hit01 = new PrefabGUID(1636025691); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Hit02 = new PrefabGUID(-568636508); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_AbilityGroup = new PrefabGUID(-9078612); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_AreaThrow01 = new PrefabGUID(-937142678); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_AreaThrow02 = new PrefabGUID(-1258745462); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Cast01 = new PrefabGUID(-1634052293); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Cast02 = new PrefabGUID(1505658358); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_InitDamage01 = new PrefabGUID(163632413); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_InitDamage02 = new PrefabGUID(991508961); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Projectile01 = new PrefabGUID(-1459136440); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Projectile02 = new PrefabGUID(783824917); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_AbilityGroup = new PrefabGUID(140047325); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_Cast = new PrefabGUID(-638277613); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_DownedStun = new PrefabGUID(1803245720); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_Phase = new PrefabGUID(2094589499); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_AbilityGroup = new PrefabGUID(-98135680); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_Cast = new PrefabGUID(1821376907); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_Explosion = new PrefabGUID(2055711075); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_ExplosionSmall = new PrefabGUID(-152868008); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_HitBuff = new PrefabGUID(-1464081739); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_LaunchBuff = new PrefabGUID(-1091954393); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_PrepBuff = new PrefabGUID(-569558899); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile1 = new PrefabGUID(-1786507260); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile1_1 = new PrefabGUID(362106538); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile2 = new PrefabGUID(-1252965849); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile2_2 = new PrefabGUID(-351097769); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile3 = new PrefabGUID(382833138); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile3_3 = new PrefabGUID(-1345258840); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile4 = new PrefabGUID(-1866432316); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile4_4 = new PrefabGUID(667406789); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_AbilityGroup = new PrefabGUID(-845442935); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_Cast = new PrefabGUID(-1362686076); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_Phase = new PrefabGUID(-571008192); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_PhaseEnd = new PrefabGUID(1865525324); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_AbilityGroup = new PrefabGUID(1633132226); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Cast01 = new PrefabGUID(1561161309); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Cast02 = new PrefabGUID(-1818672431); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Hit01 = new PrefabGUID(374506390); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Hit02 = new PrefabGUID(1281476222); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Smack_AbilityGroup = new PrefabGUID(1590188261); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Smack_Cast = new PrefabGUID(-1198351713); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Smack_Hit = new PrefabGUID(740265291); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_AbilityGroup = new PrefabGUID(-405003450); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_Cast = new PrefabGUID(369665448); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_End = new PrefabGUID(-1009241008); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_FrostNova = new PrefabGUID(-1644940656); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_Phase = new PrefabGUID(-152517311); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSwap_AbilityGroup = new PrefabGUID(221530600); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSwap_Buff = new PrefabGUID(968352313); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSwap_Cast = new PrefabGUID(-1544021670); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_AbilityGroup = new PrefabGUID(-1574580061); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_Cast = new PrefabGUID(-1385306793); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_TriggerBuff = new PrefabGUID(-505876832); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_WalkToPosBuff = new PrefabGUID(131220609); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_AbilityGroup = new PrefabGUID(-1375787055); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_Buff = new PrefabGUID(-627360700); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_Cast = new PrefabGUID(1557639506); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_Throw = new PrefabGUID(1668955473); public static readonly PrefabGUID AB_Blackfang_Venomblade_ApplyWeaponCoating_AbilityGroup = new PrefabGUID(71067886); public static readonly PrefabGUID AB_Blackfang_Venomblade_ApplyWeaponCoating_Cast = new PrefabGUID(433723993); public static readonly PrefabGUID AB_Blackfang_Venomblade_ApplyWeaponCoating_ChargedBuff = new PrefabGUID(1960751195); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_AbilityGroup = new PrefabGUID(1797731340); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_Cast = new PrefabGUID(-2039114285); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_Travel = new PrefabGUID(-521887144); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_TravelEnd = new PrefabGUID(127543888); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_AbilityGroup = new PrefabGUID(323806214); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_Cast01 = new PrefabGUID(-238520748); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_Cast02 = new PrefabGUID(-57204780); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_Hit = new PrefabGUID(-995663917); public static readonly PrefabGUID AB_Blackfang_Venomblade_Sprint_AbilityGroup = new PrefabGUID(1944086996); public static readonly PrefabGUID AB_Blackfang_Venomblade_Sprint_Buff = new PrefabGUID(-378260610); public static readonly PrefabGUID AB_Blackfang_Venomblade_Sprint_Cast = new PrefabGUID(-1306211385); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_AbilityGroup = new PrefabGUID(940071564); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_Cast01 = new PrefabGUID(1686276280); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_Cast02 = new PrefabGUID(748718503); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_CoatingRemovalBuff = new PrefabGUID(-1258648411); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_Hit01 = new PrefabGUID(-1151037369); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_AbilityGroup = new PrefabGUID(381862924); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_Cast = new PrefabGUID(25905050); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_SpawnerProjectile01 = new PrefabGUID(-1320276284); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_Throw = new PrefabGUID(2097520555); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinThrow_AbilityGroup = new PrefabGUID(-317345251); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinThrow_Cast = new PrefabGUID(1990270092); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinThrow_Projectile = new PrefabGUID(2107952727); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_AbilityGroup = new PrefabGUID(1142040823); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_Cast = new PrefabGUID(1919046105); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_DashBuff = new PrefabGUID(-1455991071); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_PostDashBuff = new PrefabGUID(-1805841970); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_Projectile = new PrefabGUID(1334247937); public static readonly PrefabGUID AB_Blackfang_WoodCarver_CarveTree_AbilityGroup = new PrefabGUID(628133433); public static readonly PrefabGUID AB_Blackfang_WoodCarver_CarveTree_Buff = new PrefabGUID(-823156105); public static readonly PrefabGUID AB_Blackfang_WoodCarver_CarveTree_Cast01 = new PrefabGUID(-633434463); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Drink_AbilityGroup = new PrefabGUID(-1472848281); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Drink_Cast = new PrefabGUID(-2026271555); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_AbilityGroup = new PrefabGUID(-1698228064); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_Cast = new PrefabGUID(-581863994); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_Channel_Buff = new PrefabGUID(1523431332); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_Hit = new PrefabGUID(-752935754); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_AbilityGroup = new PrefabGUID(1074626555); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_Cast01 = new PrefabGUID(-799632104); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_Cast02 = new PrefabGUID(-1994797082); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_Hit = new PrefabGUID(-922638142); public static readonly PrefabGUID AB_Blackfang_WoodCarver_PrayingBuff = new PrefabGUID(-51816406); public static readonly PrefabGUID AB_Blood_BloodFountain_AbilityGroup = new PrefabGUID(2067760264); public static readonly PrefabGUID AB_Blood_BloodFountain_Cast = new PrefabGUID(2057555049); public static readonly PrefabGUID AB_Blood_BloodFountain_Ground_Impact = new PrefabGUID(-1830781170); public static readonly PrefabGUID AB_Blood_BloodFountain_Ground_Init = new PrefabGUID(479309105); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_AbilityGroup = new PrefabGUID(-1401133170); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Buff = new PrefabGUID(-777165991); public static readonly PrefabGUID AB_Blood_BloodFountain_SpellMod_Recast_Cast = new PrefabGUID(-1412027900); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Ground_Impact = new PrefabGUID(1168425465); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Ground_Init = new PrefabGUID(452423495); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Throw = new PrefabGUID(-198029743); public static readonly PrefabGUID AB_Blood_BloodFountain_Throw = new PrefabGUID(1472352650); public static readonly PrefabGUID AB_Blood_BloodRage_AbilityGroup = new PrefabGUID(651613264); public static readonly PrefabGUID AB_Blood_BloodRage_Area = new PrefabGUID(1522616113); public static readonly PrefabGUID AB_Blood_BloodRage_Buff = new PrefabGUID(-491593410); public static readonly PrefabGUID AB_Blood_BloodRage_Buff_MagicSource = new PrefabGUID(2085766220); public static readonly PrefabGUID AB_Blood_BloodRage_Cast = new PrefabGUID(337805438); public static readonly PrefabGUID AB_Blood_BloodRage_SpellMod_Buff_Shield = new PrefabGUID(-1605515615); public static readonly PrefabGUID AB_Blood_BloodRite_AbilityGroup = new PrefabGUID(1191439206); public static readonly PrefabGUID AB_Blood_BloodRite_AreaTrigger = new PrefabGUID(-120445839); public static readonly PrefabGUID AB_Blood_BloodRite_Buff = new PrefabGUID(154981615); public static readonly PrefabGUID AB_Blood_BloodRite_Cast = new PrefabGUID(863435029); public static readonly PrefabGUID AB_Blood_BloodRite_HitBuff = new PrefabGUID(-2104807333); public static readonly PrefabGUID AB_Blood_BloodRite_Immaterial = new PrefabGUID(-259674366); public static readonly PrefabGUID AB_Blood_BloodRite_Projectile = new PrefabGUID(-68046098); public static readonly PrefabGUID AB_Blood_BloodRite_SpellMod_DamageOnAttackBuff = new PrefabGUID(623063875); public static readonly PrefabGUID AB_Blood_BloodRite_SpellMod_Stealth = new PrefabGUID(1462259032); public static readonly PrefabGUID AB_Blood_BloodStorm_AbilityGroup = new PrefabGUID(-1284243288); public static readonly PrefabGUID AB_Blood_BloodStorm_Cast = new PrefabGUID(928544163); public static readonly PrefabGUID AB_Blood_BloodStorm_ChannelBuff = new PrefabGUID(-429372830); public static readonly PrefabGUID AB_Blood_BloodStorm_PostBuffAttack = new PrefabGUID(-1381763893); public static readonly PrefabGUID AB_Blood_BloodStorm_Projectile = new PrefabGUID(-502932970); public static readonly PrefabGUID AB_Blood_CarrionSwarm_AbilityGroup = new PrefabGUID(-1380116221); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Left_01 = new PrefabGUID(-728088234); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Left_02 = new PrefabGUID(189108909); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Right_01 = new PrefabGUID(-691013912); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Right_02 = new PrefabGUID(159297406); public static readonly PrefabGUID AB_Blood_CarrionSwarm_Cast_01 = new PrefabGUID(-775157186); public static readonly PrefabGUID AB_Blood_CarrionSwarm_HitBuff = new PrefabGUID(389507623); public static readonly PrefabGUID AB_Blood_CarrionSwarm_MainProjectile_Left_01 = new PrefabGUID(-593275986); public static readonly PrefabGUID AB_Blood_CarrionSwarm_MainProjectile_Right_01 = new PrefabGUID(-1925490558); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Left_01 = new PrefabGUID(890139957); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Left_02 = new PrefabGUID(531197463); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Right_01 = new PrefabGUID(-1852510225); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Right_02 = new PrefabGUID(66466203); public static readonly PrefabGUID AB_Blood_CarrionSwarm_SpellMod_Area = new PrefabGUID(33522022); public static readonly PrefabGUID AB_Blood_CarrionSwarm_SpellMod_Stun_BuildUp = new PrefabGUID(-875052102); public static readonly PrefabGUID AB_Blood_CarrionSwarm_VampiricCurse_Buff = new PrefabGUID(744487535); public static readonly PrefabGUID AB_Blood_CrimsonBeam_AbilityGroup = new PrefabGUID(375131842); public static readonly PrefabGUID AB_Blood_CrimsonBeam_Cast = new PrefabGUID(795788195); public static readonly PrefabGUID AB_Blood_CrimsonBeam_Channel = new PrefabGUID(372033291); public static readonly PrefabGUID AB_Blood_HeartStrike_AbilityGroup = new PrefabGUID(-1432604486); public static readonly PrefabGUID AB_Blood_HeartStrike_Cast = new PrefabGUID(-987297406); public static readonly PrefabGUID AB_Blood_HeartStrike_Debuff = new PrefabGUID(-1855386239); public static readonly PrefabGUID AB_Blood_HeartStrike_Phase = new PrefabGUID(-2007539911); public static readonly PrefabGUID AB_Blood_SanguineCoil_AbilityGroup = new PrefabGUID(189403977); public static readonly PrefabGUID AB_Blood_SanguineCoil_Cast01 = new PrefabGUID(-443292115); public static readonly PrefabGUID AB_Blood_SanguineCoil_Cast02 = new PrefabGUID(1200039838); public static readonly PrefabGUID AB_Blood_SanguineCoil_Projectile = new PrefabGUID(-1020618296); public static readonly PrefabGUID AB_Blood_SanguineCoil_SpellMod_Projectile_AllowOwner = new PrefabGUID(32169065); public static readonly PrefabGUID AB_Blood_Shadowbolt_AbilityGroup = new PrefabGUID(-880131926); public static readonly PrefabGUID AB_Blood_Shadowbolt_Cast = new PrefabGUID(-1432574436); public static readonly PrefabGUID AB_Blood_Shadowbolt_Projectile = new PrefabGUID(1998252380); public static readonly PrefabGUID AB_Blood_Shadowbolt_SpellMod_Area = new PrefabGUID(-1633540142); public static readonly PrefabGUID AB_Blood_Shadowbolt_SpellMod_ForkHitBuff = new PrefabGUID(-1452263288); public static readonly PrefabGUID AB_Blood_Shadowbolt_SpellMod_ForkProjectile = new PrefabGUID(-1941104009); public static readonly PrefabGUID AB_Blood_Shadowbolt_VampiricCurse_Buff = new PrefabGUID(-1812972166); public static readonly PrefabGUID AB_Blood_VampiricCurse_AbilityGroup = new PrefabGUID(-326374250); public static readonly PrefabGUID AB_Blood_VampiricCurse_Buff = new PrefabGUID(733899991); public static readonly PrefabGUID AB_Blood_VampiricCurse_Buff_Lesser = new PrefabGUID(178387762); public static readonly PrefabGUID AB_Blood_VampiricCurse_Cast = new PrefabGUID(-254998690); public static readonly PrefabGUID AB_Blood_VampiricCurse_Projectile = new PrefabGUID(270228277); public static readonly PrefabGUID AB_Blood_VampiricCurse_SlashersLegendary_Buff = new PrefabGUID(910061115); public static readonly PrefabGUID AB_Blood_VampiricCurse_SpellMod_Area = new PrefabGUID(1026577933); public static readonly PrefabGUID AB_BloodAltar_TrackVbloodUnit_Projectile = new PrefabGUID(746504391); public static readonly PrefabGUID AB_BloodAltar_TrackVbloodUnit_Trigger = new PrefabGUID(-1024503212); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier1 = new PrefabGUID(-1596803256); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier1_Secondary = new PrefabGUID(-1616974014); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier2 = new PrefabGUID(1828387635); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier2_Secondary = new PrefabGUID(301933309); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier3 = new PrefabGUID(-1861657718); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier3_Secondary = new PrefabGUID(-1973741977); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier4 = new PrefabGUID(-584203677); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier4_Secondary = new PrefabGUID(-231530699); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Angel_Dash_AbilityGroup = new PrefabGUID(-1869894099); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Angel_Dash_Cast = new PrefabGUID(-1740243185); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Angel_Dash_Phase = new PrefabGUID(31625836); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Harpy_Dash_AbilityGroup = new PrefabGUID(-2064327511); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Harpy_Dash_Cast = new PrefabGUID(232166500); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Harpy_Dash_Phase = new PrefabGUID(-1055553242); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier1 = new PrefabGUID(-302908776); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier1_Secondary = new PrefabGUID(-601523002); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier2 = new PrefabGUID(-771138642); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier2_Secondary = new PrefabGUID(1971282100); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier3 = new PrefabGUID(-1493903943); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier3_Secondary = new PrefabGUID(-779149453); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier4 = new PrefabGUID(1491794137); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier4_Secondary = new PrefabGUID(-2010324894); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier1 = new PrefabGUID(894725875); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier1_Secondary = new PrefabGUID(753768915); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier2 = new PrefabGUID(475045773); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier2_Secondary = new PrefabGUID(-655171684); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier3 = new PrefabGUID(-1055766373); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier3_Secondary = new PrefabGUID(-1153664129); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier4 = new PrefabGUID(1643157297); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier4_Secondary = new PrefabGUID(2133844623); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier1 = new PrefabGUID(-488475343); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier2 = new PrefabGUID(2145997375); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier3 = new PrefabGUID(1805033464); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier4 = new PrefabGUID(-2079057224); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier5 = new PrefabGUID(-1923843097); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier1 = new PrefabGUID(1558171501); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier1_Secondary = new PrefabGUID(-1821445788); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier2 = new PrefabGUID(997154800); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier2_Secondary = new PrefabGUID(2019530525); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier3 = new PrefabGUID(1159173627); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier3_Secondary = new PrefabGUID(-1936812740); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier4 = new PrefabGUID(1103099361); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier4_Secondary = new PrefabGUID(-883139285); public static readonly PrefabGUID AB_BloodBuff_General_Tier5 = new PrefabGUID(947312310); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier1 = new PrefabGUID(-1266262267); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier1_Secondary = new PrefabGUID(691903481); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier2 = new PrefabGUID(-1413561088); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier2_Secondary = new PrefabGUID(-415162965); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier3 = new PrefabGUID(946705138); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier3_Secondary = new PrefabGUID(638320853); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier4 = new PrefabGUID(-491525099); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier4_Secondary = new PrefabGUID(114976920); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier1 = new PrefabGUID(1201299233); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier1_Secondary = new PrefabGUID(-1446451371); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier2 = new PrefabGUID(-154702686); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier2_Secondary = new PrefabGUID(-522947794); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier3 = new PrefabGUID(-536284884); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier3_Secondary = new PrefabGUID(818894731); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier4 = new PrefabGUID(210193036); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier4_Secondary = new PrefabGUID(350468862); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier1 = new PrefabGUID(1934870645); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier1_Secondary = new PrefabGUID(-549903178); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier2 = new PrefabGUID(-993492354); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier2_Secondary = new PrefabGUID(-1039133297); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier3 = new PrefabGUID(-901503997); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier3_Secondary = new PrefabGUID(-1808968950); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier4 = new PrefabGUID(-1859298707); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier4_Secondary = new PrefabGUID(32713242); public static readonly PrefabGUID AB_BloodBuff_VBlood_0 = new PrefabGUID(20081801); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier1 = new PrefabGUID(-804597757); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier1_Secondary = new PrefabGUID(-697089408); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier2 = new PrefabGUID(-1510965956); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier2_Secondary = new PrefabGUID(-929443607); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier3 = new PrefabGUID(-1869022798); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier3_Secondary = new PrefabGUID(1165282791); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier4 = new PrefabGUID(-397097531); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier4_Secondary = new PrefabGUID(93927140); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier1 = new PrefabGUID(-773025435); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier1_Secondary = new PrefabGUID(779293180); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier2 = new PrefabGUID(-2068307944); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier2_Secondary = new PrefabGUID(-913668258); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier3 = new PrefabGUID(1359282533); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier3_Secondary = new PrefabGUID(-1699746135); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier4 = new PrefabGUID(1791009885); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier4_Secondary = new PrefabGUID(-1136889813); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Brute = new PrefabGUID(-1795235430); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Creature = new PrefabGUID(-114712733); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Draculin = new PrefabGUID(1782455329); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Mutant = new PrefabGUID(1617091915); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Rogue = new PrefabGUID(270041664); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Scholar = new PrefabGUID(-1214837295); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Warrior = new PrefabGUID(-146846356); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Worker = new PrefabGUID(1812921109); public static readonly PrefabGUID AB_Cardinal_Channel_AbilityGroup = new PrefabGUID(-1015165123); public static readonly PrefabGUID AB_Cardinal_Channel_Buff = new PrefabGUID(-1140936561); public static readonly PrefabGUID AB_Cardinal_Channel_Cast = new PrefabGUID(-1178781670); public static readonly PrefabGUID AB_Cardinal_Channel_Throw = new PrefabGUID(-1890273561); public static readonly PrefabGUID AB_Cardinal_LightNova_AbilityGroup = new PrefabGUID(114484622); public static readonly PrefabGUID AB_Cardinal_LightNova_Area = new PrefabGUID(1826627256); public static readonly PrefabGUID AB_Cardinal_LightNova_Cast = new PrefabGUID(904475242); public static readonly PrefabGUID AB_Cardinal_LightNova_Projectile = new PrefabGUID(174803230); public static readonly PrefabGUID AB_Cardinal_LightSwitch_AbilityGroup = new PrefabGUID(-1301873763); public static readonly PrefabGUID AB_Cardinal_LightSwitch_Cast = new PrefabGUID(1123510843); public static readonly PrefabGUID AB_Cardinal_LightSwitch_End = new PrefabGUID(1745327274); public static readonly PrefabGUID AB_Cardinal_LightSwitch_Phase = new PrefabGUID(-377571930); public static readonly PrefabGUID AB_Cardinal_LightSwitch_Phase_Ally = new PrefabGUID(-950278780); public static readonly PrefabGUID AB_Cardinal_LightWave_AbilityGroup = new PrefabGUID(194868388); public static readonly PrefabGUID AB_Cardinal_LightWave_Cast = new PrefabGUID(931744634); public static readonly PrefabGUID AB_Cardinal_LightWave_Channel_Buff = new PrefabGUID(198617072); public static readonly PrefabGUID AB_Cardinal_LightWave_Projectile = new PrefabGUID(-844607712); public static readonly PrefabGUID AB_Cardinal_LightWave_Trigger = new PrefabGUID(-1695296116); public static readonly PrefabGUID AB_Cardinal_Projectile = new PrefabGUID(-2138362741); public static readonly PrefabGUID AB_Cardinal_SummonAide_AbilityGroup = new PrefabGUID(-1381729810); public static readonly PrefabGUID AB_Cardinal_SummonAide_Cast = new PrefabGUID(-461942541); public static readonly PrefabGUID AB_Cardinal_SummonAide_Summon = new PrefabGUID(501996848); public static readonly PrefabGUID AB_Cardinal_SummonOrb_AbilityGroup = new PrefabGUID(-16930230); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Beam_Buff = new PrefabGUID(-2014639169); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Cast = new PrefabGUID(-1186459989); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Minion_Buff = new PrefabGUID(-784079255); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Summon = new PrefabGUID(-1377783622); public static readonly PrefabGUID AB_Cardinal_Zap_AbilityGroup = new PrefabGUID(1172834223); public static readonly PrefabGUID AB_Cardinal_Zap_Buff = new PrefabGUID(-2122308920); public static readonly PrefabGUID AB_Cardinal_Zap_Cast = new PrefabGUID(-2093769435); public static readonly PrefabGUID AB_Cardinal_Zap_Disengage_Cardinal = new PrefabGUID(1348167152); public static readonly PrefabGUID AB_Cardinal_Zap_Engage_Aide = new PrefabGUID(-1078175137); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_AbilityGroup = new PrefabGUID(-1109386231); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Cast = new PrefabGUID(862854303); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Channel = new PrefabGUID(1647627459); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Hit = new PrefabGUID(-357089174); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Init_AbilityGroup = new PrefabGUID(2103931135); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Init_Cast = new PrefabGUID(-909226674); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Init_Trigger = new PrefabGUID(-690555778); public static readonly PrefabGUID AB_Castle_Immaterial_Buff = new PrefabGUID(-66088350); public static readonly PrefabGUID AB_Castle_Invulnerable_Buff = new PrefabGUID(1019910549); public static readonly PrefabGUID AB_CastleMan_AxeThrow_AbilityGroup = new PrefabGUID(1022054621); public static readonly PrefabGUID AB_CastleMan_AxeThrow_BleedBuff = new PrefabGUID(-1982638766); public static readonly PrefabGUID AB_CastleMan_AxeThrow_Cast = new PrefabGUID(1507956945); public static readonly PrefabGUID AB_CastleMan_AxeThrow_Throw = new PrefabGUID(-1660992845); public static readonly PrefabGUID AB_CastleMan_DaggerProjectile_AbilityGroup = new PrefabGUID(1302295192); public static readonly PrefabGUID AB_CastleMan_DaggerProjectile_Cast = new PrefabGUID(-236457498); public static readonly PrefabGUID AB_CastleMan_DaggerProjectile_Projectile = new PrefabGUID(-79847847); public static readonly PrefabGUID AB_CastleMan_FlameWhip_AbilityGroup = new PrefabGUID(-1736553762); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Cast01 = new PrefabGUID(1336637195); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Cast02 = new PrefabGUID(1893805174); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Cast03 = new PrefabGUID(2039160815); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_AbilityGroup = new PrefabGUID(-1272535312); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_Cast01 = new PrefabGUID(331725498); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_Cast02 = new PrefabGUID(2009851931); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_Cast03 = new PrefabGUID(710028572); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hit1 = new PrefabGUID(-1707553539); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hit2 = new PrefabGUID(1173181606); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hit3 = new PrefabGUID(481299078); public static readonly PrefabGUID AB_CastleMan_FlameWhip_OwnerBuff = new PrefabGUID(244912239); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Single_Hit1 = new PrefabGUID(326695514); public static readonly PrefabGUID AB_CastleMan_FlameWhip_SingleAttack_AbilityGroup = new PrefabGUID(-653938456); public static readonly PrefabGUID AB_CastleMan_FlameWhip_SingleAttack_Cast01 = new PrefabGUID(-509387580); public static readonly PrefabGUID AB_Castleman_FlameWhip_SmallFireArea = new PrefabGUID(1579919935); public static readonly PrefabGUID AB_CastleMan_Grab_AbilityGroup = new PrefabGUID(-460221305); public static readonly PrefabGUID AB_CastleMan_Grab_Cast = new PrefabGUID(1113325827); public static readonly PrefabGUID AB_CastleMan_Grab_FakeProjectile = new PrefabGUID(-747986341); public static readonly PrefabGUID AB_CastleMan_Grab_FakeTarget = new PrefabGUID(-1581500370); public static readonly PrefabGUID AB_CastleMan_Grab_FakeTargetHighPrio = new PrefabGUID(406250507); public static readonly PrefabGUID AB_CastleMan_Grab_HasGrabedBuff = new PrefabGUID(-1881495377); public static readonly PrefabGUID AB_CastleMan_Grab_Hit = new PrefabGUID(-1702748378); public static readonly PrefabGUID AB_CastleMan_Grab_OnHitTravel = new PrefabGUID(810941144); public static readonly PrefabGUID AB_CastleMan_Grab_PostHitBuff = new PrefabGUID(-309559319); public static readonly PrefabGUID AB_CastleMan_Grab_TargetGrabedBuff = new PrefabGUID(-1523339077); public static readonly PrefabGUID AB_CastleMan_HolyBeam_AbilityGroup = new PrefabGUID(906463896); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Cast = new PrefabGUID(1903916672); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Channel_01 = new PrefabGUID(-244880819); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Hard_AbilityGroup = new PrefabGUID(583436571); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Hard_Cast = new PrefabGUID(1278091953); public static readonly PrefabGUID AB_CastleMan_HolyBeam_HitBuff = new PrefabGUID(-23470596); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Knockback = new PrefabGUID(1181128541); public static readonly PrefabGUID AB_CastleMan_HolyBeam_PowerBuff_01 = new PrefabGUID(-1584595113); public static readonly PrefabGUID AB_CastleMan_HolyBeam_PowerBuff_Throw = new PrefabGUID(1370719411); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Projectile_01 = new PrefabGUID(-1398284350); public static readonly PrefabGUID AB_CastleMan_HolyBeam_SelfStun_01 = new PrefabGUID(-1256872153); public static readonly PrefabGUID AB_CastleMan_HolyBeam_SelfStun_Powerup_01 = new PrefabGUID(624789018); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_01 = new PrefabGUID(-919859961); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_02 = new PrefabGUID(1372764174); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_03 = new PrefabGUID(-1665259270); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_04 = new PrefabGUID(1000176020); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_01 = new PrefabGUID(-1338987233); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_02 = new PrefabGUID(-437637678); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_03 = new PrefabGUID(1169661070); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_04 = new PrefabGUID(-102887460); public static readonly PrefabGUID AB_CastleMan_HomingHolyFire_Area = new PrefabGUID(95731176); public static readonly PrefabGUID AB_CastleMan_LastingHolyFire_Area = new PrefabGUID(-380842947); public static readonly PrefabGUID AB_CastleMan_LastingHolyFire_Area_SpellTarget = new PrefabGUID(-1686291580); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_AbilityGroup = new PrefabGUID(-650079140); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_Cast = new PrefabGUID(-573710229); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_HolyArea = new PrefabGUID(-982103313); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_HolyAreaBuff = new PrefabGUID(-2032431194); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_Throw = new PrefabGUID(-1655557787); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_Throw_Cluster = new PrefabGUID(1747917437); public static readonly PrefabGUID AB_CastleMan_SpinningCross_AbilityGroup = new PrefabGUID(761680482); public static readonly PrefabGUID AB_CastleMan_SpinningCross_Cast = new PrefabGUID(-2068664088); public static readonly PrefabGUID AB_CastleMan_SpinningCross_Projectile = new PrefabGUID(-2134250559); public static readonly PrefabGUID AB_CastleMan_SpinningCross_Projectile_Hard = new PrefabGUID(1691049182); public static readonly PrefabGUID AB_CastleMan_SpinShield_AbilityGroup = new PrefabGUID(112329675); public static readonly PrefabGUID AB_CastleMan_SpinShield_Buff = new PrefabGUID(1639380448); public static readonly PrefabGUID AB_CastleMan_SpinShield_Cast = new PrefabGUID(-162789018); public static readonly PrefabGUID AB_CastleMan_SpinShield_Hit = new PrefabGUID(1877825611); public static readonly PrefabGUID AB_CastleMan_Tackle_AbilityGroup = new PrefabGUID(-296227812); public static readonly PrefabGUID AB_CastleMan_Tackle_Cast = new PrefabGUID(-970067949); public static readonly PrefabGUID AB_CastleMan_Tackle_Phase = new PrefabGUID(-953933936); public static readonly PrefabGUID AB_CastleMan_Throw_AbilityGroup = new PrefabGUID(1797118698); public static readonly PrefabGUID AB_CastleMan_Throw_Cast = new PrefabGUID(-1547385271); public static readonly PrefabGUID AB_CastleMan_Throw_LaunchBuff = new PrefabGUID(1269998543); public static readonly PrefabGUID AB_CastleMan_Throw_StunBuff = new PrefabGUID(-266552360); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_AbilityGroup = new PrefabGUID(874909393); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Cast01 = new PrefabGUID(1656910310); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Cast02 = new PrefabGUID(-330471947); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Cast03 = new PrefabGUID(1155578242); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Projectile01 = new PrefabGUID(634456772); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Projectile02 = new PrefabGUID(1675423156); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Projectile03 = new PrefabGUID(1062722893); public static readonly PrefabGUID AB_CastleMan_Whip_AbilityGroup = new PrefabGUID(-499397494); public static readonly PrefabGUID AB_CastleMan_Whip_Cast01 = new PrefabGUID(1740538342); public static readonly PrefabGUID AB_CastleMan_Whip_Cast02 = new PrefabGUID(694066590); public static readonly PrefabGUID AB_CastleMan_Whip_Cast03 = new PrefabGUID(125620038); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_AbilityGroup = new PrefabGUID(626219559); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_Cast01 = new PrefabGUID(741045580); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_Cast02 = new PrefabGUID(-668470859); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_Cast03 = new PrefabGUID(-1748547849); public static readonly PrefabGUID AB_CastleMan_Whip_Hit1 = new PrefabGUID(276535092); public static readonly PrefabGUID AB_CastleMan_Whip_Hit2 = new PrefabGUID(470262483); public static readonly PrefabGUID AB_CastleMan_Whip_HitBuff = new PrefabGUID(516861965); public static readonly PrefabGUID AB_Chaos_Aftershock_AreaThrow = new PrefabGUID(399410024); public static readonly PrefabGUID AB_Chaos_Aftershock_Cast = new PrefabGUID(-647349550); public static readonly PrefabGUID AB_Chaos_Aftershock_GreatSword_AreaThrow = new PrefabGUID(-361533440); public static readonly PrefabGUID AB_Chaos_Aftershock_GreatSword_Projectile = new PrefabGUID(-844371388); public static readonly PrefabGUID AB_Chaos_Aftershock_Group = new PrefabGUID(1575317901); public static readonly PrefabGUID AB_Chaos_Aftershock_Projectile = new PrefabGUID(-243208974); public static readonly PrefabGUID AB_Chaos_Aftershock_SpellMod_KnockbackArea = new PrefabGUID(-241052558); public static readonly PrefabGUID AB_Chaos_Aftershock_TempBuff = new PrefabGUID(-478243777); public static readonly PrefabGUID AB_Chaos_Barrier_AbilityGroup = new PrefabGUID(-1016145613); public static readonly PrefabGUID AB_Chaos_Barrier_Buff = new PrefabGUID(-352442632); public static readonly PrefabGUID AB_Chaos_Barrier_Cast = new PrefabGUID(980100276); public static readonly PrefabGUID AB_Chaos_Barrier_Charges = new PrefabGUID(-673905030); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_AbilityGroup = new PrefabGUID(2070140125); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_AreaImpact = new PrefabGUID(-1980428595); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_Cast = new PrefabGUID(-1869527555); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_Projectile = new PrefabGUID(1963614275); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_AbilityGroup = new PrefabGUID(1174831223); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Area = new PrefabGUID(265754735); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Cast = new PrefabGUID(133479300); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Channel = new PrefabGUID(-800216016); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Projectile = new PrefabGUID(-1903786704); public static readonly PrefabGUID AB_Chaos_MercilessCharge_AbilityGroup = new PrefabGUID(245173408); public static readonly PrefabGUID AB_Chaos_MercilessCharge_Cast = new PrefabGUID(-667967135); public static readonly PrefabGUID AB_Chaos_MercilessCharge_EndImpact = new PrefabGUID(1068025228); public static readonly PrefabGUID AB_Chaos_MercilessCharge_GrabbedBuff = new PrefabGUID(-301817425); public static readonly PrefabGUID AB_Chaos_MercilessCharge_GrabbingBuff = new PrefabGUID(960377305); public static readonly PrefabGUID AB_Chaos_MercilessCharge_Phase = new PrefabGUID(1326012900); public static readonly PrefabGUID AB_Chaos_MercilessCharge_StopPause = new PrefabGUID(-1801218516); public static readonly PrefabGUID AB_Chaos_PowerSurge_AbilityGroup = new PrefabGUID(1112116762); public static readonly PrefabGUID AB_Chaos_PowerSurge_Buff = new PrefabGUID(-429891372); public static readonly PrefabGUID AB_Chaos_PowerSurge_Buff_Lesser = new PrefabGUID(1704857987); public static readonly PrefabGUID AB_Chaos_PowerSurge_Buff_MagicSource = new PrefabGUID(763939566); public static readonly PrefabGUID AB_Chaos_PowerSurge_Cast = new PrefabGUID(1141366098); public static readonly PrefabGUID AB_Chaos_PowerSurge_SpellMod_Buff_Shield = new PrefabGUID(-1763296393); public static readonly PrefabGUID AB_Chaos_PowerSurge_SpellMod_Recast_AbilityGroup = new PrefabGUID(1576686583); public static readonly PrefabGUID AB_Chaos_PowerSurge_Spellmod_Recast_AreaImpact = new PrefabGUID(-191671502); public static readonly PrefabGUID AB_Chaos_PowerSurge_SpellMod_Recast_Buff = new PrefabGUID(-287562542); public static readonly PrefabGUID AB_Chaos_PowerSurge_Spellmod_Recast_Cast = new PrefabGUID(-2062460405); public static readonly PrefabGUID AB_Chaos_PowerSurge_Spellmod_Recast_Trigger = new PrefabGUID(-254603202); public static readonly PrefabGUID AB_Chaos_RainOfChaos_AbilityGroup = new PrefabGUID(2012523607); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Buff = new PrefabGUID(-1062097246); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Cast = new PrefabGUID(901495348); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_BonusMeteor = new PrefabGUID(-1649014147); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_BurnArea = new PrefabGUID(-689590392); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_BurnDebuff = new PrefabGUID(-1910609332); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_MegaMeteor = new PrefabGUID(321435434); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Throw = new PrefabGUID(-919146370); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Throw_Meteor = new PrefabGUID(1401753271); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Throw_Meteor_Center = new PrefabGUID(-1598926105); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Trigger = new PrefabGUID(2090409031); public static readonly PrefabGUID AB_Chaos_Void_AbilityGroup = new PrefabGUID(-358319417); public static readonly PrefabGUID AB_Chaos_Void_Cast = new PrefabGUID(-707328735); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_BurnArea = new PrefabGUID(-1482196543); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_BurnDebuff = new PrefabGUID(-1559958188); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_ClusterBomb = new PrefabGUID(1547537110); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_ClusterTrigger = new PrefabGUID(1227443635); public static readonly PrefabGUID AB_Chaos_Void_Throw = new PrefabGUID(-1734564881); public static readonly PrefabGUID AB_Chaos_Voidquake_AbilityGroup = new PrefabGUID(1383453728); public static readonly PrefabGUID AB_Chaos_Voidquake_Cast = new PrefabGUID(925745426); public static readonly PrefabGUID AB_Chaos_Voidquake_End = new PrefabGUID(1285575147); public static readonly PrefabGUID AB_Chaos_Voidquake_Phase = new PrefabGUID(-452698233); public static readonly PrefabGUID AB_Chaos_Volley_AbilityGroup = new PrefabGUID(1019568127); public static readonly PrefabGUID AB_Chaos_Volley_Cast = new PrefabGUID(1654851767); public static readonly PrefabGUID AB_Chaos_Volley_Channel = new PrefabGUID(385090887); public static readonly PrefabGUID AB_Chaos_Volley_FirstHit_Buff = new PrefabGUID(1447799523); public static readonly PrefabGUID AB_Chaos_Volley_Projectile_First = new PrefabGUID(-2086760208); public static readonly PrefabGUID AB_Chaos_Volley_Projectile_Second = new PrefabGUID(173993548); public static readonly PrefabGUID AB_Charm_AbilityGroup = new PrefabGUID(-107743040); public static readonly PrefabGUID AB_Charm_Active_Human_Buff = new PrefabGUID(1303169868); public static readonly PrefabGUID AB_Charm_CaptureBuff_Base = new PrefabGUID(1300556217); public static readonly PrefabGUID AB_Charm_CaptureBuff_Human = new PrefabGUID(-1683471273); public static readonly PrefabGUID AB_Charm_Cast = new PrefabGUID(-1696574816); public static readonly PrefabGUID AB_Charm_Channeling = new PrefabGUID(1002852223); public static readonly PrefabGUID AB_Charm_Channeling_Target_Debuff = new PrefabGUID(-1760277810); public static readonly PrefabGUID AB_Charm_Owner_Channeling_PostCast = new PrefabGUID(-1348576822); public static readonly PrefabGUID AB_Charm_Owner_HasCharmedTarget_Buff = new PrefabGUID(-2147040513); public static readonly PrefabGUID AB_Charm_Projectile = new PrefabGUID(1652376207); public static readonly PrefabGUID AB_Charm_ReleaseTarget_Human_AbilityGroup = new PrefabGUID(826190081); public static readonly PrefabGUID AB_Charm_ReleaseTarget_Human_Cast = new PrefabGUID(1476121942); public static readonly PrefabGUID AB_Charm_ReleaseTarget_Trigger = new PrefabGUID(-1692072908); public static readonly PrefabGUID AB_Charm_SendToPrison_AbilityGroup = new PrefabGUID(-1717210880); public static readonly PrefabGUID AB_Charm_SendToPrison_Cast = new PrefabGUID(-1987926603); public static readonly PrefabGUID AB_Charm_SendToPrison_Invulnerability = new PrefabGUID(-1988445418); public static readonly PrefabGUID AB_Charm_SendToPrison_Trigger = new PrefabGUID(1789285456); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Block_AbilityGroup = new PrefabGUID(116066962); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Block_Buff = new PrefabGUID(2059223980); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Block_Cast = new PrefabGUID(1786941235); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_AbilityGroup = new PrefabGUID(2108112601); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_Cast_01 = new PrefabGUID(-1215591582); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_Cast_02 = new PrefabGUID(-802558866); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_Hit = new PrefabGUID(1430748044); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Projectile = new PrefabGUID(1949732197); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Projectile_AbilityGroup = new PrefabGUID(-1378417368); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Projectile_Cast = new PrefabGUID(1568540580); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Block_AbilityGroup = new PrefabGUID(100549683); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Block_Buff = new PrefabGUID(-59870091); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Block_Cast = new PrefabGUID(1537903648); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_AbilityGroup = new PrefabGUID(-923957888); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_Cast = new PrefabGUID(-2036444563); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_ChannelBuff = new PrefabGUID(-844701160); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_HealingOverTime_Buff = new PrefabGUID(-1639791914); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_AbilityGroup = new PrefabGUID(1817985064); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_Cast = new PrefabGUID(-870388936); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_Dash = new PrefabGUID(1348203239); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_PostDashBuff = new PrefabGUID(392929978); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Projectile = new PrefabGUID(48461323); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Projectile_AbilityGroup = new PrefabGUID(-587604072); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Projectile_Cast = new PrefabGUID(1710491579); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_ShieldSlam_AbilityGroup = new PrefabGUID(-819795639); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_ShieldSlam_Cast = new PrefabGUID(-1615229506); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_ShieldSlam_Hit = new PrefabGUID(1226815161); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_AbilityGroup = new PrefabGUID(-1637210619); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_Cast = new PrefabGUID(-426254318); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_Channel = new PrefabGUID(1543175030); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_HitBuff = new PrefabGUID(1252218780); public static readonly PrefabGUID AB_ChurchOfLight_Miner_Alert_Buff = new PrefabGUID(458667960); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Cast01 = new PrefabGUID(-617735588); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Cast02 = new PrefabGUID(2054437187); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Group01 = new PrefabGUID(2013132333); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Hit01 = new PrefabGUID(-275242680); public static readonly PrefabGUID AB_ChurchOfLight_Miner_OnAggro_AbilityGroup = new PrefabGUID(499671166); public static readonly PrefabGUID AB_ChurchOfLight_Miner_OnAggro_Buff = new PrefabGUID(2034745297); public static readonly PrefabGUID AB_ChurchOfLight_Miner_OnAggro_Cast = new PrefabGUID(-1993125004); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Hard_SnowLob_AbilityGroup = new PrefabGUID(1541929232); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Hard_SnowLob_Cast = new PrefabGUID(-1268101183); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Hard_SnowLob_Throw = new PrefabGUID(-2056478180); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_AbilityGroup = new PrefabGUID(1792964134); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_AreaThrow = new PrefabGUID(-1890218503); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_Cast = new PrefabGUID(707899850); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_FreezeBuff = new PrefabGUID(548966542); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_FreezeBuffTrigger = new PrefabGUID(1688682323); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_Hard_IcicleThrow = new PrefabGUID(-458867587); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_Hard_IcicleTrigger = new PrefabGUID(-1945090025); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_IcicleSpawnThrow = new PrefabGUID(-639588401); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_IcicleThrow = new PrefabGUID(767809830); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_IcicleTrigger = new PrefabGUID(-1721885814); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_LaunchBuff = new PrefabGUID(2030766507); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_PostCast = new PrefabGUID(-1214567161); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_AbilityGroup = new PrefabGUID(896963123); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_Cast = new PrefabGUID(741418411); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_FrictionBuff = new PrefabGUID(1223608696); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IceArea = new PrefabGUID(-1747849514); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IceAreaThrow = new PrefabGUID(-114379501); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IcicleDrop_Throw1 = new PrefabGUID(-588181266); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IcicleDrop_Throw2 = new PrefabGUID(-450242532); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IcicleTrigger = new PrefabGUID(-2059503476); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_AbilityGroup = new PrefabGUID(1964067196); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Cast = new PrefabGUID(1616224499); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Hit = new PrefabGUID(-918751193); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_IcicleThrow = new PrefabGUID(-2078632331); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Projectile01 = new PrefabGUID(640106499); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Projectile02 = new PrefabGUID(-1125134197); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_AbilityGroup = new PrefabGUID(526997488); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_AggroBuff = new PrefabGUID(60850608); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Cast = new PrefabGUID(2002922051); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Dash = new PrefabGUID(883512545); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_DownedStun = new PrefabGUID(-608251310); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_HasteBuff = new PrefabGUID(-1916256107); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_LaunchBuff = new PrefabGUID(1798162675); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_PostDash = new PrefabGUID(-191913809); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Swing_AbilityGroup = new PrefabGUID(88026855); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Swing_Cast = new PrefabGUID(2002903984); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Swing_Hit = new PrefabGUID(1846291150); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_AbilityGroup = new PrefabGUID(-1973550282); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Cast = new PrefabGUID(-310802745); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_EndImpact = new PrefabGUID(-1305978383); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_FakeTarget = new PrefabGUID(-2059791223); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_GrabbedBuff = new PrefabGUID(1045272422); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_GrabbingBuff = new PrefabGUID(1049863088); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Phase = new PrefabGUID(-343967306); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_StopPause = new PrefabGUID(577992298); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_AbilityGroup = new PrefabGUID(493409764); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_Cast = new PrefabGUID(1782710052); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_LaunchBuff = new PrefabGUID(-1142017589); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_StunBuff = new PrefabGUID(466039625); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Reinforcement_AbilityGroup = new PrefabGUID(1823825002); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Reinforcement_Cast = new PrefabGUID(-1457114265); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Reinforcement_Summon = new PrefabGUID(1310226881); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_AbilityGroup = new PrefabGUID(-985136954); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Cast = new PrefabGUID(830730797); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Channel = new PrefabGUID(-1743979096); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hard_HitBuff = new PrefabGUID(1971533839); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hard_Projectile = new PrefabGUID(1784339505); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hard_SpinnerBuff = new PrefabGUID(-1987830486); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hit = new PrefabGUID(-1015785362); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_PostCast = new PrefabGUID(511192765); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_AbilityGroup = new PrefabGUID(613355091); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Cast01 = new PrefabGUID(1485005080); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Cast02 = new PrefabGUID(1537811769); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Hit01 = new PrefabGUID(-976784484); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Hit02 = new PrefabGUID(-944896771); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Projectile = new PrefabGUID(600760760); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_AbilityGroup = new PrefabGUID(-422683973); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_Cast = new PrefabGUID(1499698779); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_Travel = new PrefabGUID(-1758775507); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_TravelEnd = new PrefabGUID(-2052154037); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_CentreTravel_AbilityGroup = new PrefabGUID(1145861576); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_CentreTravel_Cast = new PrefabGUID(993452398); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_CentreTravel_Phase = new PrefabGUID(1170970544); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_ChargedSwing_AbilityGroup = new PrefabGUID(922419960); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_ChargedSwing_Cast = new PrefabGUID(1634116878); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_ChargedSwing_Hit = new PrefabGUID(246466673); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_AbilityGroup = new PrefabGUID(-1720407974); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_Cast = new PrefabGUID(-2133295894); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_Phase = new PrefabGUID(1378579418); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_TrailProjectile = new PrefabGUID(334620903); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_DivineRays_AbilityGroup = new PrefabGUID(51772774); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_DivineRays_BeamSpawnerBuff = new PrefabGUID(2007361446); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_DivineRays_Cast = new PrefabGUID(-719765896); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_AbilityGroup = new PrefabGUID(-947518364); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast01 = new PrefabGUID(-697413038); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast02 = new PrefabGUID(-2097945594); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast03 = new PrefabGUID(-89562779); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast04 = new PrefabGUID(397691284); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Hit01 = new PrefabGUID(1930437870); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Hit02 = new PrefabGUID(126214137); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Hit04 = new PrefabGUID(-1041912276); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_MainProjectile = new PrefabGUID(-207975116); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_AbilityGroup = new PrefabGUID(-1172099204); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_Cast = new PrefabGUID(-1793771282); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_Phase = new PrefabGUID(-1117458568); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_TrailProjectile = new PrefabGUID(1069164714); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HealAngel_AbilityGroup = new PrefabGUID(-552723816); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HealAngel_Cast = new PrefabGUID(1904468920); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HealAngel_HealBuff = new PrefabGUID(210470); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam = new PrefabGUID(-1618178798); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam_AbilityGroup = new PrefabGUID(998464144); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam_Cast = new PrefabGUID(-1414061814); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam_HitBuff = new PrefabGUID(-1257730808); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_BeamSpawnerBuff = new PrefabGUID(-500693743); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_BeamTrigger = new PrefabGUID(-104940321); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_HealBuff = new PrefabGUID(-621772718); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_InvulnerableBuff = new PrefabGUID(358972271); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_AbilityGroup = new PrefabGUID(834886466); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Cast = new PrefabGUID(-949919142); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_ChannelBuff = new PrefabGUID(-443754441); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_AbilityGroup = new PrefabGUID(699013677); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Cast = new PrefabGUID(-1298826028); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_ChannelBuff = new PrefabGUID(-1471487774); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Projectile01 = new PrefabGUID(-476659597); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Projectile02 = new PrefabGUID(-1874919568); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Spinner01 = new PrefabGUID(485865847); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Spinner02 = new PrefabGUID(-1847076350); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Projectile01 = new PrefabGUID(760919643); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Projectile02 = new PrefabGUID(-48649580); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Spinner01 = new PrefabGUID(297275019); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Spinner02 = new PrefabGUID(512131254); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_AbilityGroup = new PrefabGUID(-1852467646); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Cast = new PrefabGUID(24236018); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_ChannelBuff = new PrefabGUID(311723714); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Hard_Spinner01 = new PrefabGUID(1665262881); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Hard_Spinner02 = new PrefabGUID(-789871960); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Projectile = new PrefabGUID(370174465); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Spinner01 = new PrefabGUID(-785356046); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Spinner02 = new PrefabGUID(596149743); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HomePosSpawn = new PrefabGUID(506662132); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_AbilityGroup = new PrefabGUID(1673497547); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Cast01 = new PrefabGUID(1639685226); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Cast02 = new PrefabGUID(-297122786); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hard_HorizontalProjectile01 = new PrefabGUID(-452282789); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hard_HorizontalProjectile02 = new PrefabGUID(-1289009115); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hit01 = new PrefabGUID(348884445); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hit02 = new PrefabGUID(32333759); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_HitBuff = new PrefabGUID(893060518); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_MainProjectile = new PrefabGUID(390812503); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_ReturnProjectile01 = new PrefabGUID(-133618863); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_ReturnProjectile02 = new PrefabGUID(122683115); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_AbilityGroup = new PrefabGUID(1825130923); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_Area = new PrefabGUID(1996768730); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_Cast = new PrefabGUID(-1447111028); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_Trigger = new PrefabGUID(-1664243827); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonDivineAngel_DeathBuff = new PrefabGUID(-1934189109); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonDivineAngel_SpawnBuff = new PrefabGUID(390920678); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonFallenAngel_AggroBuff = new PrefabGUID(1643631401); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonFallenAngel_SpawnBuff = new PrefabGUID(55472502); public static readonly PrefabGUID AB_ChurchOfLight_Priest_HealBomb_AbilityGroup = new PrefabGUID(-1282606238); public static readonly PrefabGUID AB_ChurchOfLight_Priest_HealBomb_Buff = new PrefabGUID(-1133938228); public static readonly PrefabGUID AB_ChurchOfLight_Priest_HealBomb_Cast = new PrefabGUID(1487622444); public static readonly PrefabGUID AB_ChurchOfLight_Priest_Projectile = new PrefabGUID(1521005516); public static readonly PrefabGUID AB_ChurchOfLight_Priest_Projectile_AbilityGroup = new PrefabGUID(-292542362); public static readonly PrefabGUID AB_ChurchOfLight_Priest_Projectile_Cast = new PrefabGUID(-2023960376); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_AbilityGroup = new PrefabGUID(943885425); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_Cast = new PrefabGUID(1451711522); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_LifeTimeBuff = new PrefabGUID(246620725); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_Minion_Buff = new PrefabGUID(-466524518); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_Summon = new PrefabGUID(1272513330); public static readonly PrefabGUID AB_ChurchOfLight_Rifleman_SpreadShot_Cast_UNUSED = new PrefabGUID(-2110353406); public static readonly PrefabGUID AB_ChurchOfLight_Rifleman_SpreadShot_Group_UNUSED = new PrefabGUID(-1326377581); public static readonly PrefabGUID AB_ChurchOfLight_Rifleman_SpreadShot_UNUSED = new PrefabGUID(-1431227036); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_AbilityGroup = new PrefabGUID(-1684687653); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_Area = new PrefabGUID(1688066724); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_Cast = new PrefabGUID(683679778); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_HasAlly_AbilityGroup = new PrefabGUID(-1599671939); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_HasAlly_Buff = new PrefabGUID(-652924018); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_HasAlly_Cast = new PrefabGUID(-1082916719); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_RageBuff = new PrefabGUID(1578414219); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_KnockbackWhip_AbilityGroup = new PrefabGUID(-1879864480); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_KnockbackWhip_Area = new PrefabGUID(-1548192735); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_KnockbackWhip_Cast = new PrefabGUID(-2134276443); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_Roll_AbilityGroup = new PrefabGUID(-1255881274); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_Roll_CastAndRoll = new PrefabGUID(403910096); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_AbilityGroup = new PrefabGUID(-1276648449); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_Area = new PrefabGUID(1522821650); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_Cast = new PrefabGUID(-703377646); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_HitBuff = new PrefabGUID(-1905544641); public static readonly PrefabGUID AB_ChurchOfLight_SmiteOrb_Smite_AbilityGroup = new PrefabGUID(2005435470); public static readonly PrefabGUID AB_ChurchOfLight_SmiteOrb_Smite_Cast = new PrefabGUID(1248157588); public static readonly PrefabGUID AB_ChurchOfLight_SmiteOrb_Smite_Throw = new PrefabGUID(2133702245); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_AbilityGroup = new PrefabGUID(1587195740); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_Cast = new PrefabGUID(-293717845); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_Channel_Buff = new PrefabGUID(2113270604); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_DropDown_AoE = new PrefabGUID(1722490059); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_Throw02 = new PrefabGUID(1168788309); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_TriggerObject = new PrefabGUID(-1641644591); public static readonly PrefabGUID AB_ChurchOfLight_VillagerFemale_OnAggro_AbilityGroup_01 = new PrefabGUID(-119427343); public static readonly PrefabGUID AB_ChurchOfLight_VillagerFemale_OnAggro_Cast_01 = new PrefabGUID(-1073207311); public static readonly PrefabGUID AB_ChurchOfLight_VillagerMale_OnAggro_AbilityGroup_01 = new PrefabGUID(1055785998); public static readonly PrefabGUID AB_ChurchOfLight_VillagerMale_OnAggro_Cast_01 = new PrefabGUID(-785726393); public static readonly PrefabGUID AB_ConstrainingPole_Projectile_Hard_Buff = new PrefabGUID(-514310125); public static readonly PrefabGUID AB_ConstrainingPole_Projectile_Hard_HitBuff = new PrefabGUID(406589190); public static readonly PrefabGUID AB_Consumable_BarrelDisguise_AbilityGroup = new PrefabGUID(1250098443); public static readonly PrefabGUID AB_Consumable_BarrelDisguise_Buff = new PrefabGUID(-1495388131); public static readonly PrefabGUID AB_Consumable_BarrelDisguise_Cast = new PrefabGUID(-322814108); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyBottle_AbilityGroup = new PrefabGUID(102790706); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyBottle_Activate = new PrefabGUID(984453223); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyBottle_Cast = new PrefabGUID(1859095350); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyWaterskin_AbilityGroup = new PrefabGUID(-1047692800); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyWaterskin_Activate = new PrefabGUID(1930734244); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyWaterskin_Cast = new PrefabGUID(1545901732); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_AbilityGroup = new PrefabGUID(-245435862); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_Activate = new PrefabGUID(-932656733); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_Cast = new PrefabGUID(1368552679); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_Heal = new PrefabGUID(-251374520); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_AbilityGroup = new PrefabGUID(-1648249846); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_Activate = new PrefabGUID(-180761359); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_Cast = new PrefabGUID(-1028407485); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_Heal = new PrefabGUID(1955090947); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_AbilityGroup = new PrefabGUID(-1888981494); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_Activate = new PrefabGUID(88734054); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_Cast = new PrefabGUID(175786372); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_Heal = new PrefabGUID(113134257); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_AbilityGroup = new PrefabGUID(1959283631); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_Activate = new PrefabGUID(5776828); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_Cast = new PrefabGUID(616733471); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_Heal = new PrefabGUID(404145821); public static readonly PrefabGUID AB_Consumable_Eat_Rat_AbilityGroup = new PrefabGUID(2034689434); public static readonly PrefabGUID AB_Consumable_Eat_Rat_Activate = new PrefabGUID(1195320878); public static readonly PrefabGUID AB_Consumable_Eat_Rat_Cast = new PrefabGUID(1445535569); public static readonly PrefabGUID AB_Consumable_Eat_Rat_Heal = new PrefabGUID(-1203538885); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_AbilityGroup = new PrefabGUID(-1072457678); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_Activate = new PrefabGUID(1495017287); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_Buff = new PrefabGUID(-177895450); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_Cast = new PrefabGUID(476025843); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_AbilityGroup = new PrefabGUID(1639330095); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_Activate = new PrefabGUID(-483066689); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_Buff = new PrefabGUID(-706770454); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_Cast = new PrefabGUID(573639888); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_AbilityGroup = new PrefabGUID(2030125327); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_Activate = new PrefabGUID(877825423); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_Buff = new PrefabGUID(-1731982445); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_Cast = new PrefabGUID(290062581); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_AbilityGroup = new PrefabGUID(1875280201); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_Activate = new PrefabGUID(-1077520069); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_Buff = new PrefabGUID(-1796828440); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_Cast = new PrefabGUID(834299611); public static readonly PrefabGUID AB_Consumable_HealingPotion_Debuff = new PrefabGUID(346407733); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_AbilityGroup = new PrefabGUID(2142882097); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_Activate = new PrefabGUID(-1489109223); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_Cast = new PrefabGUID(-1588345532); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_Heal = new PrefabGUID(1083649443); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_AbilityGroup = new PrefabGUID(-618850823); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_Activate = new PrefabGUID(635603587); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_Cast = new PrefabGUID(1765706200); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_Heal = new PrefabGUID(648923369); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_AbilityGroup = new PrefabGUID(1898092173); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_Activate = new PrefabGUID(1371307540); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_Buff = new PrefabGUID(1234155086); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_Cast = new PrefabGUID(-2001272949); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_AbilityGroup = new PrefabGUID(-1861621769); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_Activate = new PrefabGUID(572282504); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_Buff = new PrefabGUID(2099221856); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_Cast = new PrefabGUID(-1902500211); public static readonly PrefabGUID AB_Consumable_IrradiantGruel_AbilityGroup = new PrefabGUID(-1156226621); public static readonly PrefabGUID AB_Consumable_IrradiantGruel_Activate = new PrefabGUID(-519547442); public static readonly PrefabGUID AB_Consumable_IrradiantGruel_Cast = new PrefabGUID(-1705971848); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_AbilityGroup = new PrefabGUID(-1506728203); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_Activate = new PrefabGUID(-164308939); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_Buff = new PrefabGUID(-1954355403); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_Cast = new PrefabGUID(573641304); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_AbilityGroup = new PrefabGUID(1195333673); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_Activate = new PrefabGUID(1316696914); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_Buff = new PrefabGUID(-1591883586); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_Cast = new PrefabGUID(21073476); public static readonly PrefabGUID AB_Consumable_PrisonBloodPotion_AbilityGroup = new PrefabGUID(974235336); public static readonly PrefabGUID AB_Consumable_PrisonBloodPotion_Activate = new PrefabGUID(1745215583); public static readonly PrefabGUID AB_Consumable_PrisonBloodPotion_Cast = new PrefabGUID(-159878578); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_AbilityGroup = new PrefabGUID(-895081056); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_Activate = new PrefabGUID(-679434043); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_Cast = new PrefabGUID(-375307780); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_Heal = new PrefabGUID(366350841); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_AbilityGroup = new PrefabGUID(1062857775); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_Activate = new PrefabGUID(-638558421); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_Buff = new PrefabGUID(-1461096907); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_Cast = new PrefabGUID(-994793300); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_AbilityGroup = new PrefabGUID(-805514691); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_Activate = new PrefabGUID(-468447626); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_Buff = new PrefabGUID(1984795569); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_Cast = new PrefabGUID(-392824840); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_AbilityGroup = new PrefabGUID(452822121); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_Activate = new PrefabGUID(1167807223); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_Buff = new PrefabGUID(-819103704); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_Cast = new PrefabGUID(660430815); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_AbilityGroup = new PrefabGUID(-2008977590); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_Activate = new PrefabGUID(-33411080); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_Buff = new PrefabGUID(-1591827622); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_Cast = new PrefabGUID(1873681604); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_AbilityGroup = new PrefabGUID(-603849198); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_Activate = new PrefabGUID(514644490); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_Buff = new PrefabGUID(112008974); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_Cast = new PrefabGUID(1187975687); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Bite_AbilityGroup = new PrefabGUID(-1801222341); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Bite_Activate = new PrefabGUID(1763295534); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Bite_Cast = new PrefabGUID(-67474168); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level01_AbilityGroup = new PrefabGUID(-304507736); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level01_Activate = new PrefabGUID(769624058); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level01_Cast = new PrefabGUID(-1084444535); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level02_AbilityGroup = new PrefabGUID(-2018732849); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level02_Activate = new PrefabGUID(-2016817915); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level02_Cast = new PrefabGUID(-738520437); public static readonly PrefabGUID AB_Consumable_Tech_Memory_AbilityGroup = new PrefabGUID(1484354243); public static readonly PrefabGUID AB_Consumable_Tech_Memory_Activate = new PrefabGUID(-204726490); public static readonly PrefabGUID AB_Consumable_Tech_Memory_Cast = new PrefabGUID(-1954763306); public static readonly PrefabGUID AB_Consumable_Tech_Recipe_AbilityGroup = new PrefabGUID(1575781217); public static readonly PrefabGUID AB_Consumable_Tech_Recipe_Activate = new PrefabGUID(-120713987); public static readonly PrefabGUID AB_Consumable_Tech_Recipe_Cast = new PrefabGUID(1313960443); public static readonly PrefabGUID AB_Consumable_ToxicSludgeCanister_AbilityGroup = new PrefabGUID(-2027014613); public static readonly PrefabGUID AB_Consumable_ToxicSludgeCanister_Activate = new PrefabGUID(2082559658); public static readonly PrefabGUID AB_Consumable_ToxicSludgeCanister_Cast = new PrefabGUID(-125605708); public static readonly PrefabGUID AB_Consumable_WaterCanteen_T01_AbilityGroup = new PrefabGUID(1743540461); public static readonly PrefabGUID AB_Consumable_WaterCanteen_T01_Activate = new PrefabGUID(-256327508); public static readonly PrefabGUID AB_Consumable_WaterCanteen_T01_Cast = new PrefabGUID(204798150); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_AbilityGroup = new PrefabGUID(1293091219); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_Activate = new PrefabGUID(-2075162541); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_Buff = new PrefabGUID(387154469); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_Cast = new PrefabGUID(-407881459); public static readonly PrefabGUID AB_Corrupted_Wolf_CorruptionCharged_AbilityGroup = new PrefabGUID(1369843173); public static readonly PrefabGUID AB_Corrupted_Wolf_CorruptionCharged_Buff = new PrefabGUID(630211818); public static readonly PrefabGUID AB_Corrupted_Wolf_CorruptionCharged_Cast = new PrefabGUID(730303038); public static readonly PrefabGUID AB_Corrupted_Wolf_SlaveringBite_AbilityGroup = new PrefabGUID(-1720952746); public static readonly PrefabGUID AB_Corrupted_Wolf_SlaveringBite_Cast = new PrefabGUID(227492828); public static readonly PrefabGUID AB_Corrupted_Wolf_SlaveringBite_Hit = new PrefabGUID(2118909752); public static readonly PrefabGUID AB_CorruptedCrow_Aggro_Buff = new PrefabGUID(-130394187); public static readonly PrefabGUID AB_CorruptedCrow_Aggro_Hit = new PrefabGUID(-1459988579); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_AbilityGroup = new PrefabGUID(-1095356108); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_AoeIndicator = new PrefabGUID(1586786621); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_Cast = new PrefabGUID(532487911); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_Travel = new PrefabGUID(-1566952957); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_Travel_End = new PrefabGUID(1303346774); public static readonly PrefabGUID AB_CorruptedCrow_FlyEndTrigger = new PrefabGUID(1824774605); public static readonly PrefabGUID AB_CorruptedCrow_Flying_Buff = new PrefabGUID(-308357861); public static readonly PrefabGUID AB_CorruptedCrow_Flying_IdleBuff = new PrefabGUID(14629861); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_AbilityGroup = new PrefabGUID(61265236); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_AbilityGroup_ALREADY_EXISTS_2 = new PrefabGUID(-1698500590); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Cast = new PrefabGUID(-548375015); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Cast_ALREADY_EXISTS_2 = new PrefabGUID(-1174157515); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Hit = new PrefabGUID(-1533050127); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Travel = new PrefabGUID(-62076129); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Travel_ALREADY_EXISTS_2 = new PrefabGUID(-2001013568); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_AbilityGroup = new PrefabGUID(304685414); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_Cast = new PrefabGUID(70052349); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_Hit = new PrefabGUID(775969354); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_Travel = new PrefabGUID(826655304); public static readonly PrefabGUID AB_CorruptedCrow_SlowDown_Buff = new PrefabGUID(-1990530610); public static readonly PrefabGUID AB_CorruptedCrow_Spawn_FlyDown = new PrefabGUID(-915937278); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_AbilityGroup = new PrefabGUID(-195896692); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_Cast = new PrefabGUID(1638561320); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_Travel = new PrefabGUID(533421153); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_Travel_End = new PrefabGUID(-1267021569); public static readonly PrefabGUID AB_CorruptedCrow_Throw = new PrefabGUID(-1040401062); public static readonly PrefabGUID AB_CorruptedWindGust_AbilityGroup = new PrefabGUID(1918468442); public static readonly PrefabGUID AB_CorruptedWindGust_Cast = new PrefabGUID(223642444); public static readonly PrefabGUID AB_CorruptedWindGust_Hit = new PrefabGUID(966720559); public static readonly PrefabGUID AB_CorruptedWindGust_Trigger = new PrefabGUID(408327112); public static readonly PrefabGUID AB_Corruption_EnemySpawner = new PrefabGUID(530364652); public static readonly PrefabGUID AB_Cultist_FireBlast_AbilityGroup = new PrefabGUID(14947666); public static readonly PrefabGUID AB_Cultist_FireBlast_Cast = new PrefabGUID(-1925423665); public static readonly PrefabGUID AB_Cultist_FireBlast_Throw = new PrefabGUID(-2138805270); public static readonly PrefabGUID AB_Cultist_MeleeAttack01_Cast01 = new PrefabGUID(927632051); public static readonly PrefabGUID AB_Cultist_MeleeAttack01_Group01 = new PrefabGUID(-1512916174); public static readonly PrefabGUID AB_Cultist_MeleeAttack01_Hit1 = new PrefabGUID(-1293227574); public static readonly PrefabGUID AB_Cultist_MeleeAttack02_Cast01 = new PrefabGUID(2050040698); public static readonly PrefabGUID AB_Cultist_MeleeAttack02_Group01 = new PrefabGUID(-2095410919); public static readonly PrefabGUID AB_Cultist_MeleeAttack03_Cast01 = new PrefabGUID(1426816576); public static readonly PrefabGUID AB_Cultist_MeleeAttack03_Group01 = new PrefabGUID(249896389); public static readonly PrefabGUID AB_Cultist_Projectile = new PrefabGUID(1657911047); public static readonly PrefabGUID AB_Cultist_Projectile_Cast01 = new PrefabGUID(-2088525277); public static readonly PrefabGUID AB_Cultist_Projectile_Group = new PrefabGUID(1238091894); public static readonly PrefabGUID AB_Cultist_ShapeShift_AbilityGroup = new PrefabGUID(-1951127647); public static readonly PrefabGUID AB_Cultist_ShapeShift_Cast = new PrefabGUID(-1322481847); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_AbilityGroup = new PrefabGUID(-1684997624); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_Cast = new PrefabGUID(-1802399768); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_End = new PrefabGUID(-772899095); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_Phase = new PrefabGUID(-2078346794); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_Phase_ToadKing_Vomit = new PrefabGUID(26169042); public static readonly PrefabGUID AB_Cursed_MonsterToad_Swallow_AbilityGroup = new PrefabGUID(750606882); public static readonly PrefabGUID AB_Cursed_MonsterToad_Swallow_Cast = new PrefabGUID(435795094); public static readonly PrefabGUID AB_Cursed_MonsterToad_Swallow_Hit = new PrefabGUID(2094802783); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_AbilityGroup = new PrefabGUID(2015521421); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_Cast = new PrefabGUID(-2063503194); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_Hit1 = new PrefabGUID(-1098362696); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_Hit2 = new PrefabGUID(1587644704); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueSlap_AbilityGroup = new PrefabGUID(736733073); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueSlap_Cast = new PrefabGUID(-203631072); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueSlap_Hit = new PrefabGUID(-232947967); public static readonly PrefabGUID AB_Cursed_Mosquito_DashAttack_AbilityGroup = new PrefabGUID(-1979483677); public static readonly PrefabGUID AB_Cursed_Mosquito_DashAttack_Cast = new PrefabGUID(-12886920); public static readonly PrefabGUID AB_Cursed_Mosquito_DashAttack_Phase = new PrefabGUID(400542729); public static readonly PrefabGUID AB_Cursed_Mosquito_MeleeAttack_AbilityGroup = new PrefabGUID(1451199905); public static readonly PrefabGUID AB_Cursed_Mosquito_MeleeAttack_Cast = new PrefabGUID(1227224850); public static readonly PrefabGUID AB_Cursed_Mosquito_MeleeAttack_Hit = new PrefabGUID(-1609712778); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_AbilityGroup = new PrefabGUID(556335075); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_Cast = new PrefabGUID(-1491024547); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_Phase = new PrefabGUID(-1216986584); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_TargetedBuff = new PrefabGUID(287532724); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_AggroBuff = new PrefabGUID(1162403144); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_PhaseOutBuff = new PrefabGUID(-950518260); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_PhaseOutEndingBuff = new PrefabGUID(1897798638); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_RageBuff = new PrefabGUID(1091231925); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Scream = new PrefabGUID(-756360759); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_ScreamEffectDebuff = new PrefabGUID(1498838250); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_AbilityGroup = new PrefabGUID(1439273397); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_Cast = new PrefabGUID(-1777058490); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_End = new PrefabGUID(1847558121); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_Phase = new PrefabGUID(675891131); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_AbilityGroup = new PrefabGUID(-1574537639); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_AggroBuff = new PrefabGUID(-533730502); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Cast = new PrefabGUID(1024619394); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_GhostBuff = new PrefabGUID(815688358); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile03 = new PrefabGUID(-219080756); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile04 = new PrefabGUID(431155413); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile05 = new PrefabGUID(-2097440624); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile06 = new PrefabGUID(-1536116248); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_RageBuff = new PrefabGUID(454963821); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Scream = new PrefabGUID(-2120528767); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner03 = new PrefabGUID(-983266649); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner04 = new PrefabGUID(1826840133); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner05 = new PrefabGUID(-761142217); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner06 = new PrefabGUID(-894502870); public static readonly PrefabGUID AB_Cursed_Mountainbeast_HornFlick_AbilityGroup = new PrefabGUID(-749389155); public static readonly PrefabGUID AB_Cursed_Mountainbeast_HornFlick_Cast = new PrefabGUID(677715926); public static readonly PrefabGUID AB_Cursed_MountainBeast_HornFlick_LaunchBuff = new PrefabGUID(363733786); public static readonly PrefabGUID AB_Cursed_MountainBeast_HornFlick_Phase = new PrefabGUID(-1194452347); public static readonly PrefabGUID AB_Cursed_MountainBeast_HornFlick_PostAttackBuff = new PrefabGUID(-90276801); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_AbilityGroup = new PrefabGUID(2067796423); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_AreaThrow = new PrefabGUID(-1299904251); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_Cast = new PrefabGUID(-1732213047); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_Hit = new PrefabGUID(1409534403); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_Projectile = new PrefabGUID(284085426); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_AggroBuff = new PrefabGUID(1826885843); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_AbilityGroup = new PrefabGUID(-130931989); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_Cast = new PrefabGUID(-1461990482); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_End = new PrefabGUID(-1865784935); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_Phase = new PrefabGUID(881475206); public static readonly PrefabGUID AB_Cursed_Mountainbeast_MeleeStraight_AbilityGroup = new PrefabGUID(-453331838); public static readonly PrefabGUID AB_Cursed_Mountainbeast_MeleeStraight_Cast = new PrefabGUID(612816399); public static readonly PrefabGUID AB_Cursed_Mountainbeast_MeleeStraight_Hit = new PrefabGUID(900655664); public static readonly PrefabGUID AB_Cursed_MountainBeast_MeleeStraight_TargetedBuff = new PrefabGUID(-1704661869); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_AbilityGroup = new PrefabGUID(-430375110); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_Cast = new PrefabGUID(-298006658); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_EngageCircling_AbilityGroup = new PrefabGUID(2091042632); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_EngageCircling_Buff = new PrefabGUID(-1672574757); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_EngageCircling_Cast = new PrefabGUID(844277355); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_Scream = new PrefabGUID(2000464560); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SpiritBuff = new PrefabGUID(-1483505218); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SpiritScream = new PrefabGUID(-2046991216); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SpiritStunBuff = new PrefabGUID(-1361638263); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SummonBuff = new PrefabGUID(1123566272); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_AbilityGroup = new PrefabGUID(-1771783202); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Cast1 = new PrefabGUID(-1279975872); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Cast2 = new PrefabGUID(1476800652); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Cast3 = new PrefabGUID(594618804); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Hit1 = new PrefabGUID(707875358); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Hit2 = new PrefabGUID(1095908228); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Hit3 = new PrefabGUID(248767088); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_AbilityGroup = new PrefabGUID(1221980502); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_AggroBuff = new PrefabGUID(-387360817); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Cast01 = new PrefabGUID(-2036918810); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Cast02 = new PrefabGUID(-1040870307); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Cast03 = new PrefabGUID(-1709974873); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Hit1 = new PrefabGUID(1437696661); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Hit2 = new PrefabGUID(1002020841); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Hit3 = new PrefabGUID(1635067990); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_AbilityGroup = new PrefabGUID(756139644); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_Buff = new PrefabGUID(446453312); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_Cast = new PrefabGUID(-163700765); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_InteruptBuff = new PrefabGUID(-1693341097); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_StunBuff = new PrefabGUID(1924509105); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_AbilityGroup = new PrefabGUID(1718898538); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_Cast01 = new PrefabGUID(1843199011); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_Cast02 = new PrefabGUID(-1327324332); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_Hit = new PrefabGUID(1325933973); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_MinionTravel = new PrefabGUID(-1853054623); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_MinionTravel_End = new PrefabGUID(-1060906431); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_AbilityGroup = new PrefabGUID(1808492070); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_Cast = new PrefabGUID(-1913620890); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_End = new PrefabGUID(-941321510); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_Phase = new PrefabGUID(1393320637); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogVomit_Cast = new PrefabGUID(-789537003); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogVomit_Group = new PrefabGUID(1421967280); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogVomit_Summon = new PrefabGUID(739606115); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Area = new PrefabGUID(359779991); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Throw = new PrefabGUID(570542179); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_AbilityGroup = new PrefabGUID(1790744720); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_Cast = new PrefabGUID(849090462); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_End = new PrefabGUID(-1041517934); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_Phase = new PrefabGUID(-1229521536); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_AbilityGroup = new PrefabGUID(-1864096491); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Buff = new PrefabGUID(1329219727); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Cast = new PrefabGUID(917745068); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_InitialThrow = new PrefabGUID(-1854898448); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_PlayerTargetTrigger = new PrefabGUID(1819038131); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Throw = new PrefabGUID(-172239336); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Trigger = new PrefabGUID(-933062954); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_AbilityGroup = new PrefabGUID(-1238687119); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_Cast = new PrefabGUID(107004412); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_HideHUDCastBuff = new PrefabGUID(-1976656728); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_LaunchBuff = new PrefabGUID(1750172438); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_StunBuff = new PrefabGUID(41392389); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_AbilityGroup = new PrefabGUID(1292896032); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_Cast = new PrefabGUID(-1163091757); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_HasSwallowedBuff = new PrefabGUID(1457576969); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_Hit = new PrefabGUID(1465793397); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_OnHitTravel = new PrefabGUID(2092842659); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_TargetSwallowedBuff = new PrefabGUID(-915145807); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_AbilityGroup = new PrefabGUID(-514415940); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_Cast = new PrefabGUID(1041279611); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_Hit1 = new PrefabGUID(-1240825455); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_Hit2 = new PrefabGUID(1745055074); public static readonly PrefabGUID AB_Cursed_ToadSpitter_PoisonRain_AbilityGroup = new PrefabGUID(193936844); public static readonly PrefabGUID AB_Cursed_ToadSpitter_PoisonRain_Cast = new PrefabGUID(280831224); public static readonly PrefabGUID AB_Cursed_ToadSpitter_PoisonRain_Throw = new PrefabGUID(633294112); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile = new PrefabGUID(-886762999); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile_AoE = new PrefabGUID(-1359146192); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile_Cast = new PrefabGUID(806308812); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile_Group = new PrefabGUID(-2117925151); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_AbilityGroup = new PrefabGUID(2107853915); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Cast = new PrefabGUID(-177794527); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Channel_Buff = new PrefabGUID(-988427258); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Throw = new PrefabGUID(1678932465); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Trigger = new PrefabGUID(1522897860); public static readonly PrefabGUID AB_Cursed_Witch_ConeAttack_Projectile = new PrefabGUID(1873326186); public static readonly PrefabGUID AB_Cursed_Witch_CorruptedGhouls_AbilityGroup = new PrefabGUID(1898980277); public static readonly PrefabGUID AB_Cursed_Witch_CorruptedGhouls_Cast = new PrefabGUID(-1273467464); public static readonly PrefabGUID AB_Cursed_Witch_CorruptedGhouls_Summon = new PrefabGUID(-156913225); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_AbilityGroup = new PrefabGUID(1628136011); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_AggroBuff = new PrefabGUID(62437250); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_Cast = new PrefabGUID(-1403266432); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_Channel_Buff = new PrefabGUID(420273293); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_PostCastBuff = new PrefabGUID(-365052233); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_Trigger = new PrefabGUID(-675115629); public static readonly PrefabGUID AB_Cursed_Witch_ExplodeMosquito_AbilityGroup = new PrefabGUID(-1729075022); public static readonly PrefabGUID AB_Cursed_Witch_ExplodeMosquito_Buff = new PrefabGUID(1661677234); public static readonly PrefabGUID AB_Cursed_Witch_ExplodeMosquito_Cast = new PrefabGUID(1056001110); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_AbilityGroup = new PrefabGUID(1603735911); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Cast = new PrefabGUID(-973149407); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Channel_Buff = new PrefabGUID(-2058329265); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Throw = new PrefabGUID(-1694263304); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Trigger = new PrefabGUID(-848284681); public static readonly PrefabGUID AB_Cursed_Witch_Hex_AbilityGroup = new PrefabGUID(429807295); public static readonly PrefabGUID AB_Cursed_Witch_Hex_Cast = new PrefabGUID(1089714367); public static readonly PrefabGUID AB_Cursed_Witch_Hex_Throw = new PrefabGUID(1926094413); public static readonly PrefabGUID AB_Cursed_Witch_Hex_VBlood_AbilityGroup = new PrefabGUID(1860769470); public static readonly PrefabGUID AB_Cursed_Witch_Hex_VBlood_Cast = new PrefabGUID(1598051500); public static readonly PrefabGUID AB_Cursed_Witch_Hex_VBlood_Trigger = new PrefabGUID(570785050); public static readonly PrefabGUID AB_Cursed_Witch_MeleeAttack_AbilityGroup = new PrefabGUID(2025233638); public static readonly PrefabGUID AB_Cursed_Witch_MeleeAttack_Cast = new PrefabGUID(-1591659318); public static readonly PrefabGUID AB_Cursed_Witch_MeleeAttack_Hit = new PrefabGUID(316962546); public static readonly PrefabGUID AB_Cursed_Witch_Projectile = new PrefabGUID(627053549); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_AbilityGroup = new PrefabGUID(1915605718); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_Cast = new PrefabGUID(98245092); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_CorruptionBuff = new PrefabGUID(1772638973); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_CorruptionThrow = new PrefabGUID(-832698023); public static readonly PrefabGUID AB_Cursed_Witch_WickedWhisps_AbilityGroup = new PrefabGUID(1294766036); public static readonly PrefabGUID AB_Cursed_Witch_WickedWhisps_Cast = new PrefabGUID(-561783854); public static readonly PrefabGUID AB_Cursed_Witch_WickedWhisps_Projectile = new PrefabGUID(514604229); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_AbilityGroup = new PrefabGUID(1511001063); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_Cast = new PrefabGUID(182162144); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_CorruptionBuff = new PrefabGUID(1343911070); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_CorruptionThrow = new PrefabGUID(-432877712); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_Projectile = new PrefabGUID(-792966888); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_Projectile_Hex = new PrefabGUID(1778250003); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_ReturnProjectile = new PrefabGUID(-1326100812); public static readonly PrefabGUID AB_CursedWanderer_FakeMeleeAttack_Cast01 = new PrefabGUID(1754192336); public static readonly PrefabGUID AB_CursedWanderer_FakeMeleeAttack_Group = new PrefabGUID(-1512616160); public static readonly PrefabGUID AB_CursedWanderer_Gossip_Cast01 = new PrefabGUID(-237791814); public static readonly PrefabGUID AB_CursedWanderer_Gossip_Group = new PrefabGUID(-1137336047); public static readonly PrefabGUID AB_CursedWanderer_Gossip_WispSpawn = new PrefabGUID(-1788065271); public static readonly PrefabGUID AB_CursedWanderer_MeleeAttack_Cast01 = new PrefabGUID(147412025); public static readonly PrefabGUID AB_CursedWanderer_MeleeAttack_Group = new PrefabGUID(-127603789); public static readonly PrefabGUID AB_CursedWanderer_MeleeAttack_Hit = new PrefabGUID(-1579386481); public static readonly PrefabGUID AB_CursedWanderer_OnAggro_AbilityGroup = new PrefabGUID(-852195329); public static readonly PrefabGUID AB_CursedWanderer_OnAggro_Cast = new PrefabGUID(1162538176); public static readonly PrefabGUID AB_Dash_Demount_Roll = new PrefabGUID(744300418); public static readonly PrefabGUID AB_Dash_Demount_Roll_AbilityGroup = new PrefabGUID(-290102537); public static readonly PrefabGUID AB_Dash_Demount_Roll_Cast = new PrefabGUID(-1179619555); public static readonly PrefabGUID AB_Dasher_Dash_AbilityGroup = new PrefabGUID(437523703); public static readonly PrefabGUID AB_Dasher_Dash_Cast = new PrefabGUID(-339051869); public static readonly PrefabGUID AB_Dasher_Dash_Phase = new PrefabGUID(-9760183); public static readonly PrefabGUID AB_Dasher_Dive_AbilityGroup = new PrefabGUID(705089395); public static readonly PrefabGUID AB_Dasher_Dive_Cast = new PrefabGUID(-754622499); public static readonly PrefabGUID AB_Dasher_Dive_Travel = new PrefabGUID(1214009606); public static readonly PrefabGUID AB_Dasher_Launcher_AbilityGroup = new PrefabGUID(191219781); public static readonly PrefabGUID AB_Dasher_Launcher_Cast = new PrefabGUID(-433038899); public static readonly PrefabGUID AB_Dasher_Launcher_Hit = new PrefabGUID(583701694); public static readonly PrefabGUID AB_Dasher_Melee_AbilityGroup = new PrefabGUID(1524767753); public static readonly PrefabGUID AB_Dasher_Melee_Cast = new PrefabGUID(1905296682); public static readonly PrefabGUID AB_Dasher_Melee_Hit = new PrefabGUID(985926021); public static readonly PrefabGUID AB_Debug_NukeAll_Area = new PrefabGUID(1135899694); public static readonly PrefabGUID AB_Debug_NukeAll_Cast = new PrefabGUID(1891713486); public static readonly PrefabGUID AB_Debug_NukeAll_Group = new PrefabGUID(-1563062700); public static readonly PrefabGUID AB_Degallop = new PrefabGUID(1342602129); public static readonly PrefabGUID AB_Degallop_AbilityGroup = new PrefabGUID(162388614); public static readonly PrefabGUID AB_Degallop_Cast01 = new PrefabGUID(1639961897); public static readonly PrefabGUID AB_Demount_AbilityGroup = new PrefabGUID(-230952990); public static readonly PrefabGUID AB_Demount_Cast = new PrefabGUID(1314482060); public static readonly PrefabGUID AB_Demount_Roll_AbilityGroup = new PrefabGUID(172828642); public static readonly PrefabGUID AB_Demount_Roll_Cast = new PrefabGUID(94016139); public static readonly PrefabGUID AB_Devoted_BasicAttack_Cast01 = new PrefabGUID(-69613706); public static readonly PrefabGUID AB_Devoted_BasicAttack_Cast02 = new PrefabGUID(1117520096); public static readonly PrefabGUID AB_Devoted_BasicAttack_Group = new PrefabGUID(2034438314); public static readonly PrefabGUID AB_Devoted_BasicAttack_Group02 = new PrefabGUID(-1204182143); public static readonly PrefabGUID AB_Devoted_BasicAttack_Hit = new PrefabGUID(-2110102661); public static readonly PrefabGUID AB_Devoted_Block_AbilityGroup = new PrefabGUID(1214148146); public static readonly PrefabGUID AB_Devoted_Block_Buff = new PrefabGUID(1122643505); public static readonly PrefabGUID AB_Devoted_Block_Cast = new PrefabGUID(-1208093184); public static readonly PrefabGUID AB_Devoted_Smite_Cast = new PrefabGUID(-793993210); public static readonly PrefabGUID AB_Devoted_Smite_Group = new PrefabGUID(474075607); public static readonly PrefabGUID AB_Devoted_Smite_Throw = new PrefabGUID(-1299572057); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_AbilityGroup = new PrefabGUID(-1768784526); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_Cast = new PrefabGUID(-42255788); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_ConsumeBuff = new PrefabGUID(1618606137); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_Trigger = new PrefabGUID(-477149617); public static readonly PrefabGUID AB_Dracula_BloodSoul_ChannelHeal_AbilityGroup = new PrefabGUID(1767074088); public static readonly PrefabGUID AB_Dracula_BloodSoul_ChannelHeal_Cast = new PrefabGUID(1596076542); public static readonly PrefabGUID AB_Dracula_BloodSoul_ChannelHeal_ChannelBuff = new PrefabGUID(478901515); public static readonly PrefabGUID AB_Dracula_BloodSoul_Heart_MoveTowardsOwnerBuff = new PrefabGUID(1540104932); public static readonly PrefabGUID AB_Dracula_BloodSoul_Heart_SpawnTravel = new PrefabGUID(-1860630814); public static readonly PrefabGUID AB_Dracula_BloodSoul_LandBuff = new PrefabGUID(-1208148037); public static readonly PrefabGUID AB_Dracula_BloodSoul_MoveTowardsOwnerBuff = new PrefabGUID(1593366305); public static readonly PrefabGUID AB_Dracula_BloodSoul_SpawnTravel = new PrefabGUID(-724674530); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_Buff = new PrefabGUID(2127839743); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_HomingProjectile = new PrefabGUID(472374870); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_SetupTrigger = new PrefabGUID(210161630); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_StartupBuff = new PrefabGUID(-1480733950); public static readonly PrefabGUID AB_Dracula_Final_Channel_00_InitializePhase = new PrefabGUID(1269681960); public static readonly PrefabGUID AB_Dracula_Final_Channel_01_BleedingPhase = new PrefabGUID(-1334644133); public static readonly PrefabGUID AB_Dracula_Final_Channel_02_SummonBloodSouls = new PrefabGUID(344852790); public static readonly PrefabGUID AB_Dracula_Final_Channel_03_SummonHeart = new PrefabGUID(2013697540); public static readonly PrefabGUID AB_Dracula_Final_Channel_04_SummonBloodSoulWave = new PrefabGUID(-683309186); public static readonly PrefabGUID AB_Dracula_Final_Channel_05_FinalStage = new PrefabGUID(1512871984); public static readonly PrefabGUID AB_Dracula_Final_CrimsonNova_Area = new PrefabGUID(-346299479); public static readonly PrefabGUID AB_Dracula_Final_CrimsonNova_ChannelBuff = new PrefabGUID(1734244072); public static readonly PrefabGUID AB_Dracula_Final_CrimsonNova_StartupBuff = new PrefabGUID(-703178613); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_Area = new PrefabGUID(352433617); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_AreaDebuff = new PrefabGUID(-189825441); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_DummyBuff = new PrefabGUID(1831533112); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_OrbitingBuff = new PrefabGUID(1850441894); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_TargetedBuff = new PrefabGUID(1231883895); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_Throw = new PrefabGUID(-500580519); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_Trigger = new PrefabGUID(-1260837437); public static readonly PrefabGUID AB_Dracula_Final_Stage00_BloodRainBuff = new PrefabGUID(-582698784); public static readonly PrefabGUID AB_Dracula_Final_Stage01_SummonBloodSoul_BaselineTrigger = new PrefabGUID(-459496828); public static readonly PrefabGUID AB_Dracula_Final_Stage01_SummonBloodSoul_ScalingTrigger = new PrefabGUID(-2073343268); public static readonly PrefabGUID AB_Dracula_Final_Stage02_SummonBloodSoul_Heart_Trigger = new PrefabGUID(282874839); public static readonly PrefabGUID AB_Dracula_Final_Stage03_SummonBloodSoulWave_Trigger = new PrefabGUID(2487828); public static readonly PrefabGUID AB_Dracula_Final_Stage04_TransitionToFinalPhase = new PrefabGUID(-58450867); public static readonly PrefabGUID AB_Dracula_Final_Stage05_BloodStormBuff = new PrefabGUID(741867216); public static readonly PrefabGUID AB_Dracula_Final_Stage05_DamageAmpBuff = new PrefabGUID(1462199463); public static readonly PrefabGUID AB_Dracula_Final_Stage05_FinalStagePlayerBuff = new PrefabGUID(-900688162); public static readonly PrefabGUID AB_Dracula_Final_Stage05_RingAreaTrigger = new PrefabGUID(819482992); public static readonly PrefabGUID AB_Dracula_Final_Stage05_ShrinkingStormRingAoE = new PrefabGUID(-2073658795); public static readonly PrefabGUID AB_Dracula_Final_Stage05_StaticStormRingBuff = new PrefabGUID(-1382797065); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_FlyPhase = new PrefabGUID(-1961466676); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_Hard_LandPhase = new PrefabGUID(-1722767889); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_Normal_BloodRainBuff = new PrefabGUID(-9720388); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_Normal_LandPhase = new PrefabGUID(874892017); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_SetupTrigger = new PrefabGUID(-569610298); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_Dash_AbilityGroup = new PrefabGUID(-1099406988); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_Dash_Cast = new PrefabGUID(-1232798739); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_Dash_Phase = new PrefabGUID(-1333453780); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_SpawnTravel = new PrefabGUID(-1935151884); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_AbilityGroup = new PrefabGUID(1957691133); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_Buff = new PrefabGUID(-877173379); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_Cast = new PrefabGUID(-1651386524); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_Projectile = new PrefabGUID(1547603134); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_StartupBuff = new PrefabGUID(-1989513093); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_AbilityGroup = new PrefabGUID(2079740557); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_Buff01 = new PrefabGUID(2040173960); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_Cast = new PrefabGUID(-970742791); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_HitBuff = new PrefabGUID(1342249512); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_AbilityGroup = new PrefabGUID(-1552626046); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff01 = new PrefabGUID(-1686378107); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff02 = new PrefabGUID(-1306359474); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff03 = new PrefabGUID(-603907675); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff04 = new PrefabGUID(2143179196); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff05 = new PrefabGUID(-1775216837); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Cast = new PrefabGUID(-1098931978); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_HitBuff = new PrefabGUID(-962417409); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_AbilityGroup = new PrefabGUID(-1924032736); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Cast = new PrefabGUID(-141011341); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Channel = new PrefabGUID(-359582465); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_FinalHit = new PrefabGUID(-1925548393); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_ForwardHit_First = new PrefabGUID(-63238360); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Detection = new PrefabGUID(1364965952); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Fifth = new PrefabGUID(-1193351662); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Fourth = new PrefabGUID(-1571010866); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Second = new PrefabGUID(-380434350); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Third = new PrefabGUID(-1703042228); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_AbilityGroup = new PrefabGUID(-1362226779); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_Cast = new PrefabGUID(-52344201); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_Cast01 = new PrefabGUID(-771432519); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_Hit = new PrefabGUID(952829157); public static readonly PrefabGUID AB_Dreadhorn_TargetSwitch_AbilityGroup = new PrefabGUID(-1450279612); public static readonly PrefabGUID AB_Dreadhorn_TargetSwitch_AggroBuff = new PrefabGUID(1489461671); public static readonly PrefabGUID AB_Dreadhorn_TargetSwitch_Cast = new PrefabGUID(2137075732); public static readonly PrefabGUID AB_Dreadhorn_Trample_AbilityGroup = new PrefabGUID(-2081714952); public static readonly PrefabGUID AB_Dreadhorn_Trample_AggroBuff = new PrefabGUID(-1435714402); public static readonly PrefabGUID AB_Dreadhorn_Trample_Cast = new PrefabGUID(2021452628); public static readonly PrefabGUID AB_Dreadhorn_Trample_Channel = new PrefabGUID(-1315031642); public static readonly PrefabGUID AB_Dreadhorn_Trample_DisableEvaluation_Buff = new PrefabGUID(-541538259); public static readonly PrefabGUID AB_Dreadhorn_Trample_Init_AbilityGroup = new PrefabGUID(-1670440585); public static readonly PrefabGUID AB_Dreadhorn_Trample_Init_Cast = new PrefabGUID(918875818); public static readonly PrefabGUID AB_Dreadhorn_Trample_PostChannel_Buff = new PrefabGUID(-2085773091); public static readonly PrefabGUID AB_Dreadhorn_Trample_Second_Init_AbilityGroup = new PrefabGUID(1236214928); public static readonly PrefabGUID AB_Dreadhorn_Trample_StunBuff = new PrefabGUID(-1613037028); public static readonly PrefabGUID AB_Dreadhorn_Trample_WallImpact_Throw = new PrefabGUID(-893054303); public static readonly PrefabGUID AB_Dreadhorn_Trample_WallImpact_Trigger = new PrefabGUID(861110087); public static readonly PrefabGUID AB_Dreadhorn_TramplePostLanding_StunBuff = new PrefabGUID(-1848189861); public static readonly PrefabGUID AB_DualHammers_Thunderclap_AbilityGroup = new PrefabGUID(1600917906); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Cast = new PrefabGUID(-1585117361); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Hit = new PrefabGUID(-962956267); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Travel_End = new PrefabGUID(2026595574); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Travel_Phase = new PrefabGUID(-1486020333); public static readonly PrefabGUID AB_Elixir_Bat_T01_AbilityGroup = new PrefabGUID(211394464); public static readonly PrefabGUID AB_Elixir_Bat_T01_Activate = new PrefabGUID(1583830465); public static readonly PrefabGUID AB_Elixir_Bat_T01_Buff = new PrefabGUID(167927584); public static readonly PrefabGUID AB_Elixir_Bat_T01_Cast = new PrefabGUID(367600723); public static readonly PrefabGUID AB_Elixir_Beast_T01_AbilityGroup = new PrefabGUID(-2024596663); public static readonly PrefabGUID AB_Elixir_Beast_T01_Activate = new PrefabGUID(-841270116); public static readonly PrefabGUID AB_Elixir_Beast_T01_Buff = new PrefabGUID(495759678); public static readonly PrefabGUID AB_Elixir_Beast_T01_Cast = new PrefabGUID(-675319105); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_AbilityGroup = new PrefabGUID(-759138830); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_Activate = new PrefabGUID(-1676433061); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_Buff = new PrefabGUID(-1522497022); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_Cast = new PrefabGUID(-1254077911); public static readonly PrefabGUID AB_Elixir_Crow_T01_AbilityGroup = new PrefabGUID(248404806); public static readonly PrefabGUID AB_Elixir_Crow_T01_Activate = new PrefabGUID(-1236058066); public static readonly PrefabGUID AB_Elixir_Crow_T01_Buff = new PrefabGUID(-262239794); public static readonly PrefabGUID AB_Elixir_Crow_T01_Cast = new PrefabGUID(1833031427); public static readonly PrefabGUID AB_Elixir_Prowler_T01_AbilityGroup = new PrefabGUID(1454652495); public static readonly PrefabGUID AB_Elixir_Prowler_T01_Activate = new PrefabGUID(1458832411); public static readonly PrefabGUID AB_Elixir_Prowler_T01_Buff = new PrefabGUID(1578287607); public static readonly PrefabGUID AB_Elixir_Prowler_T01_Cast = new PrefabGUID(-941740484); public static readonly PrefabGUID AB_Elixir_Raven_T01_AbilityGroup = new PrefabGUID(1357870002); public static readonly PrefabGUID AB_Elixir_Raven_T01_Activate = new PrefabGUID(930970987); public static readonly PrefabGUID AB_Elixir_Raven_T01_Buff = new PrefabGUID(-1130881359); public static readonly PrefabGUID AB_Elixir_Raven_T01_Cast = new PrefabGUID(-972231569); public static readonly PrefabGUID AB_Elixir_Twisted_T01_AbilityGroup = new PrefabGUID(-591813536); public static readonly PrefabGUID AB_Elixir_Twisted_T01_Activate = new PrefabGUID(-1126469103); public static readonly PrefabGUID AB_Elixir_Twisted_T01_Buff = new PrefabGUID(-1038676496); public static readonly PrefabGUID AB_Elixir_Twisted_T01_Cast = new PrefabGUID(-621554371); public static readonly PrefabGUID AB_Elixir_Werewolf_T01_AbilityGroup = new PrefabGUID(-332244204); public static readonly PrefabGUID AB_Elixir_Werewolf_T01_Activate = new PrefabGUID(-916786673); public static readonly PrefabGUID AB_Elixir_Werewolf_T01_Cast = new PrefabGUID(-1707864536); public static readonly PrefabGUID AB_Elixir_WerewolfT01_Buff = new PrefabGUID(1427072099); public static readonly PrefabGUID AB_Emery_Erruption_Elemental_Object = new PrefabGUID(1751162820); public static readonly PrefabGUID AB_Emery_Erruption_Elemental_Throw = new PrefabGUID(-1863440410); public static readonly PrefabGUID AB_Emery_Erruption_Elemental_Trigger = new PrefabGUID(329359508); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Object = new PrefabGUID(925499603); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Throw = new PrefabGUID(-259043549); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Throw_Elemental = new PrefabGUID(146353945); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Trigger = new PrefabGUID(779420131); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Trigger_Elemental = new PrefabGUID(868188883); public static readonly PrefabGUID AB_Emery_Erruption_Object = new PrefabGUID(-1896442615); public static readonly PrefabGUID AB_Emery_Erruption_Throw = new PrefabGUID(1092520472); public static readonly PrefabGUID AB_Emery_Erruption_Trigger = new PrefabGUID(-623231983); public static readonly PrefabGUID AB_EmeryElemental_Awake_AbilityGroup = new PrefabGUID(-992391256); public static readonly PrefabGUID AB_EmeryElemental_Awake_Cast = new PrefabGUID(124775061); public static readonly PrefabGUID AB_EmeryElemental_FallAsleep_Buff_AbilityGroup = new PrefabGUID(261951503); public static readonly PrefabGUID AB_EmeryElemental_FallAsleep_Buff_Cast = new PrefabGUID(-1589369133); public static readonly PrefabGUID AB_EmeryElemental_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-1884710039); public static readonly PrefabGUID AB_EmeryElemental_Leap_AbilityGroup = new PrefabGUID(488481150); public static readonly PrefabGUID AB_EmeryElemental_Leap_Cast = new PrefabGUID(1141486897); public static readonly PrefabGUID AB_EmeryElemental_Leap_End = new PrefabGUID(1908004166); public static readonly PrefabGUID AB_EmeryElemental_Leap_Phase = new PrefabGUID(-398934011); public static readonly PrefabGUID AB_EmeryElemental_MeleeAttack_AbilityGroup = new PrefabGUID(1903010945); public static readonly PrefabGUID AB_EmeryElemental_MeleeAttack_Cast = new PrefabGUID(-1042118284); public static readonly PrefabGUID AB_EmeryElemental_MeleeAttack_Hit = new PrefabGUID(1257272268); public static readonly PrefabGUID AB_EmeryElemental_Rollout_AbilityGroup = new PrefabGUID(1262525269); public static readonly PrefabGUID AB_EmeryElemental_Rollout_Cast = new PrefabGUID(-1961482499); public static readonly PrefabGUID AB_EmeryElemental_Rollout_Phase = new PrefabGUID(354355471); public static readonly PrefabGUID AB_EmeryElemental_Rollout_PostDashBuff = new PrefabGUID(176209028); public static readonly PrefabGUID AB_EmeryElemental_SelfDetonate_AbilityGroup = new PrefabGUID(2110769437); public static readonly PrefabGUID AB_EmeryElemental_SelfDetonate_Cast = new PrefabGUID(656924719); public static readonly PrefabGUID AB_EmeryElemental_SelfDetonate_Trigger = new PrefabGUID(523948114); public static readonly PrefabGUID AB_EmeryGolem_FallAsleep_Buff_Cast = new PrefabGUID(-402246445); public static readonly PrefabGUID AB_EmeryGolem_FallAsleep_Buff_Group = new PrefabGUID(2080406227); public static readonly PrefabGUID AB_EmeryGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-601313684); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_AbilityGroup = new PrefabGUID(107764414); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_Cast = new PrefabGUID(804381838); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_DownedStun = new PrefabGUID(167866718); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_Hit = new PrefabGUID(-1880660691); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_LaunchBuff = new PrefabGUID(1983271229); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_Trigger = new PrefabGUID(282542452); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-705534828); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Cast01 = new PrefabGUID(1725526282); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Cast02 = new PrefabGUID(1685781032); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Hit01 = new PrefabGUID(-1852208789); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Hit02 = new PrefabGUID(974434563); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_AbilityGroup = new PrefabGUID(-1882115765); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_Cast = new PrefabGUID(-1831353731); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_LaunchBuff = new PrefabGUID(-1517764067); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_Projectile = new PrefabGUID(1713307649); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_Trigger = new PrefabGUID(40567962); public static readonly PrefabGUID AB_Emote_Buff_Default_NoAnimation = new PrefabGUID(-988102043); public static readonly PrefabGUID AB_Emote_Vampire_Beckon_AbilityGroup = new PrefabGUID(-658066984); public static readonly PrefabGUID AB_Emote_Vampire_Beckon_Buff = new PrefabGUID(1698676746); public static readonly PrefabGUID AB_Emote_Vampire_Beckon_Cast = new PrefabGUID(-2082580927); public static readonly PrefabGUID AB_Emote_Vampire_Bow_AbilityGroup = new PrefabGUID(-1462274656); public static readonly PrefabGUID AB_Emote_Vampire_Bow_Buff = new PrefabGUID(-1441363163); public static readonly PrefabGUID AB_Emote_Vampire_Bow_Cast = new PrefabGUID(2105164651); public static readonly PrefabGUID AB_Emote_Vampire_Clap_AbilityGroup = new PrefabGUID(-26826346); public static readonly PrefabGUID AB_Emote_Vampire_Clap_Buff = new PrefabGUID(1850366409); public static readonly PrefabGUID AB_Emote_Vampire_Clap_Cast = new PrefabGUID(-1232216724); public static readonly PrefabGUID AB_Emote_Vampire_Cry_AbilityGroup = new PrefabGUID(889811193); public static readonly PrefabGUID AB_Emote_Vampire_Cry_Buff = new PrefabGUID(-2126160241); public static readonly PrefabGUID AB_Emote_Vampire_Cry_Cast = new PrefabGUID(1331385563); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle01_AbilityGroup = new PrefabGUID(604121141); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle01_Buff = new PrefabGUID(-1398118066); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle01_Cast = new PrefabGUID(417599345); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle02_AbilityGroup = new PrefabGUID(-925169006); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle02_Buff = new PrefabGUID(-2064936255); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle02_Cast = new PrefabGUID(-17315649); public static readonly PrefabGUID AB_Emote_Vampire_Laugh_AbilityGroup = new PrefabGUID(-1685517289); public static readonly PrefabGUID AB_Emote_Vampire_Laugh_Buff = new PrefabGUID(24204068); public static readonly PrefabGUID AB_Emote_Vampire_Laugh_Cast = new PrefabGUID(-1661855385); public static readonly PrefabGUID AB_Emote_Vampire_No_AbilityGroup = new PrefabGUID(-53273186); public static readonly PrefabGUID AB_Emote_Vampire_No_Buff = new PrefabGUID(-553346908); public static readonly PrefabGUID AB_Emote_Vampire_No_Cast = new PrefabGUID(168757271); public static readonly PrefabGUID AB_Emote_Vampire_Point_AbilityGroup = new PrefabGUID(-452406649); public static readonly PrefabGUID AB_Emote_Vampire_Point_Buff = new PrefabGUID(538423466); public static readonly PrefabGUID AB_Emote_Vampire_Point_Cast = new PrefabGUID(-2046586504); public static readonly PrefabGUID AB_Emote_Vampire_Salute_AbilityGroup = new PrefabGUID(-370061286); public static readonly PrefabGUID AB_Emote_Vampire_Salute_Buff = new PrefabGUID(1276841926); public static readonly PrefabGUID AB_Emote_Vampire_Salute_Cast = new PrefabGUID(346240125); public static readonly PrefabGUID AB_Emote_Vampire_Shrug_AbilityGroup = new PrefabGUID(-578764388); public static readonly PrefabGUID AB_Emote_Vampire_Shrug_Buff = new PrefabGUID(738606026); public static readonly PrefabGUID AB_Emote_Vampire_Shrug_Cast = new PrefabGUID(-1861609629); public static readonly PrefabGUID AB_Emote_Vampire_Sit_AbilityGroup = new PrefabGUID(808904257); public static readonly PrefabGUID AB_Emote_Vampire_Sit_Buff = new PrefabGUID(-198823786); public static readonly PrefabGUID AB_Emote_Vampire_Sit_Cast = new PrefabGUID(-107106084); public static readonly PrefabGUID AB_Emote_Vampire_Surrender_AbilityGroup = new PrefabGUID(-1064533554); public static readonly PrefabGUID AB_Emote_Vampire_Surrender_Buff = new PrefabGUID(1983064823); public static readonly PrefabGUID AB_Emote_Vampire_Surrender_Cast = new PrefabGUID(145204275); public static readonly PrefabGUID AB_Emote_Vampire_Taunt_AbilityGroup = new PrefabGUID(-158502505); public static readonly PrefabGUID AB_Emote_Vampire_Taunt_Buff = new PrefabGUID(-508293388); public static readonly PrefabGUID AB_Emote_Vampire_Taunt_Cast = new PrefabGUID(306992792); public static readonly PrefabGUID AB_Emote_Vampire_ThankYou_AbilityGroup = new PrefabGUID(-133703992); public static readonly PrefabGUID AB_Emote_Vampire_ThankYou_Buff = new PrefabGUID(-656365687); public static readonly PrefabGUID AB_Emote_Vampire_ThankYou_Cast = new PrefabGUID(-442218149); public static readonly PrefabGUID AB_Emote_Vampire_Walk_AbilityGroup = new PrefabGUID(1489736348); public static readonly PrefabGUID AB_Emote_Vampire_Walk_Buff = new PrefabGUID(-1360254138); public static readonly PrefabGUID AB_Emote_Vampire_Walk_Cast = new PrefabGUID(-1947401842); public static readonly PrefabGUID AB_Emote_Vampire_Walk_Trigger = new PrefabGUID(-2016424051); public static readonly PrefabGUID AB_Emote_Vampire_Wave_AbilityGroup = new PrefabGUID(1177797340); public static readonly PrefabGUID AB_Emote_Vampire_Wave_Buff = new PrefabGUID(2052904221); public static readonly PrefabGUID AB_Emote_Vampire_Wave_Cast = new PrefabGUID(682157248); public static readonly PrefabGUID AB_Emote_Vampire_Yes_AbilityGroup = new PrefabGUID(-1525577000); public static readonly PrefabGUID AB_Emote_Vampire_Yes_Buff = new PrefabGUID(2105188695); public static readonly PrefabGUID AB_Emote_Vampire_Yes_Cast = new PrefabGUID(-561656902); public static readonly PrefabGUID AB_EnchantedCross_LightWave_AbilityGroup = new PrefabGUID(-401259144); public static readonly PrefabGUID AB_EnchantedCross_LightWave_Cast = new PrefabGUID(-350106834); public static readonly PrefabGUID AB_EnchantedCross_LightWave_Projectile = new PrefabGUID(-255201725); public static readonly PrefabGUID AB_EnchantedCross_LightWave_Trigger = new PrefabGUID(330143141); public static readonly PrefabGUID AB_ExitCoffin_Travel_AbilityGroup_Base = new PrefabGUID(-1492032516); public static readonly PrefabGUID AB_ExitCoffin_Travel_AbilityGroup_Stone = new PrefabGUID(1639668286); public static readonly PrefabGUID AB_ExitCoffin_Travel_Cast_Base = new PrefabGUID(770599352); public static readonly PrefabGUID AB_ExitCoffin_Travel_Cast_Stone = new PrefabGUID(-1636766189); public static readonly PrefabGUID AB_ExitCoffin_Travel_End_Base = new PrefabGUID(1659231166); public static readonly PrefabGUID AB_ExitCoffin_Travel_End_Stone = new PrefabGUID(-1965770337); public static readonly PrefabGUID AB_ExitCoffin_Travel_Phase_Base = new PrefabGUID(-997204628); public static readonly PrefabGUID AB_ExitCoffin_Travel_Phase_Stone = new PrefabGUID(-162820429); public static readonly PrefabGUID AB_Farmlands_Farmer_MeleeAttack_Cast01 = new PrefabGUID(1915903764); public static readonly PrefabGUID AB_Farmlands_Farmer_MeleeAttack_Group = new PrefabGUID(1850515789); public static readonly PrefabGUID AB_Farmlands_Farmer_MeleeAttack_Hit = new PrefabGUID(1407091573); public static readonly PrefabGUID AB_Feed_01_EnemyTarget_Debuff = new PrefabGUID(-1114937852); public static readonly PrefabGUID AB_Feed_01_Initiate_AbilityGroup = new PrefabGUID(-376210658); public static readonly PrefabGUID AB_Feed_01_Initiate_Cast = new PrefabGUID(1535667383); public static readonly PrefabGUID AB_Feed_01_Initiate_DashChannel = new PrefabGUID(1231644507); public static readonly PrefabGUID AB_Feed_02_Bite_Abort_AbilityGroup = new PrefabGUID(-2068632541); public static readonly PrefabGUID AB_Feed_02_Bite_Abort_Cast = new PrefabGUID(-1414476683); public static readonly PrefabGUID AB_Feed_02_Bite_Abort_Trigger = new PrefabGUID(366323518); public static readonly PrefabGUID AB_Feed_03_Complete_AbilityGroup = new PrefabGUID(1548379114); public static readonly PrefabGUID AB_Feed_03_Complete_Cast = new PrefabGUID(1787637039); public static readonly PrefabGUID AB_Feed_03_Complete_Trigger = new PrefabGUID(-1106009274); public static readonly PrefabGUID AB_Feed_04_DashAwayFromTarget = new PrefabGUID(-1948299363); public static readonly PrefabGUID AB_Feed_Trigger_Base = new PrefabGUID(-139079478); public static readonly PrefabGUID AB_FeedBoss_01_EnemyTarget_Debuff = new PrefabGUID(1418642324); public static readonly PrefabGUID AB_FeedBoss_01_Initiate_AbilityGroup = new PrefabGUID(-948311829); public static readonly PrefabGUID AB_FeedBoss_01_Initiate_Cast = new PrefabGUID(1851942548); public static readonly PrefabGUID AB_FeedBoss_01_Initiate_DashChannel = new PrefabGUID(697172810); public static readonly PrefabGUID AB_FeedBoss_03_Complete_AbilityGroup = new PrefabGUID(-1347356700); public static readonly PrefabGUID AB_FeedBoss_03_Complete_AreaDamage = new PrefabGUID(-1797102561); public static readonly PrefabGUID AB_FeedBoss_03_Complete_Cast = new PrefabGUID(-1031870834); public static readonly PrefabGUID AB_FeedBoss_03_Complete_Trigger = new PrefabGUID(958508368); public static readonly PrefabGUID AB_FeedBoss_04_Complete_AreaTriggerBuff = new PrefabGUID(1233405326); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_EnemyTarget_Debuff = new PrefabGUID(-670750933); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_Initiate_AbilityGroup = new PrefabGUID(1790847128); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_Initiate_Cast = new PrefabGUID(-649630224); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_Initiate_DashChannel = new PrefabGUID(51055185); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_AbilityGroup = new PrefabGUID(-1560986745); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_AreaDamage = new PrefabGUID(1340086775); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_Cast = new PrefabGUID(1306418337); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_Trigger = new PrefabGUID(1229263634); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_04_Complete_AreaTriggerBuff = new PrefabGUID(1186118159); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_EnemyTarget_Debuff = new PrefabGUID(-206231665); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_Initiate_AbilityGroup = new PrefabGUID(1491658671); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_Initiate_Cast = new PrefabGUID(-1573506596); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_Initiate_DashChannel = new PrefabGUID(-1044861452); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_AbilityGroup = new PrefabGUID(-1565434117); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_AreaDamage = new PrefabGUID(250152500); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_Cast = new PrefabGUID(713711633); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_Trigger = new PrefabGUID(-1889378229); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_04_Complete_AreaTriggerBuff = new PrefabGUID(-331003702); public static readonly PrefabGUID AB_FeedDraculaOrb_01_EnemyTarget_Debuff = new PrefabGUID(1815101964); public static readonly PrefabGUID AB_FeedDraculaOrb_01_Initiate_AbilityGroup = new PrefabGUID(1393329717); public static readonly PrefabGUID AB_FeedDraculaOrb_01_Initiate_Cast = new PrefabGUID(-1529850854); public static readonly PrefabGUID AB_FeedDraculaOrb_01_Initiate_DashChannel = new PrefabGUID(-1551286374); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_AbilityGroup = new PrefabGUID(253163764); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_AreaDamage = new PrefabGUID(1301390971); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_Cast = new PrefabGUID(-1212689323); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_Trigger = new PrefabGUID(-526712042); public static readonly PrefabGUID AB_FeedDraculaOrb_04_Complete_AreaTriggerBuff = new PrefabGUID(-604904760); public static readonly PrefabGUID AB_FeedEnemyVampire_01_EnemyTarget_Debuff = new PrefabGUID(-1581547715); public static readonly PrefabGUID AB_FeedEnemyVampire_01_Initiate_AbilityGroup = new PrefabGUID(391943159); public static readonly PrefabGUID AB_FeedEnemyVampire_01_Initiate_Cast = new PrefabGUID(1283732362); public static readonly PrefabGUID AB_FeedEnemyVampire_01_Initiate_DashChannel = new PrefabGUID(1798838621); public static readonly PrefabGUID AB_FeedEnemyVampire_02_Bite_Abort_AbilityGroup = new PrefabGUID(-1365570044); public static readonly PrefabGUID AB_FeedEnemyVampire_02_Bite_Abort_Cast = new PrefabGUID(950997250); public static readonly PrefabGUID AB_FeedEnemyVampire_02_Bite_Abort_Trigger = new PrefabGUID(-1399190295); public static readonly PrefabGUID AB_FeedEnemyVampire_03_Complete_AbilityGroup = new PrefabGUID(-578672354); public static readonly PrefabGUID AB_FeedEnemyVampire_03_Complete_Cast = new PrefabGUID(-1213188934); public static readonly PrefabGUID AB_FeedEnemyVampire_03_Complete_Trigger = new PrefabGUID(-1006431398); public static readonly PrefabGUID AB_FeedEnemyVampire_04_DashAwayFromTarget = new PrefabGUID(-856042777); public static readonly PrefabGUID AB_FeedFriendly_01_EnemyTarget_Debuff = new PrefabGUID(-264516260); public static readonly PrefabGUID AB_FeedFriendly_01_Initiate_AbilityGroup = new PrefabGUID(1501158829); public static readonly PrefabGUID AB_FeedFriendly_01_Initiate_Cast = new PrefabGUID(-877555015); public static readonly PrefabGUID AB_FeedFriendly_01_Initiate_DashChannel = new PrefabGUID(1690123127); public static readonly PrefabGUID AB_FeedFriendly_02_Bite_Abort_AbilityGroup = new PrefabGUID(-1278121774); public static readonly PrefabGUID AB_FeedFriendly_02_Bite_Abort_Cast = new PrefabGUID(-316716610); public static readonly PrefabGUID AB_FeedFriendly_02_Bite_Abort_Trigger = new PrefabGUID(236713613); public static readonly PrefabGUID AB_FeedFriendly_03_Complete_AbilityGroup = new PrefabGUID(117247654); public static readonly PrefabGUID AB_FeedFriendly_03_Complete_Cast = new PrefabGUID(1739570447); public static readonly PrefabGUID AB_FeedFriendly_03_Complete_Trigger = new PrefabGUID(-1275273993); public static readonly PrefabGUID AB_FeedFriendly_04_DashAwayFromTarget = new PrefabGUID(-1745004158); public static readonly PrefabGUID AB_FeedGateBoss_01_EnemyTarget_Debuff = new PrefabGUID(585228944); public static readonly PrefabGUID AB_FeedGateBoss_01_Initiate_AbilityGroup = new PrefabGUID(-1695763915); public static readonly PrefabGUID AB_FeedGateBoss_01_Initiate_Cast = new PrefabGUID(-234803016); public static readonly PrefabGUID AB_FeedGateBoss_01_Initiate_DashChannel = new PrefabGUID(-1335827123); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_AbilityGroup = new PrefabGUID(-1446310610); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_AreaDamage = new PrefabGUID(402061920); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_Cast = new PrefabGUID(1289149810); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_Trigger = new PrefabGUID(-1669827947); public static readonly PrefabGUID AB_FeedGateBoss_04_Complete_AreaTriggerBuff = new PrefabGUID(-354622715); public static readonly PrefabGUID AB_FeedRevive_01_AllyTarget_Debuff = new PrefabGUID(579690183); public static readonly PrefabGUID AB_FeedRevive_01_Initiate_AbilityGroup = new PrefabGUID(1754040702); public static readonly PrefabGUID AB_FeedRevive_01_Initiate_Cast = new PrefabGUID(1525766239); public static readonly PrefabGUID AB_FeedRevive_01_Initiate_DashChannel = new PrefabGUID(-595871655); public static readonly PrefabGUID AB_FeedRevive_02_Bite_Abort_AbilityGroup = new PrefabGUID(1586616867); public static readonly PrefabGUID AB_FeedRevive_02_Bite_Abort_Cast = new PrefabGUID(1508231357); public static readonly PrefabGUID AB_FeedRevive_02_Bite_Abort_Trigger = new PrefabGUID(-205830402); public static readonly PrefabGUID AB_FeedRevive_03_Complete_AbilityGroup = new PrefabGUID(2072201164); public static readonly PrefabGUID AB_FeedRevive_03_Complete_Cast = new PrefabGUID(-1354315272); public static readonly PrefabGUID AB_FeedRevive_03_Complete_Trigger = new PrefabGUID(-938281780); public static readonly PrefabGUID AB_FeedRevive_04_DashAwayFromTarget = new PrefabGUID(-179005483); public static readonly PrefabGUID AB_Fishing_AbilityGroup = new PrefabGUID(-1016182556); public static readonly PrefabGUID AB_Fishing_AbilityGroup_Debug = new PrefabGUID(-1245963301); public static readonly PrefabGUID AB_Fishing_Cast = new PrefabGUID(1010344901); public static readonly PrefabGUID AB_Fishing_Cast_Debug = new PrefabGUID(802290089); public static readonly PrefabGUID AB_Fishing_Draw_AbilityGroup = new PrefabGUID(2122998237); public static readonly PrefabGUID AB_Fishing_Draw_Buff = new PrefabGUID(552896431); public static readonly PrefabGUID AB_Fishing_Draw_Cast = new PrefabGUID(-849143290); public static readonly PrefabGUID AB_Fishing_Draw_TravelToTarget = new PrefabGUID(-1130746976); public static readonly PrefabGUID AB_Fishing_Owner_Buff = new PrefabGUID(-1353936983); public static readonly PrefabGUID AB_Fishing_Target_Buff = new PrefabGUID(-272166760); public static readonly PrefabGUID AB_Fishing_Target_Buff_Debug = new PrefabGUID(2043992976); public static readonly PrefabGUID AB_Fishing_Target_ReadyBuff = new PrefabGUID(1753229314); public static readonly PrefabGUID AB_Fishing_Unit_Idle_Buff = new PrefabGUID(1817495522); public static readonly PrefabGUID AB_Footman_Hook_Cast = new PrefabGUID(-1450589308); public static readonly PrefabGUID AB_Footman_Hook_Group_UNUSED = new PrefabGUID(-249023543); public static readonly PrefabGUID AB_Footman_Hook_Hit = new PrefabGUID(451091970); public static readonly PrefabGUID AB_Footman_Lunge_Cast = new PrefabGUID(1928070176); public static readonly PrefabGUID AB_Footman_Lunge_Group_UNUSED = new PrefabGUID(1685753538); public static readonly PrefabGUID AB_Footman_Lunge_Hit = new PrefabGUID(-2014805228); public static readonly PrefabGUID AB_Footman_OnAggro_AbilityGroup = new PrefabGUID(530843430); public static readonly PrefabGUID AB_Footman_OnAggro_Cast = new PrefabGUID(744601799); public static readonly PrefabGUID AB_Footman_SideStep_Back_AbilityGroup = new PrefabGUID(-153669671); public static readonly PrefabGUID AB_Footman_SideStep_Back_Cast = new PrefabGUID(-1537633942); public static readonly PrefabGUID AB_Footman_SideStep_Left_AbilityGroup = new PrefabGUID(680715401); public static readonly PrefabGUID AB_Footman_SideStep_Left_Cast = new PrefabGUID(-1984867987); public static readonly PrefabGUID AB_Footman_SideStep_Right_AbilityGroup = new PrefabGUID(30220474); public static readonly PrefabGUID AB_Footman_SideStep_Right_Cast = new PrefabGUID(-14910786); public static readonly PrefabGUID AB_Footman_Swing_Cast = new PrefabGUID(-1594635277); public static readonly PrefabGUID AB_Footman_Swing_Group_UNUSED = new PrefabGUID(-588647240); public static readonly PrefabGUID AB_Footman_Swing_Hit = new PrefabGUID(383124589); public static readonly PrefabGUID AB_Footman_Thrust_Cast = new PrefabGUID(869694524); public static readonly PrefabGUID AB_Footman_Thrust_Group = new PrefabGUID(979394873); public static readonly PrefabGUID AB_Footman_Thrust_Hit = new PrefabGUID(-591201574); public static readonly PrefabGUID AB_Frost_ArcticLeap_AbilityGroup = new PrefabGUID(1966330719); public static readonly PrefabGUID AB_Frost_ArcticLeap_Cast = new PrefabGUID(-1308029200); public static readonly PrefabGUID AB_Frost_ArcticLeap_End = new PrefabGUID(-1291400494); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_01 = new PrefabGUID(124726296); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_02 = new PrefabGUID(858582540); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_03 = new PrefabGUID(-69063176); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_04 = new PrefabGUID(1152767858); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_Base = new PrefabGUID(-1228711097); public static readonly PrefabGUID AB_Frost_ArcticLeap_NoHitBuff = new PrefabGUID(1301065117); public static readonly PrefabGUID AB_Frost_ArcticLeap_Phase = new PrefabGUID(1611866499); public static readonly PrefabGUID AB_Frost_ArcticLeap_RingNova = new PrefabGUID(-668118822); public static readonly PrefabGUID AB_Frost_ColdBlood_Buff = new PrefabGUID(-1855512845); public static readonly PrefabGUID AB_Frost_ColdSnap_AbilityGroup = new PrefabGUID(-1000260252); public static readonly PrefabGUID AB_Frost_ColdSnap_Area = new PrefabGUID(-1314524417); public static readonly PrefabGUID AB_Frost_ColdSnap_Buff = new PrefabGUID(685701454); public static readonly PrefabGUID AB_Frost_ColdSnap_Cast = new PrefabGUID(842159268); public static readonly PrefabGUID AB_Frost_ColdSnap_ImmaterialBuff = new PrefabGUID(2082543045); public static readonly PrefabGUID AB_Frost_ColdSnap_Shield = new PrefabGUID(-557933420); public static readonly PrefabGUID AB_Frost_CrystalLance_AbilityGroup = new PrefabGUID(295045820); public static readonly PrefabGUID AB_Frost_CrystalLance_Cast = new PrefabGUID(1360996740); public static readonly PrefabGUID AB_Frost_CrystalLance_Projectile = new PrefabGUID(-1339830868); public static readonly PrefabGUID AB_Frost_CrystalLance_Projectile_SpellMod_Pierce = new PrefabGUID(1173883084); public static readonly PrefabGUID AB_Frost_FrostBat_AbilityGroup = new PrefabGUID(78384915); public static readonly PrefabGUID AB_Frost_FrostBat_AoE = new PrefabGUID(-1549688841); public static readonly PrefabGUID AB_Frost_FrostBat_Cast = new PrefabGUID(220122942); public static readonly PrefabGUID AB_Frost_FrostBat_Projectile = new PrefabGUID(661536530); public static readonly PrefabGUID AB_Frost_FrostWeapon_Buff = new PrefabGUID(620130895); public static readonly PrefabGUID AB_Frost_IceBlockVortex_AbilityGroup = new PrefabGUID(1887600892); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Buff_AreaDamageTrigger = new PrefabGUID(-1766133599); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Buff_Chill = new PrefabGUID(-862934976); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Buff_IceBlock = new PrefabGUID(1374658841); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Cast = new PrefabGUID(-1854250832); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Delay = new PrefabGUID(-1113758269); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Throw = new PrefabGUID(1786670136); public static readonly PrefabGUID AB_Frost_IceNova_AbilityGroup = new PrefabGUID(91249849); public static readonly PrefabGUID AB_Frost_IceNova_Cast = new PrefabGUID(-1901852538); public static readonly PrefabGUID AB_Frost_IceNova_RingArea = new PrefabGUID(863046621); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_AbilityGroup = new PrefabGUID(1473095785); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_Buff = new PrefabGUID(-369121853); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_Cast = new PrefabGUID(-799654122); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_Throw = new PrefabGUID(861860875); public static readonly PrefabGUID AB_Frost_IceNova_Throw = new PrefabGUID(806451467); public static readonly PrefabGUID AB_Frost_Passive_FrostNova = new PrefabGUID(-496226129); public static readonly PrefabGUID AB_Frost_Passive_FrostNova_ChillWeave = new PrefabGUID(-39715442); public static readonly PrefabGUID AB_Frost_Shared_SpellMod_FrostWeapon_Buff = new PrefabGUID(-1510452092); public static readonly PrefabGUID AB_FrostBarrier_AbilityGroup = new PrefabGUID(1293609465); public static readonly PrefabGUID AB_FrostBarrier_Buff = new PrefabGUID(-146943441); public static readonly PrefabGUID AB_FrostBarrier_Cast = new PrefabGUID(1399619536); public static readonly PrefabGUID AB_FrostBarrier_Pulse = new PrefabGUID(340904767); public static readonly PrefabGUID AB_FrostBarrier_Recast_AbilityGroup = new PrefabGUID(-1198075389); public static readonly PrefabGUID AB_FrostBarrier_Recast_Cast = new PrefabGUID(1382820959); public static readonly PrefabGUID AB_FrostBarrier_Recast_Cone = new PrefabGUID(722096580); public static readonly PrefabGUID AB_FrostBarrier_SpellMod_SpellPowerBuff = new PrefabGUID(1663992026); public static readonly PrefabGUID AB_FrostCone_AbilityGroup = new PrefabGUID(1119012588); public static readonly PrefabGUID AB_FrostCone_Buff = new PrefabGUID(-1285185439); public static readonly PrefabGUID AB_FrostCone_Cast = new PrefabGUID(-1655280244); public static readonly PrefabGUID AB_FrostCone_Cone = new PrefabGUID(1298763769); public static readonly PrefabGUID AB_FrostCone_Cone_SpellMod_FrostWave = new PrefabGUID(855985036); public static readonly PrefabGUID AB_FrostCone_ConeEnd = new PrefabGUID(701417059); public static readonly PrefabGUID AB_Gallop_AbilityGroup = new PrefabGUID(-1360906203); public static readonly PrefabGUID AB_Gallop_Buff = new PrefabGUID(1156367321); public static readonly PrefabGUID AB_Gallop_Cast = new PrefabGUID(1362070909); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_AbilityGroup = new PrefabGUID(1563014858); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Cast = new PrefabGUID(-274441063); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_AbilityGroup = new PrefabGUID(1551140710); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_Cast = new PrefabGUID(2018132221); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_ChaosBurn_Area = new PrefabGUID(-962479578); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_Travel = new PrefabGUID(1426601552); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_Travel_End = new PrefabGUID(2105297766); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Travel = new PrefabGUID(970176924); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Travel_End = new PrefabGUID(1674519087); public static readonly PrefabGUID AB_Gargoyle_Flying_Buff = new PrefabGUID(-716094309); public static readonly PrefabGUID AB_Gargoyle_FlyStart_AbilityGroup = new PrefabGUID(-382913708); public static readonly PrefabGUID AB_Gargoyle_FlyStart_Cast = new PrefabGUID(1610616192); public static readonly PrefabGUID AB_Gargoyle_FlyStart_Travel = new PrefabGUID(-1908688359); public static readonly PrefabGUID AB_Gargoyle_StoneForm_SpawnTrigger = new PrefabGUID(-1659853306); public static readonly PrefabGUID AB_Gargoyle_WingShield_AbilityGroup = new PrefabGUID(1460741503); public static readonly PrefabGUID AB_Gargoyle_WingShield_Buff = new PrefabGUID(-528753799); public static readonly PrefabGUID AB_Gargoyle_WingShield_Cast = new PrefabGUID(783049582); public static readonly PrefabGUID AB_Gargoyle_WingShield_Emerge_AbilityGroup = new PrefabGUID(88850785); public static readonly PrefabGUID AB_Gargoyle_WingShield_Emerge_Cast = new PrefabGUID(1192779639); public static readonly PrefabGUID AB_Gargoyle_WingShield_Emerge_WingSlam = new PrefabGUID(-672551340); public static readonly PrefabGUID AB_Gargoyle_WingShield_EmergeSpawn_AbilityGroup = new PrefabGUID(1529659981); public static readonly PrefabGUID AB_Gargoyle_WingShield_EmergeSpawn_Cast = new PrefabGUID(430464121); public static readonly PrefabGUID AB_Gargoyle_WingShield_EmergeSpawn_WingSlam = new PrefabGUID(-1243410559); public static readonly PrefabGUID AB_General_BloodOrb_Dracula_Object_AutoPickup = new PrefabGUID(-273077376); public static readonly PrefabGUID AB_General_Falling_Travel_Phase = new PrefabGUID(44708726); public static readonly PrefabGUID AB_General_HealingOrb_AbilityGroup = new PrefabGUID(-1977998485); public static readonly PrefabGUID AB_General_HealingOrb_Cast = new PrefabGUID(1200022436); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Object = new PrefabGUID(-1962166889); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Object_AutoPickup = new PrefabGUID(1948357334); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Throw = new PrefabGUID(1951858055); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Trigger = new PrefabGUID(-510158054); public static readonly PrefabGUID AB_General_HealingOrb_Object = new PrefabGUID(2036146072); public static readonly PrefabGUID AB_General_HealingOrb_Object_AutoPickup = new PrefabGUID(993942419); public static readonly PrefabGUID AB_General_HealingOrb_Throw = new PrefabGUID(239606141); public static readonly PrefabGUID AB_General_HealingOrb_Trigger = new PrefabGUID(1814704876); public static readonly PrefabGUID AB_Generic_BehaviourVariationApproch_Buff = new PrefabGUID(-1873937633); public static readonly PrefabGUID AB_Generic_BehaviourVariationApproch_Cast = new PrefabGUID(155874902); public static readonly PrefabGUID AB_Generic_BehaviourVariationApproch_Group = new PrefabGUID(-447578631); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleClose_Buff = new PrefabGUID(650956122); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleClose_Cast = new PrefabGUID(-2056565435); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleClose_Group = new PrefabGUID(-2125818102); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleFar_Buff = new PrefabGUID(702064685); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleFar_Cast = new PrefabGUID(-1251722046); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleFar_Group = new PrefabGUID(903306477); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleMid_Buff = new PrefabGUID(1035162540); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleMid_Cast = new PrefabGUID(-1378558491); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleMid_Group = new PrefabGUID(-1357699119); public static readonly PrefabGUID AB_Geomancer_Awake_AbilityGroup = new PrefabGUID(-394948183); public static readonly PrefabGUID AB_Geomancer_Awake_Cast = new PrefabGUID(-1597502319); public static readonly PrefabGUID AB_Geomancer_AwakeBuff = new PrefabGUID(1144293329); public static readonly PrefabGUID AB_Geomancer_BreakForm_Travel = new PrefabGUID(33805998); public static readonly PrefabGUID AB_Geomancer_Enrage_AbilityGroup = new PrefabGUID(-1204505053); public static readonly PrefabGUID AB_Geomancer_Enrage_Buff = new PrefabGUID(-647366263); public static readonly PrefabGUID AB_Geomancer_Enrage_Cast = new PrefabGUID(956142591); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_AbilityGroup = new PrefabGUID(1079488801); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Cast = new PrefabGUID(1052376507); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Hard_Projectile = new PrefabGUID(395344242); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Hard_Trigger = new PrefabGUID(1339796748); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Projectile = new PrefabGUID(1782146440); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_AbilityGroup = new PrefabGUID(-598112885); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Beam_Buff = new PrefabGUID(1600206992); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Cast = new PrefabGUID(-783849486); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Minion_Buff = new PrefabGUID(-1915869313); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Summon = new PrefabGUID(-1339882396); public static readonly PrefabGUID AB_Geomancer_GroundSlam_Cast = new PrefabGUID(168326080); public static readonly PrefabGUID AB_Geomancer_GroundSlam_Group = new PrefabGUID(2106422510); public static readonly PrefabGUID AB_Geomancer_GroundSlam_Hit = new PrefabGUID(-272098488); public static readonly PrefabGUID AB_Geomancer_Human_Projectile_Cast = new PrefabGUID(-831307685); public static readonly PrefabGUID AB_Geomancer_Human_Projectile_Group = new PrefabGUID(-1635892700); public static readonly PrefabGUID AB_Geomancer_Human_Projectile_Projectile = new PrefabGUID(-248955567); public static readonly PrefabGUID AB_Geomancer_MeleeAttack_Cast = new PrefabGUID(2025119960); public static readonly PrefabGUID AB_Geomancer_MeleeAttack_Group = new PrefabGUID(1500843923); public static readonly PrefabGUID AB_Geomancer_MeleeAttack_Hit = new PrefabGUID(-195572384); public static readonly PrefabGUID AB_Geomancer_RockSlam_AbilityGroup = new PrefabGUID(-221719333); public static readonly PrefabGUID AB_Geomancer_RockSlam_Area = new PrefabGUID(-143959701); public static readonly PrefabGUID AB_Geomancer_RockSlam_Cast = new PrefabGUID(831931293); public static readonly PrefabGUID AB_Geomancer_RockSlam_Hard_ElementalMinionTrigger = new PrefabGUID(-633974703); public static readonly PrefabGUID AB_Geomancer_RockSlam_Hard_GolemSpawnBuff = new PrefabGUID(239480532); public static readonly PrefabGUID AB_Geomancer_RockSlam_Normal_MinionTrigger = new PrefabGUID(986290597); public static readonly PrefabGUID AB_Geomancer_RockSlam_Throw = new PrefabGUID(-475192322); public static readonly PrefabGUID AB_Geomancer_RockSlam_Throw_SpawnGolem = new PrefabGUID(-1069113760); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_AbilityGroup = new PrefabGUID(1925592126); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_Buff = new PrefabGUID(174249800); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_Cast = new PrefabGUID(1962093398); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_SecondTime_AbilityGroup = new PrefabGUID(-2084016434); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_SecondTime_Buff = new PrefabGUID(1704488108); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_SecondTime_Cast = new PrefabGUID(1624823778); public static readonly PrefabGUID AB_Geomancer_Transform_ToHuman_AbilityGroup = new PrefabGUID(-716557249); public static readonly PrefabGUID AB_Geomancer_Transform_ToHuman_Buff = new PrefabGUID(-1114509240); public static readonly PrefabGUID AB_Geomancer_Transform_ToHuman_Cast = new PrefabGUID(1484136519); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_AbilityGroup = new PrefabGUID(-1148606177); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Cast = new PrefabGUID(-882939899); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Channel = new PrefabGUID(-969545560); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Throw = new PrefabGUID(18696225); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Trigger = new PrefabGUID(-1158810522); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_AbilityGroup = new PrefabGUID(1589627808); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_Cast = new PrefabGUID(-1536563925); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_Phase = new PrefabGUID(-1766269602); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_PostCorruptedDash = new PrefabGUID(-668896341); public static readonly PrefabGUID AB_GiantCrow_CorruptedPeck_AbilityGroup = new PrefabGUID(-1884419467); public static readonly PrefabGUID AB_GiantCrow_CorruptedPeck_Cast = new PrefabGUID(-549765015); public static readonly PrefabGUID AB_GiantCrow_CorruptedPeck_Hit = new PrefabGUID(-2128145646); public static readonly PrefabGUID AB_GiantCrow_Dash_AbilityGroup = new PrefabGUID(1854645901); public static readonly PrefabGUID AB_GiantCrow_Dash_Cast = new PrefabGUID(2126903454); public static readonly PrefabGUID AB_GiantCrow_Dash_Phase = new PrefabGUID(-957116534); public static readonly PrefabGUID AB_GiantCrow_Dash_PostDash = new PrefabGUID(446490900); public static readonly PrefabGUID AB_GiantCrow_Peck_AbilityGroup = new PrefabGUID(898033701); public static readonly PrefabGUID AB_GiantCrow_Peck_Cast = new PrefabGUID(-895541867); public static readonly PrefabGUID AB_GiantCrow_Peck_Hit = new PrefabGUID(-1062130087); public static readonly PrefabGUID AB_GiantCrow_Spawn_FlyDownSmoothly = new PrefabGUID(1793230259); public static readonly PrefabGUID AB_GiantCrow_Taunt_AbilityGroup = new PrefabGUID(1333250097); public static readonly PrefabGUID AB_GiantCrow_Taunt_Cast = new PrefabGUID(2085157449); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_AbilityGroup = new PrefabGUID(-1954926268); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_Cast = new PrefabGUID(1869268921); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_FireArea = new PrefabGUID(-886692844); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_Travel = new PrefabGUID(-2008438104); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_TravelEnd = new PrefabGUID(-1215804632); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_TravelStart = new PrefabGUID(783082148); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameShot_AbilityGroup = new PrefabGUID(-297165667); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameShot_Cast = new PrefabGUID(1053139414); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameShot_Projectile = new PrefabGUID(-1125133251); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_AbilityGroup = new PrefabGUID(-1462866563); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_Cast = new PrefabGUID(-955800212); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_EndBuff = new PrefabGUID(986717476); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_HitBuff = new PrefabGUID(-794872385); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_Spinner = new PrefabGUID(1389395307); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_AbilityGroup = new PrefabGUID(1311267272); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_Cast01 = new PrefabGUID(-1730584647); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_Cast02 = new PrefabGUID(1081274708); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_Hit = new PrefabGUID(1848288471); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateAllBeams_SingleActivateTrigger = new PrefabGUID(1028297438); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateAllBeams_StaggeredTrigger = new PrefabGUID(-2011515052); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateAllBeams_Trigger = new PrefabGUID(-1400063911); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateBeams_AbilityGroup = new PrefabGUID(1484650418); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateBeams_Cast = new PrefabGUID(-137131655); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateBeams_Trigger = new PrefabGUID(626039201); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStep_EndPhase = new PrefabGUID(-1752888370); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepForward_AbilityGroup = new PrefabGUID(-1280314509); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepForward_Cast = new PrefabGUID(-2059048583); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepForward_Phase = new PrefabGUID(1691132580); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_AbilityGroup = new PrefabGUID(927872126); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_BuffLeft = new PrefabGUID(-278249734); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_BuffRight = new PrefabGUID(-1211764864); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_Cast = new PrefabGUID(230471096); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_FakeProjectileLeft = new PrefabGUID(552241592); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_FakeProjectileRight = new PrefabGUID(385902419); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_FakeTarget = new PrefabGUID(411367309); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepLeft_AbilityGroup = new PrefabGUID(-570933441); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepLeft_Cast = new PrefabGUID(-467224095); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepLeft_Phase = new PrefabGUID(-1818717159); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepRight_AbilityGroup = new PrefabGUID(1808542763); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepRight_Cast = new PrefabGUID(967638725); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepRight_Phase = new PrefabGUID(1878152931); public static readonly PrefabGUID AB_Gloomrot_MonsterCastle_Breakable_Lever01_TriggerEffect = new PrefabGUID(706473627); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_AbilityGroup = new PrefabGUID(-635085409); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_Cast = new PrefabGUID(2009840201); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_Channel = new PrefabGUID(2062177006); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_PostChannel = new PrefabGUID(2041877089); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_Projectile = new PrefabGUID(1092340098); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_AbilityGroup = new PrefabGUID(288608511); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_Buff = new PrefabGUID(1664831793); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_Cast = new PrefabGUID(-917475906); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_HitBuff = new PrefabGUID(1377256347); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Cloak_AbilityGroup = new PrefabGUID(101220113); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Cloak_Buff = new PrefabGUID(1361823193); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Cloak_Cast = new PrefabGUID(290945473); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_AbilityGroup = new PrefabGUID(1779758273); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_Cast = new PrefabGUID(1948219540); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_Projectile = new PrefabGUID(459499791); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_SelfKnockback = new PrefabGUID(-1598227601); public static readonly PrefabGUID AB_Gloomrot_Railgunner_WideShot_AbilityGroup = new PrefabGUID(286182923); public static readonly PrefabGUID AB_Gloomrot_Railgunner_WideShot_Cast = new PrefabGUID(-570449030); public static readonly PrefabGUID AB_Gloomrot_Railgunner_WideShot_Hit = new PrefabGUID(1541318205); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CallAdds_AbilityGroup = new PrefabGUID(-948735477); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CallAdds_Cast = new PrefabGUID(1728074161); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CallAdds_SpawnMinions = new PrefabGUID(-2077678230); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_AbilityGroup = new PrefabGUID(1623874343); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_Buff = new PrefabGUID(389657884); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_Cast = new PrefabGUID(217522295); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_EvaluateCastImpair = new PrefabGUID(-1566545834); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_IdleBuff = new PrefabGUID(-1527408583); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_InitTrigger = new PrefabGUID(1056196434); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_MinionBuff = new PrefabGUID(-293512280); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_Trigger = new PrefabGUID(2139211512); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarp_EndPhase = new PrefabGUID(-649549290); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarp_PostTravelBuff = new PrefabGUID(-1147191436); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarp_SharedHealthBuff = new PrefabGUID(354441520); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpLeft_InitPhase = new PrefabGUID(-1422752609); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpLeft_Phase = new PrefabGUID(-1688368506); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_AbilityGroup = new PrefabGUID(-1220318405); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_Cast = new PrefabGUID(1949236453); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_InitPhase = new PrefabGUID(314949045); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_MinionSpawn = new PrefabGUID(1926609225); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_Phase = new PrefabGUID(-18946372); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_AbilityGroup = new PrefabGUID(-1187406748); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_Cast = new PrefabGUID(-480103837); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_Channel = new PrefabGUID(729954206); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_ChannelV2 = new PrefabGUID(660995569); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_ChannelV2_Hard = new PrefabGUID(-373612965); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_HitBuff = new PrefabGUID(-1217551483); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_PostCast = new PrefabGUID(-901041664); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_Projectile = new PrefabGUID(1419132893); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HealingOrb_Trigger = new PrefabGUID(-1220760235); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomePosSpawn = new PrefabGUID(-415573136); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_AbilityGroup = new PrefabGUID(-1733128159); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_Cast = new PrefabGUID(1410738); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_HitBuff = new PrefabGUID(-2114345630); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_InitOrbCastedBuff = new PrefabGUID(649053615); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_InitTrigger = new PrefabGUID(-1305946610); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_Projectile = new PrefabGUID(1703795056); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_TargetedBuff = new PrefabGUID(457793380); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_Trigger = new PrefabGUID(-1771636157); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_AbilityGroup = new PrefabGUID(978386280); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Cast = new PrefabGUID(909375776); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_HitBuff = new PrefabGUID(1518871214); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Object = new PrefabGUID(1407590180); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_StationBuff = new PrefabGUID(-167853768); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Throw01 = new PrefabGUID(1067690371); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Throw02 = new PrefabGUID(1340315458); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Throw03 = new PrefabGUID(-1730813353); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_AbilityGroup = new PrefabGUID(-1308520526); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_Cast = new PrefabGUID(-933399278); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_EndPhase = new PrefabGUID(56562009); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_Phase = new PrefabGUID(1668823622); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_AbilityGroup = new PrefabGUID(-1717533555); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_Cast = new PrefabGUID(-1500917125); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_FakeProjectile = new PrefabGUID(1080842952); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_FakeProjectileShort = new PrefabGUID(2052570628); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_FakeTarget = new PrefabGUID(-757145234); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_AbilityGroup = new PrefabGUID(-900859351); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_Cast = new PrefabGUID(-1276909985); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_Hit = new PrefabGUID(707131029); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_Projectile = new PrefabGUID(451191608); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_AbilityGroup = new PrefabGUID(1971068020); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_Cast01 = new PrefabGUID(-35518613); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_Cast02 = new PrefabGUID(1777950778); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_Hit = new PrefabGUID(227038617); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_AbilityGroup = new PrefabGUID(2052063970); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_Cast = new PrefabGUID(989758231); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_LifetimeBuff = new PrefabGUID(-2145711652); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_MinionSpawn = new PrefabGUID(457111010); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_SpawnBuff = new PrefabGUID(726255647); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_ShockGrenade_AbilityGroup = new PrefabGUID(-466422619); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_ShockGrenade_Cast = new PrefabGUID(-323729001); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_ShockGrenade_Throw = new PrefabGUID(-495382656); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerDown_AbilityGroup = new PrefabGUID(-325335847); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerDown_Buff = new PrefabGUID(1463216562); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerDown_Cast = new PrefabGUID(-913026768); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerUp_AbilityGroup = new PrefabGUID(-1060298293); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerUp_Cast = new PrefabGUID(172770500); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerUp_Trigger = new PrefabGUID(2065070406); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_RangedAttack_AbilityGroup = new PrefabGUID(1024156492); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_RangedAttack_Cast = new PrefabGUID(2030383324); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_RangedAttack_Projectile = new PrefabGUID(-776860092); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_ShockField_AbilityGroup = new PrefabGUID(342417296); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_ShockField_Area = new PrefabGUID(-1848156807); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_ShockField_Cast = new PrefabGUID(-1575106294); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_AbilityGroup = new PrefabGUID(2142399697); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_Buff = new PrefabGUID(399425423); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_Cast = new PrefabGUID(-1898964293); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_Hit = new PrefabGUID(551004086); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_PostBuff = new PrefabGUID(-726135055); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_AbilityGroup = new PrefabGUID(-892447725); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_Cast = new PrefabGUID(-1874493120); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_ChannelBuff = new PrefabGUID(1847506631); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_Hit = new PrefabGUID(-229329932); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_AbilityGroup = new PrefabGUID(257841890); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_BombThrow = new PrefabGUID(-1909476005); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_Cast = new PrefabGUID(600234590); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_PilotBuff = new PrefabGUID(84575741); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_PilotTrigger = new PrefabGUID(30671144); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_TickBuff = new PrefabGUID(1032571050); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_AbilityGroup = new PrefabGUID(-633982282); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Cast = new PrefabGUID(-1588131597); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Channel = new PrefabGUID(-1732268884); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Projectile01 = new PrefabGUID(951283456); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Projectile02 = new PrefabGUID(1487971166); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_AbilityGroup = new PrefabGUID(574933909); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_Cast = new PrefabGUID(931483413); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_Channel = new PrefabGUID(-1398883224); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_HitBuff = new PrefabGUID(2070705068); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_PostBuff = new PrefabGUID(-1021194695); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_AbilityGroup = new PrefabGUID(-1537394790); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_Cast = new PrefabGUID(-451382874); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_Explosion = new PrefabGUID(-1983385396); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_Projectile = new PrefabGUID(1923616274); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_AbilityGroup = new PrefabGUID(-1126624947); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_BombThrow = new PrefabGUID(33131505); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_BombTrigger = new PrefabGUID(1552172886); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_Cast = new PrefabGUID(1602542447); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_PilotBuff = new PrefabGUID(20995075); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_PilotTrigger = new PrefabGUID(-953046129); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_TickBuff = new PrefabGUID(-425020231); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_AbilityGroup = new PrefabGUID(-730217983); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_Cast = new PrefabGUID(971050267); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_MainProjectile = new PrefabGUID(1156886082); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_MoveBuff = new PrefabGUID(-554336743); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_SideProjectile = new PrefabGUID(-1014509529); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_AbilityGroup = new PrefabGUID(-568845499); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_BombGround = new PrefabGUID(-827088612); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_BombThrow = new PrefabGUID(-433790922); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_Cast = new PrefabGUID(-1127621357); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_MoveBuff = new PrefabGUID(-1633459560); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_PilotBuff = new PrefabGUID(-1381450465); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_PilotTrigger = new PrefabGUID(833973196); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_AbilityGroup = new PrefabGUID(-1081890077); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Cast01 = new PrefabGUID(735387572); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Cast02 = new PrefabGUID(754939425); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Cast03 = new PrefabGUID(1390292942); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Explosion = new PrefabGUID(2026954584); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Projectile = new PrefabGUID(2016365206); public static readonly PrefabGUID AB_Gloomrot_Tazer_RangedAttack_AbilityGroup = new PrefabGUID(73467714); public static readonly PrefabGUID AB_Gloomrot_Tazer_RangedAttack_Cast = new PrefabGUID(-547251218); public static readonly PrefabGUID AB_Gloomrot_Tazer_RangedAttack_Projectile = new PrefabGUID(147429836); public static readonly PrefabGUID AB_Gloomrot_Technician_Fiddle_AbilityGroup = new PrefabGUID(1485838951); public static readonly PrefabGUID AB_Gloomrot_Technician_Fiddle_Cast01 = new PrefabGUID(197978642); public static readonly PrefabGUID AB_Gloomrot_Technician_Fiddle_Cast02 = new PrefabGUID(-749784555); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_AbilityGroup = new PrefabGUID(-749335766); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_Cast01 = new PrefabGUID(-1517906669); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_Cast02 = new PrefabGUID(-1212225997); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_Hit = new PrefabGUID(51613105); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_AbilityGroup = new PrefabGUID(98352404); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Buff = new PrefabGUID(96235016); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Cast = new PrefabGUID(-1087923572); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_PreTravel = new PrefabGUID(309362800); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_PreTravel_Second = new PrefabGUID(829978520); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Travel = new PrefabGUID(1279640586); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Travel_Second = new PrefabGUID(-1877095617); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_TravelEnd = new PrefabGUID(-1659722160); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Area = new PrefabGUID(-453981619); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Cast = new PrefabGUID(-1805100612); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Channel_Buff = new PrefabGUID(668049426); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Group = new PrefabGUID(1142491430); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_FewBeams_Cast = new PrefabGUID(-913519531); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_FewBeams_Group = new PrefabGUID(1957366402); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_FewBeams_Trigger = new PrefabGUID(1586976974); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Area = new PrefabGUID(1592022037); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Cast = new PrefabGUID(1345178156); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Group = new PrefabGUID(-506564570); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Projectile = new PrefabGUID(-1355631149); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Cast = new PrefabGUID(-1250418460); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Group = new PrefabGUID(-841469184); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Hard_Cast = new PrefabGUID(660275555); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Hard_Group = new PrefabGUID(1379672205); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Hard_Trigger = new PrefabGUID(811737987); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Trigger = new PrefabGUID(1849768379); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_AbilityGroup = new PrefabGUID(-2097618568); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Cast = new PrefabGUID(-1664716277); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_AbilityGroup = new PrefabGUID(922412053); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Cast = new PrefabGUID(-633627968); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_01 = new PrefabGUID(713915490); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_02 = new PrefabGUID(-393998335); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_03 = new PrefabGUID(437291488); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_04 = new PrefabGUID(-1039861337); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_01 = new PrefabGUID(435849363); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_02 = new PrefabGUID(-1892950511); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_03 = new PrefabGUID(-60897631); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_04 = new PrefabGUID(559619826); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_AbilityGroup = new PrefabGUID(-1904011556); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Cast = new PrefabGUID(-1102261329); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Channel = new PrefabGUID(1556815281); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Hard_Channel = new PrefabGUID(-1433407263); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Hard_OrbBuff = new PrefabGUID(-1876409000); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Hard_Projectile = new PrefabGUID(-314385730); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_OrbBuff = new PrefabGUID(-1900411265); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Projectile = new PrefabGUID(-1127890719); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Cast = new PrefabGUID(-1591210303); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Group = new PrefabGUID(-727882902); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Immaterial = new PrefabGUID(-924837566); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Trigger = new PrefabGUID(-888582520); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_AbilityGroup = new PrefabGUID(-559662270); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_Cast = new PrefabGUID(-1985115715); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_PreTravel = new PrefabGUID(107073123); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_Travel = new PrefabGUID(1657467665); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_TravelEnd = new PrefabGUID(1064339042); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_AbilityGroup = new PrefabGUID(2100724308); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_Buff = new PrefabGUID(-603967180); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_Cast = new PrefabGUID(1434448130); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_PullArea = new PrefabGUID(105855568); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeAttack_AbilityGroup = new PrefabGUID(-607666302); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeAttack_Cast = new PrefabGUID(1901494574); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeAttack_Hit = new PrefabGUID(192129816); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_AbilityGroup = new PrefabGUID(-349738324); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_Cast = new PrefabGUID(1084293768); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_DownedStun = new PrefabGUID(-2012844698); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_Hit = new PrefabGUID(-1546064675); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_AbilityGroup = new PrefabGUID(1653116246); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_Cast = new PrefabGUID(-1443156712); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_Hit = new PrefabGUID(-1256271477); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_HitBuff = new PrefabGUID(2006937312); public static readonly PrefabGUID AB_GoldGolem_AggroTarget_AbilityGroup = new PrefabGUID(72734316); public static readonly PrefabGUID AB_GoldGolem_AggroTarget_Buff = new PrefabGUID(-1489846876); public static readonly PrefabGUID AB_GoldGolem_AggroTarget_Cast = new PrefabGUID(-1838517125); public static readonly PrefabGUID AB_GoldGolem_Awake_Cast = new PrefabGUID(-1276782249); public static readonly PrefabGUID AB_GoldGolem_Awake_Group = new PrefabGUID(-1656534946); public static readonly PrefabGUID AB_GoldGolem_Enrage_AbilityGroup = new PrefabGUID(-963623992); public static readonly PrefabGUID AB_GoldGolem_Enrage_Buff = new PrefabGUID(127536152); public static readonly PrefabGUID AB_GoldGolem_Enrage_Cast = new PrefabGUID(-453379334); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_AbilityGroup = new PrefabGUID(-645101263); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Cast01 = new PrefabGUID(-1974855908); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Cast02 = new PrefabGUID(1192389322); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Cast03 = new PrefabGUID(612544982); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Hit01 = new PrefabGUID(-1462695081); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Hit02 = new PrefabGUID(1417275299); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Hit03 = new PrefabGUID(-837988058); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Stun = new PrefabGUID(2139290707); public static readonly PrefabGUID AB_GoldGolem_FallAsleep_Buff_AbilityGroup = new PrefabGUID(-685952199); public static readonly PrefabGUID AB_GoldGolem_FallAsleep_Buff_Cast = new PrefabGUID(-1242887667); public static readonly PrefabGUID AB_GoldGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-336211519); public static readonly PrefabGUID AB_GoldGolem_Invulnerability_Buff = new PrefabGUID(-748498013); public static readonly PrefabGUID AB_GoldGolem_MeleeAttack_AbilityGroup = new PrefabGUID(1770841962); public static readonly PrefabGUID AB_GoldGolem_MeleeAttack_Cast = new PrefabGUID(1897346919); public static readonly PrefabGUID AB_GoldGolem_MeleeAttack_Hit = new PrefabGUID(-1154292407); public static readonly PrefabGUID AB_GoldGolem_Molten_Buff = new PrefabGUID(36716419); public static readonly PrefabGUID AB_GoldGolem_PostVulnerableBuff = new PrefabGUID(848542975); public static readonly PrefabGUID AB_GoldGolem_RockSlam_AbilityGroup = new PrefabGUID(92820140); public static readonly PrefabGUID AB_GoldGolem_RockSlam_Cast = new PrefabGUID(1359059929); public static readonly PrefabGUID AB_GoldGolem_RockSlam_Projectile = new PrefabGUID(188459696); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_AbilityGroup = new PrefabGUID(-1181502209); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_DashStrike_Cast = new PrefabGUID(-1171039965); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_DashStrike_Dash = new PrefabGUID(-488123464); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_DashStrike_Strike = new PrefabGUID(-1581829410); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_Hit_01 = new PrefabGUID(-810252484); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_LaunchBuff = new PrefabGUID(586091216); public static readonly PrefabGUID AB_GreatSword_LeapAttack_AbilityGroup = new PrefabGUID(-2095151729); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Cast = new PrefabGUID(-2140721739); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Hit = new PrefabGUID(-1878919289); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Travel_End = new PrefabGUID(385249651); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Travel_Phase = new PrefabGUID(-1977246826); public static readonly PrefabGUID AB_Harpy_AoE_AbilityGroup = new PrefabGUID(-325952371); public static readonly PrefabGUID AB_Harpy_AoE_Cast = new PrefabGUID(1073376086); public static readonly PrefabGUID AB_Harpy_AoE_Throw = new PrefabGUID(-1147637314); public static readonly PrefabGUID AB_Harpy_Dash_AbilityGroup = new PrefabGUID(-1850037222); public static readonly PrefabGUID AB_Harpy_Dash_Cast = new PrefabGUID(-29200376); public static readonly PrefabGUID AB_Harpy_Dash_Phase = new PrefabGUID(1912060269); public static readonly PrefabGUID AB_Harpy_Dive_AbilityGroup = new PrefabGUID(1629100793); public static readonly PrefabGUID AB_Harpy_Dive_Cast = new PrefabGUID(-343251965); public static readonly PrefabGUID AB_Harpy_Dive_Travel = new PrefabGUID(-2072258220); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_AbilityGroup = new PrefabGUID(1678557149); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_Cast = new PrefabGUID(31841610); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_Channel = new PrefabGUID(-1392281122); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_Hit = new PrefabGUID(-1909501253); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_HitBuff = new PrefabGUID(536353365); public static readonly PrefabGUID AB_Harpy_Launcher_AbilityGroup = new PrefabGUID(1721154667); public static readonly PrefabGUID AB_Harpy_Launcher_Cast = new PrefabGUID(1530803110); public static readonly PrefabGUID AB_Harpy_Launcher_Hit = new PrefabGUID(261910822); public static readonly PrefabGUID AB_Harpy_Launcher_LaunchBuff = new PrefabGUID(781339893); public static readonly PrefabGUID AB_Harpy_Melee_AbilityGroup = new PrefabGUID(-317399619); public static readonly PrefabGUID AB_Harpy_Melee_Cast = new PrefabGUID(-1479157943); public static readonly PrefabGUID AB_Harpy_Melee_Hit = new PrefabGUID(-1107495654); public static readonly PrefabGUID AB_Harpy_Spawn_FlyDown = new PrefabGUID(888932733); public static readonly PrefabGUID AB_Harpy_Spawn_FlyDownLand = new PrefabGUID(-765194689); public static readonly PrefabGUID AB_Harpy_Spawn_FlyDownSmoothly = new PrefabGUID(2038513138); public static readonly PrefabGUID AB_Harpy_Spawn_SideCharge = new PrefabGUID(-1105315493); public static readonly PrefabGUID AB_HighLord_CorpseStorm_AbilityGroup = new PrefabGUID(1006960825); public static readonly PrefabGUID AB_HighLord_CorpseStorm_AreaThrow = new PrefabGUID(-616249927); public static readonly PrefabGUID AB_HighLord_CorpseStorm_AreaThrowBasic = new PrefabGUID(-1369346104); public static readonly PrefabGUID AB_HighLord_CorpseStorm_Cast = new PrefabGUID(2016926455); public static readonly PrefabGUID AB_HighLord_CorpseStorm_Channel_Buff = new PrefabGUID(-11300078); public static readonly PrefabGUID AB_HighLord_CorpseStorm_Projectile = new PrefabGUID(2144484523); public static readonly PrefabGUID AB_HighLord_GroundSword_ConnectBuff_Sword = new PrefabGUID(667903561); public static readonly PrefabGUID AB_HighLord_GroundSword_PermaBuff_Boss = new PrefabGUID(-916946628); public static readonly PrefabGUID AB_HighLord_GroundSword_PermaBuff_Sword = new PrefabGUID(1761702199); public static readonly PrefabGUID AB_HighLord_GroundSword_SilenceBuff_Boss = new PrefabGUID(-6635580); public static readonly PrefabGUID AB_HighLord_LeapStrike_AbilityGroup = new PrefabGUID(938684260); public static readonly PrefabGUID AB_HighLord_LeapStrike_Cast = new PrefabGUID(900477321); public static readonly PrefabGUID AB_HighLord_LeapStrike_End = new PrefabGUID(1836176758); public static readonly PrefabGUID AB_HighLord_LeapStrike_Phase = new PrefabGUID(-562800978); public static readonly PrefabGUID AB_HighLord_PBAE_AbilityGroup = new PrefabGUID(-1139777657); public static readonly PrefabGUID AB_HighLord_PBAE_Cast = new PrefabGUID(1422112401); public static readonly PrefabGUID AB_HighLord_PBAE_Trigger = new PrefabGUID(-1412912205); public static readonly PrefabGUID AB_HighLord_PullPlayers_AbilityGroup = new PrefabGUID(851287157); public static readonly PrefabGUID AB_HighLord_PullPlayers_Cast = new PrefabGUID(-2071145161); public static readonly PrefabGUID AB_HighLord_PullPlayers_TeleportBuff = new PrefabGUID(121142925); public static readonly PrefabGUID AB_HighLord_PullPlayers_TeleportBuff_End = new PrefabGUID(-1657967639); public static readonly PrefabGUID AB_HighLord_PullPlayers_TeleportBuff_Start = new PrefabGUID(-746290494); public static readonly PrefabGUID AB_HighLord_PullPlayers_Trigger = new PrefabGUID(-1426491749); public static readonly PrefabGUID AB_HighLord_RaiseDead_AbilityGroup = new PrefabGUID(416744805); public static readonly PrefabGUID AB_HighLord_RaiseDead_Cast = new PrefabGUID(778419454); public static readonly PrefabGUID AB_HighLord_RaiseDead_Trigger = new PrefabGUID(740452052); public static readonly PrefabGUID AB_HighLord_Summon_Buff = new PrefabGUID(-323966648); public static readonly PrefabGUID AB_HighLord_SwordCarve_AbilityGroup = new PrefabGUID(1115425417); public static readonly PrefabGUID AB_HighLord_SwordCarve_Cast = new PrefabGUID(1771625149); public static readonly PrefabGUID AB_HighLord_SwordCarve_Phase = new PrefabGUID(-2114190267); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_AbilityGroup = new PrefabGUID(-2126197617); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_DashStrike_Cast = new PrefabGUID(1286990437); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_DashStrike_Dash = new PrefabGUID(505601630); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_DashStrike_Strike = new PrefabGUID(158607802); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_Hit_01 = new PrefabGUID(-1380045742); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_LaunchBuff = new PrefabGUID(1298495819); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_AbilityGroup = new PrefabGUID(-328302080); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Cast01 = new PrefabGUID(761892370); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Cast02 = new PrefabGUID(-560217827); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Hit01 = new PrefabGUID(49816890); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Hit02 = new PrefabGUID(1433379105); public static readonly PrefabGUID AB_HighLord_UnholySkill_AbilityGroup = new PrefabGUID(-1298764600); public static readonly PrefabGUID AB_HighLord_UnholySkill_Cast = new PrefabGUID(9780843); public static readonly PrefabGUID AB_HighLord_UnholySkill_Projectile = new PrefabGUID(-2026828098); public static readonly PrefabGUID AB_HighLord_UnholyWarp_AbilityGroup = new PrefabGUID(-604910466); public static readonly PrefabGUID AB_HighLord_UnholyWarp_Cast = new PrefabGUID(-350485426); public static readonly PrefabGUID AB_HighLord_UnholyWarp_Phase = new PrefabGUID(957699556); public static readonly PrefabGUID AB_HighLord_UnholyWarp_PostTravelBuff = new PrefabGUID(1093661673); public static readonly PrefabGUID AB_HighLordSword_SelfStun_AbilityGroup = new PrefabGUID(-1430256354); public static readonly PrefabGUID AB_HighLordSword_SelfStun_BossStunBuff = new PrefabGUID(-1007572634); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Buff = new PrefabGUID(-226187750); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Cast = new PrefabGUID(1322883841); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Channel = new PrefabGUID(1515973621); public static readonly PrefabGUID AB_HighLordSword_SelfStun_DeadBuff = new PrefabGUID(104224016); public static readonly PrefabGUID AB_HighLordSword_SelfStun_End = new PrefabGUID(-476632286); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Projectile = new PrefabGUID(-2063241265); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_AbilityGroup = new PrefabGUID(436038744); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_AbilityGroup = new PrefabGUID(-842785205); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_Buff = new PrefabGUID(985538529); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_Cast = new PrefabGUID(1938218550); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_End = new PrefabGUID(-802269107); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_Phase = new PrefabGUID(842087260); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Buff = new PrefabGUID(307775055); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Cast = new PrefabGUID(437005070); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_End = new PrefabGUID(-17369676); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_AbilityGroup = new PrefabGUID(445289088); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_Buff = new PrefabGUID(-1593300903); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_Cast = new PrefabGUID(-1319599432); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_End = new PrefabGUID(407003044); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_Phase = new PrefabGUID(-494679061); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Phase = new PrefabGUID(1693465568); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_AbilityGroup = new PrefabGUID(-20922272); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_Buff = new PrefabGUID(-1718116915); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_Cast = new PrefabGUID(-114006154); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_End = new PrefabGUID(214919869); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_Phase = new PrefabGUID(-1552400564); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_AbilityGroup = new PrefabGUID(-880319836); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_Buff = new PrefabGUID(279976255); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_Cast = new PrefabGUID(379512250); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_HitBuff = new PrefabGUID(-1945705965); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_TriggerArea = new PrefabGUID(157851389); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_AbilityGroup = new PrefabGUID(-1691591896); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_Cast01 = new PrefabGUID(-1895935994); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_Cast02 = new PrefabGUID(-402827280); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_Hit = new PrefabGUID(1317396763); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_AbilityGroup = new PrefabGUID(664138263); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_Cast01 = new PrefabGUID(-2122390453); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_Cast02 = new PrefabGUID(-366179076); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_Hit = new PrefabGUID(4800258); public static readonly PrefabGUID AB_HostileVillager_PitchforkAttack_AbilityGroup = new PrefabGUID(-650192545); public static readonly PrefabGUID AB_HostileVillager_PitchforkAttack_Cast01 = new PrefabGUID(1135214466); public static readonly PrefabGUID AB_HostileVillager_PitchforkAttack_Hit = new PrefabGUID(1776025361); public static readonly PrefabGUID AB_HostileVillager_ShovelAttack_AbilityGroup = new PrefabGUID(477397109); public static readonly PrefabGUID AB_HostileVillager_ShovelAttack_Cast01 = new PrefabGUID(-1628753347); public static readonly PrefabGUID AB_HostileVillager_ShovelAttack_Hit = new PrefabGUID(662540137); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_AbilityGroup = new PrefabGUID(2136688539); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_Cast01 = new PrefabGUID(-989897898); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_Cast02 = new PrefabGUID(-1270029941); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_Hit = new PrefabGUID(-1372149622); public static readonly PrefabGUID AB_HostileVillager_TorchThrow_AbilityGroup = new PrefabGUID(1850527627); public static readonly PrefabGUID AB_HostileVillager_TorchThrow_Cast = new PrefabGUID(932713456); public static readonly PrefabGUID AB_HostileVillager_TorchThrow_Throw = new PrefabGUID(-1080628286); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_AbilityGroup = new PrefabGUID(446999227); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_Cast01 = new PrefabGUID(418655964); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_Cast02 = new PrefabGUID(-1370213189); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_Hit = new PrefabGUID(-2009814307); public static readonly PrefabGUID AB_HoundMaster_SpawnHit = new PrefabGUID(-473294933); public static readonly PrefabGUID AB_IceRanger_BloodMend_AbilityGroup = new PrefabGUID(-1710744334); public static readonly PrefabGUID AB_IceRanger_BloodMend_Buff = new PrefabGUID(-1669745744); public static readonly PrefabGUID AB_IceRanger_BloodMend_Cast = new PrefabGUID(-1539256101); public static readonly PrefabGUID AB_IceRanger_ColdSnap_AbilityGroup = new PrefabGUID(-926355648); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Area = new PrefabGUID(-979014326); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Buff = new PrefabGUID(1626068605); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Cast = new PrefabGUID(-888561363); public static readonly PrefabGUID AB_IceRanger_ColdSnap_ImmaterialBuff = new PrefabGUID(-117571063); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Shield = new PrefabGUID(416837213); public static readonly PrefabGUID AB_IceRanger_IceNova_AbilityGroup = new PrefabGUID(953519927); public static readonly PrefabGUID AB_IceRanger_IceNova_Cast = new PrefabGUID(-2129830878); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_AbilityGroup = new PrefabGUID(1691254929); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_Cast = new PrefabGUID(-449308522); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_RingArea = new PrefabGUID(1266086536); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_Throw = new PrefabGUID(1209509351); public static readonly PrefabGUID AB_IceRanger_IceNova_RingArea = new PrefabGUID(-75630114); public static readonly PrefabGUID AB_IceRanger_IceNova_Throw = new PrefabGUID(240075362); public static readonly PrefabGUID AB_IceRanger_JumpDown_AbilityGroup = new PrefabGUID(1064969109); public static readonly PrefabGUID AB_IceRanger_JumpDown_Buff = new PrefabGUID(516505385); public static readonly PrefabGUID AB_IceRanger_JumpDown_Cast = new PrefabGUID(-1965997143); public static readonly PrefabGUID AB_IceRanger_JumpDown_Travel = new PrefabGUID(1937056675); public static readonly PrefabGUID AB_IceRanger_JumpDown_Travel_Land = new PrefabGUID(-21518537); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_AbilityGroup = new PrefabGUID(1766924388); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_AreaThrow = new PrefabGUID(1659543847); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Cast = new PrefabGUID(-2025527763); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Projectile = new PrefabGUID(1442361283); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_AbilityGroup = new PrefabGUID(-808864212); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_AreaThrow = new PrefabGUID(488206767); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_Cast = new PrefabGUID(1868900578); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_Projectile = new PrefabGUID(801218059); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_AbilityGroup = new PrefabGUID(1431473799); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_Area = new PrefabGUID(-317564656); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_AttachBuff = new PrefabGUID(-2036645637); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_Cast = new PrefabGUID(1668005661); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_IcicleSpawnThrow = new PrefabGUID(1573363803); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_LowHealth_AbilityGroup = new PrefabGUID(2057952818); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_RingArea = new PrefabGUID(-379708760); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_SelfStun = new PrefabGUID(-182838302); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_SpawnBuff = new PrefabGUID(-1706093146); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_Travel = new PrefabGUID(2017147638); public static readonly PrefabGUID AB_Illusion_Curse_Arc = new PrefabGUID(218990010); public static readonly PrefabGUID AB_Illusion_Curse_Cast = new PrefabGUID(609428826); public static readonly PrefabGUID AB_Illusion_Curse_Debuff = new PrefabGUID(569697629); public static readonly PrefabGUID AB_Illusion_Curse_Debuff_Slow = new PrefabGUID(-1809520); public static readonly PrefabGUID AB_Illusion_Curse_DummyAimpreview = new PrefabGUID(1072377410); public static readonly PrefabGUID AB_Illusion_Curse_Group = new PrefabGUID(-1432758970); public static readonly PrefabGUID AB_Illusion_Curse_Projectile = new PrefabGUID(-1625798509); public static readonly PrefabGUID AB_Illusion_MistTrance_AbilityGroup = new PrefabGUID(110097606); public static readonly PrefabGUID AB_Illusion_MistTrance_Buff = new PrefabGUID(-844883320); public static readonly PrefabGUID AB_Illusion_MistTrance_Cast = new PrefabGUID(1202983170); public static readonly PrefabGUID AB_Illusion_MistTrance_PreTravel = new PrefabGUID(436253770); public static readonly PrefabGUID AB_Illusion_MistTrance_SpellMod_DamageOnAttackBuff = new PrefabGUID(-1633277893); public static readonly PrefabGUID AB_Illusion_MistTrance_SpellMod_Haste = new PrefabGUID(-1210432418); public static readonly PrefabGUID AB_Illusion_MistTrance_Travel = new PrefabGUID(1512549350); public static readonly PrefabGUID AB_Illusion_MistTrance_TravelEnd = new PrefabGUID(1299792911); public static readonly PrefabGUID AB_Illusion_Mosquito_AbilityGroup = new PrefabGUID(268059675); public static readonly PrefabGUID AB_Illusion_Mosquito_Area_Explosion = new PrefabGUID(2123590060); public static readonly PrefabGUID AB_Illusion_Mosquito_Cast_Target = new PrefabGUID(-348776938); public static readonly PrefabGUID AB_Illusion_Mosquito_ExplodeBuff = new PrefabGUID(-1120131759); public static readonly PrefabGUID AB_Illusion_Mosquito_SpellMod_HealthAndSpeed = new PrefabGUID(1813132792); public static readonly PrefabGUID AB_Illusion_Mosquito_Summon = new PrefabGUID(-2124923660); public static readonly PrefabGUID AB_Illusion_PhantomAegis_AbilityGroup = new PrefabGUID(-2053450457); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Buff = new PrefabGUID(1050324275); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Buff_MagicSource = new PrefabGUID(1433921398); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Cast = new PrefabGUID(1485010433); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_AbilityGroup = new PrefabGUID(1852992863); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_Buff = new PrefabGUID(-695515598); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_Cast = new PrefabGUID(1643258338); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_TriggerBuff = new PrefabGUID(-180128064); public static readonly PrefabGUID AB_Illusion_PhantomAegis_SpellMod_Explode = new PrefabGUID(-211309361); public static readonly PrefabGUID AB_Illusion_Serpent_AbilityGroup = new PrefabGUID(-286223348); public static readonly PrefabGUID AB_Illusion_Serpent_Area = new PrefabGUID(834863145); public static readonly PrefabGUID AB_Illusion_Serpent_Cast = new PrefabGUID(1466221371); public static readonly PrefabGUID AB_Illusion_Serpent_Projectile = new PrefabGUID(-1687982393); public static readonly PrefabGUID AB_Illusion_Serpent_Wisp_Projectile = new PrefabGUID(1008847881); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_AbilityGroup = new PrefabGUID(1650878435); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_ApplyShieldAoE = new PrefabGUID(1800964994); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_ChannelShield = new PrefabGUID(-1820757085); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_CooldownBuff = new PrefabGUID(723969820); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_EndShield = new PrefabGUID(573122271); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_SpawnBuff = new PrefabGUID(696081555); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_Summon_Cast = new PrefabGUID(1419608225); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_Summon_Throw = new PrefabGUID(574130531); public static readonly PrefabGUID AB_Illusion_SpectralWolf_AbilityGroup = new PrefabGUID(247896794); public static readonly PrefabGUID AB_Illusion_SpectralWolf_BounceDelay_Buff = new PrefabGUID(-1253153799); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Cast = new PrefabGUID(-1246428843); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Projectile_Bouncing = new PrefabGUID(714958891); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Projectile_First = new PrefabGUID(-1640018550); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Projectile_Owner_Homing = new PrefabGUID(1141944685); public static readonly PrefabGUID AB_Illusion_WispDance_AbilityGroup = new PrefabGUID(-1745021468); public static readonly PrefabGUID AB_Illusion_WispDance_Buff01 = new PrefabGUID(1112914174); public static readonly PrefabGUID AB_Illusion_WispDance_Buff02 = new PrefabGUID(-876669750); public static readonly PrefabGUID AB_Illusion_WispDance_Buff03 = new PrefabGUID(1794443302); public static readonly PrefabGUID AB_Illusion_WispDance_Cast = new PrefabGUID(1017168458); public static readonly PrefabGUID AB_Illusion_WispDance_HitBuff = new PrefabGUID(1845149357); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_AbilityGroup = new PrefabGUID(-1249437419); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_Cast = new PrefabGUID(-570986876); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_Channel = new PrefabGUID(-2042876438); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_Projectile = new PrefabGUID(-172977631); public static readonly PrefabGUID AB_Illusion_WispDance_RecastBuff = new PrefabGUID(1282593497); public static readonly PrefabGUID AB_Illusion_WraithSpear_AbilityGroup = new PrefabGUID(-242769430); public static readonly PrefabGUID AB_Illusion_WraithSpear_Buff = new PrefabGUID(217067911); public static readonly PrefabGUID AB_Illusion_WraithSpear_Cast = new PrefabGUID(1980757401); public static readonly PrefabGUID AB_Illusion_WraithSpear_Projectile = new PrefabGUID(654227177); public static readonly PrefabGUID AB_InkCrawler_Melee_AbilityGroup = new PrefabGUID(-117718548); public static readonly PrefabGUID AB_InkCrawler_Melee_Cast01 = new PrefabGUID(104865438); public static readonly PrefabGUID AB_InkCrawler_Melee_Hit = new PrefabGUID(-591343493); public static readonly PrefabGUID AB_Interact_ArenaFlag_Leave_AbilityGroup = new PrefabGUID(-312796240); public static readonly PrefabGUID AB_Interact_ArenaFlag_Leave_Buff = new PrefabGUID(878094916); public static readonly PrefabGUID AB_Interact_ArenaFlag_Leave_Cast = new PrefabGUID(922839367); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team01_AbilityGroup = new PrefabGUID(-926110853); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team01_Buff = new PrefabGUID(353518193); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team01_Cast = new PrefabGUID(-786428143); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team02_AbilityGroup = new PrefabGUID(270247647); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team02_Buff = new PrefabGUID(-551716582); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team02_Cast = new PrefabGUID(-1493032237); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team03_AbilityGroup = new PrefabGUID(-723874886); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team03_Buff = new PrefabGUID(-429685047); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team03_Cast = new PrefabGUID(-974690111); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team04_AbilityGroup = new PrefabGUID(919946085); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team04_Buff = new PrefabGUID(450184126); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team04_Cast = new PrefabGUID(1661416845); public static readonly PrefabGUID AB_Interact_ArenaStation_AbilityGroup = new PrefabGUID(1864378264); public static readonly PrefabGUID AB_Interact_ArenaStation_Cast = new PrefabGUID(1623165510); public static readonly PrefabGUID AB_Interact_ArenaStation_Use = new PrefabGUID(-641398928); public static readonly PrefabGUID AB_Interact_ArmorRack_AbilityGroup = new PrefabGUID(-440165167); public static readonly PrefabGUID AB_Interact_ArmorRack_Buff = new PrefabGUID(1598717568); public static readonly PrefabGUID AB_Interact_ArmorRack_Cast = new PrefabGUID(1957897463); public static readonly PrefabGUID AB_Interact_BellRing_AbilityGroup = new PrefabGUID(1104157543); public static readonly PrefabGUID AB_Interact_BellRing_Buff = new PrefabGUID(948361860); public static readonly PrefabGUID AB_Interact_BellRing_Cast = new PrefabGUID(-2140743797); public static readonly PrefabGUID AB_Interact_BellRing_Trigger = new PrefabGUID(175271266); public static readonly PrefabGUID AB_Interact_BindCoffin = new PrefabGUID(1824438241); public static readonly PrefabGUID AB_Interact_BindCoffin_AbilityGroup = new PrefabGUID(1372470796); public static readonly PrefabGUID AB_Interact_BindCoffin_Cast = new PrefabGUID(557507477); public static readonly PrefabGUID AB_Interact_BindCoffin_Stone = new PrefabGUID(1153186740); public static readonly PrefabGUID AB_Interact_BindCoffin_Stone_AbilityGroup = new PrefabGUID(-1020324236); public static readonly PrefabGUID AB_Interact_BindCoffin_Stone_Cast = new PrefabGUID(118491170); public static readonly PrefabGUID AB_Interact_CoffinSleeping = new PrefabGUID(845443603); public static readonly PrefabGUID AB_Interact_Construct_Long_AbilityGroup = new PrefabGUID(2099812790); public static readonly PrefabGUID AB_Interact_Construct_Long_Cast = new PrefabGUID(895690552); public static readonly PrefabGUID AB_Interact_Curse_Wisp_AbilityGroup = new PrefabGUID(1606718216); public static readonly PrefabGUID AB_Interact_Curse_Wisp_Buff = new PrefabGUID(969375416); public static readonly PrefabGUID AB_Interact_Curse_Wisp_Cast = new PrefabGUID(1242020823); public static readonly PrefabGUID AB_Interact_CustomizationMirror = new PrefabGUID(1804568126); public static readonly PrefabGUID AB_Interact_CustomizationMirror_AbilityGroup = new PrefabGUID(-1711588061); public static readonly PrefabGUID AB_Interact_CustomizationMirror_Cast = new PrefabGUID(-357358319); public static readonly PrefabGUID AB_Interact_Dismantle_Long_AbilityGroup = new PrefabGUID(34416775); public static readonly PrefabGUID AB_Interact_Dismantle_Long_Cast = new PrefabGUID(-444552879); public static readonly PrefabGUID AB_Interact_Dismantle_Medium_AbilityGroup = new PrefabGUID(-449872140); public static readonly PrefabGUID AB_Interact_Dismantle_Medium_Cast = new PrefabGUID(258697778); public static readonly PrefabGUID AB_Interact_Dismantle_Short_AbilityGroup = new PrefabGUID(-310753479); public static readonly PrefabGUID AB_Interact_Dismantle_Short_Cast = new PrefabGUID(-919079192); public static readonly PrefabGUID AB_Interact_DoorKnock_AbilityGroup = new PrefabGUID(-931708593); public static readonly PrefabGUID AB_Interact_DoorKnock_Buff = new PrefabGUID(149319704); public static readonly PrefabGUID AB_Interact_DoorKnock_Cast = new PrefabGUID(414262188); public static readonly PrefabGUID AB_Interact_DoorKnock_DecayKnock = new PrefabGUID(181609412); public static readonly PrefabGUID AB_Interact_DoorKnock_Trigger = new PrefabGUID(1095531563); public static readonly PrefabGUID AB_Interact_DraculaDoor_AbilityGroup = new PrefabGUID(1306041529); public static readonly PrefabGUID AB_Interact_DraculaDoor_Cast = new PrefabGUID(-491951961); public static readonly PrefabGUID AB_Interact_DraculaDoor_Impact = new PrefabGUID(1622682048); public static readonly PrefabGUID AB_Interact_DraculaDoor_Travel = new PrefabGUID(896167570); public static readonly PrefabGUID AB_Interact_DraculaDoorFail_AbilityGroup = new PrefabGUID(302896371); public static readonly PrefabGUID AB_Interact_DraculaDoorFail_Cast = new PrefabGUID(-2059015055); public static readonly PrefabGUID AB_Interact_DuelFlag_AbilityGroup = new PrefabGUID(-1114643812); public static readonly PrefabGUID AB_Interact_DuelFlag_Buff = new PrefabGUID(-1801874471); public static readonly PrefabGUID AB_Interact_DuelFlag_Cast = new PrefabGUID(1678263736); public static readonly PrefabGUID AB_Interact_General_LayDown_AbilityGroup = new PrefabGUID(-1712538598); public static readonly PrefabGUID AB_Interact_General_LayDown_Buff = new PrefabGUID(-1732425629); public static readonly PrefabGUID AB_Interact_General_LayDown_Cast = new PrefabGUID(1794833271); public static readonly PrefabGUID AB_Interact_General_LayDown_Travel = new PrefabGUID(2144165849); public static readonly PrefabGUID AB_Interact_General_LayDown_Travel_Out_Stand_Up = new PrefabGUID(486395870); public static readonly PrefabGUID AB_Interact_General_Sit_AbilityGroup = new PrefabGUID(-91023537); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_01 = new PrefabGUID(-945727908); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_02 = new PrefabGUID(585047249); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_03 = new PrefabGUID(2023418266); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_04 = new PrefabGUID(-1086680683); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_05 = new PrefabGUID(823301546); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_06 = new PrefabGUID(924519404); public static readonly PrefabGUID AB_Interact_General_Sit_Cast = new PrefabGUID(-68701593); public static readonly PrefabGUID AB_Interact_General_Sit_Travel = new PrefabGUID(694774762); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_01 = new PrefabGUID(1924146075); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_02 = new PrefabGUID(-1218802961); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_03 = new PrefabGUID(-1351027059); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_04 = new PrefabGUID(1588481526); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_05 = new PrefabGUID(-74402832); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_06 = new PrefabGUID(-1149702315); public static readonly PrefabGUID AB_Interact_GetInside_AbilityGroup_Base = new PrefabGUID(1013114237); public static readonly PrefabGUID AB_Interact_GetInside_AbilityGroup_Stone = new PrefabGUID(1335616296); public static readonly PrefabGUID AB_Interact_GetInside_Cast_Base = new PrefabGUID(-1518265217); public static readonly PrefabGUID AB_Interact_GetInside_Cast_Stone = new PrefabGUID(-554673480); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Buff_Base = new PrefabGUID(381160212); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Buff_Stone = new PrefabGUID(569692162); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Init_Buff_Base = new PrefabGUID(-785333140); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Init_Buff_Stone = new PrefabGUID(1956875482); public static readonly PrefabGUID AB_Interact_GetInside_Target_Buff_Base = new PrefabGUID(-2068156603); public static readonly PrefabGUID AB_Interact_GetInside_Target_Buff_Stone = new PrefabGUID(-2072683514); public static readonly PrefabGUID AB_Interact_GetInside_Travel_Base = new PrefabGUID(-1194613929); public static readonly PrefabGUID AB_Interact_GetInside_Travel_Stone = new PrefabGUID(-342726392); public static readonly PrefabGUID AB_Interact_HealingOrb_AbilityGroup = new PrefabGUID(1214299173); public static readonly PrefabGUID AB_Interact_HealingOrb_Buff = new PrefabGUID(1294634937); public static readonly PrefabGUID AB_Interact_HealingOrb_Cast = new PrefabGUID(1025740289); public static readonly PrefabGUID AB_Interact_HealingOrb_Leech_AbilityGroup = new PrefabGUID(-1329891521); public static readonly PrefabGUID AB_Interact_HealingOrb_Leech_Buff = new PrefabGUID(470402533); public static readonly PrefabGUID AB_Interact_HealingOrb_Leech_Cast = new PrefabGUID(-32784135); public static readonly PrefabGUID AB_Interact_HideInObject_AbilityGroup = new PrefabGUID(-1154891994); public static readonly PrefabGUID AB_Interact_HideInObject_Buff_Owner = new PrefabGUID(-2059756080); public static readonly PrefabGUID AB_Interact_HideInObject_Buff_Target = new PrefabGUID(-1696380191); public static readonly PrefabGUID AB_Interact_HideInObject_Cast = new PrefabGUID(-766432381); public static readonly PrefabGUID AB_Interact_HideInObject_Recast_M1_AbilityGroup = new PrefabGUID(-188185340); public static readonly PrefabGUID AB_Interact_HideInObject_Recast_M1_Cast = new PrefabGUID(-101228576); public static readonly PrefabGUID AB_Interact_HideInObject_Recast_M1_Trigger = new PrefabGUID(857764330); public static readonly PrefabGUID AB_Interact_HideInObject_Travel = new PrefabGUID(-1937575866); public static readonly PrefabGUID AB_Interact_HideInObject_Travel_Out = new PrefabGUID(533645066); public static readonly PrefabGUID AB_Interact_Inspect = new PrefabGUID(222103866); public static readonly PrefabGUID AB_Interact_Inspect_AbilityGroup = new PrefabGUID(-1160664147); public static readonly PrefabGUID AB_Interact_Inspect_Cast = new PrefabGUID(-382695720); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Blue_AbilityGroup = new PrefabGUID(1550864188); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Blue_Cast = new PrefabGUID(-155879739); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Blue_Trigger = new PrefabGUID(-1168056185); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Red_AbilityGroup = new PrefabGUID(98022305); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Red_Cast = new PrefabGUID(-1644954585); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Red_Trigger = new PrefabGUID(-241373186); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Travel_Shared = new PrefabGUID(1000740726); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Yellow_AbilityGroup = new PrefabGUID(1088859718); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Yellow_Cast = new PrefabGUID(-211215583); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Yellow_Trigger = new PrefabGUID(-480263579); public static readonly PrefabGUID AB_Interact_MonsterGenerator_AbilityGroup = new PrefabGUID(1689119503); public static readonly PrefabGUID AB_Interact_MonsterGenerator_Cast = new PrefabGUID(1723562682); public static readonly PrefabGUID AB_Interact_MonsterGenerator_Transition = new PrefabGUID(1318259684); public static readonly PrefabGUID AB_Interact_Mount_AbilityGroup = new PrefabGUID(1734264526); public static readonly PrefabGUID AB_Interact_Mount_Cast = new PrefabGUID(-372722894); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff = new PrefabGUID(2112789321); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse = new PrefabGUID(854656674); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire = new PrefabGUID(-978792376); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire_Blackfang = new PrefabGUID(-2000859158); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire_Gloomrot = new PrefabGUID(-1936451181); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire_PMKSkeleton = new PrefabGUID(-1627838818); public static readonly PrefabGUID AB_Interact_Mount_Owner_Init_Buff = new PrefabGUID(2114973567); public static readonly PrefabGUID AB_Interact_Mount_Revive = new PrefabGUID(2091165171); public static readonly PrefabGUID AB_Interact_Mount_Revive_AbilityGroup = new PrefabGUID(544227616); public static readonly PrefabGUID AB_Interact_Mount_Revive_Cast = new PrefabGUID(1505005210); public static readonly PrefabGUID AB_Interact_Mount_Target_Buff = new PrefabGUID(-8223667); public static readonly PrefabGUID AB_Interact_Mount_Target_LastOwner_BuffIcon = new PrefabGUID(-1476191492); public static readonly PrefabGUID AB_Interact_Mount_Travel = new PrefabGUID(1848617499); public static readonly PrefabGUID AB_Interact_OpenContainer = new PrefabGUID(1405487786); public static readonly PrefabGUID AB_Interact_OpenContainer_AbilityGroup = new PrefabGUID(-1662046920); public static readonly PrefabGUID AB_Interact_OpenContainer_Blood_NoEssence_AbilityGroup = new PrefabGUID(-576906626); public static readonly PrefabGUID AB_Interact_OpenContainer_Cast = new PrefabGUID(-305054665); public static readonly PrefabGUID AB_Interact_OpenContainer_DisabledDummy_AbilityGroup = new PrefabGUID(1039955663); public static readonly PrefabGUID AB_Interact_OpenContainer_Dummy_Cast = new PrefabGUID(737749360); public static readonly PrefabGUID AB_Interact_OpenContainer_Hold = new PrefabGUID(1551798297); public static readonly PrefabGUID AB_Interact_OpenContainer_Hold_AbilityGroup = new PrefabGUID(421907078); public static readonly PrefabGUID AB_Interact_OpenContainer_Hold_Cast = new PrefabGUID(-1778721184); public static readonly PrefabGUID AB_Interact_OpenContainer_HoldToTap = new PrefabGUID(1771112861); public static readonly PrefabGUID AB_Interact_OpenContainer_HoldToTap_AbilityGroup = new PrefabGUID(1137335620); public static readonly PrefabGUID AB_Interact_OpenContainer_HoldToTap_Cast = new PrefabGUID(420840336); public static readonly PrefabGUID AB_Interact_OpenDoor = new PrefabGUID(1395794834); public static readonly PrefabGUID AB_Interact_OpenDoor_AbilityGroup = new PrefabGUID(-1934538221); public static readonly PrefabGUID AB_Interact_OpenDoor_Cast = new PrefabGUID(1746391295); public static readonly PrefabGUID AB_Interact_OpenGate = new PrefabGUID(-41614405); public static readonly PrefabGUID AB_Interact_OpenGate_AbilityGroup = new PrefabGUID(-2057340406); public static readonly PrefabGUID AB_Interact_OpenGate_Cast = new PrefabGUID(1675434358); public static readonly PrefabGUID AB_Interact_OpenMonster_EnergyBeam_AbilityGroup = new PrefabGUID(-876908134); public static readonly PrefabGUID AB_Interact_OpenMonster_EnergyBeam_Activate = new PrefabGUID(871983993); public static readonly PrefabGUID AB_Interact_OpenMonster_EnergyBeam_Cast = new PrefabGUID(107873219); public static readonly PrefabGUID AB_Interact_PickDisconnected_AbilityGroup = new PrefabGUID(345138892); public static readonly PrefabGUID AB_Interact_PickDisconnected_Cast = new PrefabGUID(-6288240); public static readonly PrefabGUID AB_Interact_PickDisconnected_Owner_Buff = new PrefabGUID(-1930363607); public static readonly PrefabGUID AB_Interact_PickDisconnected_Owner_Init_Buff = new PrefabGUID(-1204937944); public static readonly PrefabGUID AB_Interact_PickDisconnected_Target_Buff = new PrefabGUID(-1839902827); public static readonly PrefabGUID AB_Interact_PickDisconnected_Travel = new PrefabGUID(-1976208593); public static readonly PrefabGUID AB_Interact_Pickup = new PrefabGUID(-472155364); public static readonly PrefabGUID AB_Interact_Pickup_AbilityGroup = new PrefabGUID(-1732463804); public static readonly PrefabGUID AB_Interact_Pickup_Cast = new PrefabGUID(1651771089); public static readonly PrefabGUID AB_Interact_Pickup_Destroy = new PrefabGUID(1300807528); public static readonly PrefabGUID AB_Interact_Pickup_Resource_AbilityGroup = new PrefabGUID(165220777); public static readonly PrefabGUID AB_Interact_Pickup_Resource_Cast = new PrefabGUID(736994552); public static readonly PrefabGUID AB_Interact_PlaceTileModel_AbilityGroup_Long = new PrefabGUID(1399369255); public static readonly PrefabGUID AB_Interact_PlaceTileModel_Cast_Long = new PrefabGUID(-1587789246); public static readonly PrefabGUID AB_Interact_RatHole_AbilityGroup = new PrefabGUID(-1428855842); public static readonly PrefabGUID AB_Interact_RatHole_Cast = new PrefabGUID(-1115775715); public static readonly PrefabGUID AB_Interact_Repair_Medium_AbilityGroup = new PrefabGUID(109530037); public static readonly PrefabGUID AB_Interact_Repair_Medium_Cast = new PrefabGUID(-701769181); public static readonly PrefabGUID AB_Interact_RetrieveRelic_AbilityGroup = new PrefabGUID(1654467658); public static readonly PrefabGUID AB_Interact_RetrieveRelic_Cast = new PrefabGUID(1144010242); public static readonly PrefabGUID AB_Interact_RetrieveRelic_Destroy = new PrefabGUID(-1818035017); public static readonly PrefabGUID AB_Interact_SelectStartGraveyard = new PrefabGUID(-907469238); public static readonly PrefabGUID AB_Interact_SelectStartGraveyard_AbilityGroup = new PrefabGUID(1687099904); public static readonly PrefabGUID AB_Interact_SelectStartGraveyard_Cast = new PrefabGUID(-1729326776); public static readonly PrefabGUID AB_Interact_Servant_AbilityGroup = new PrefabGUID(-1509344340); public static readonly PrefabGUID AB_Interact_Servant_Buff = new PrefabGUID(-127008514); public static readonly PrefabGUID AB_Interact_Servant_Cast = new PrefabGUID(-593508661); public static readonly PrefabGUID AB_Interact_Servant_TargetBuff = new PrefabGUID(-435793813); public static readonly PrefabGUID AB_Interact_ServantCoffinSpawn_Travel = new PrefabGUID(509296401); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_AbilityGroup = new PrefabGUID(-1803981405); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_Activate = new PrefabGUID(440049814); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_Cast = new PrefabGUID(-1788036690); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_PlayerBuff = new PrefabGUID(183782290); public static readonly PrefabGUID AB_Interact_StoneCoffinSpawn_Travel = new PrefabGUID(-1276482574); public static readonly PrefabGUID AB_Interact_StoneCoffinSpawn_Travel_Delay = new PrefabGUID(1290990039); public static readonly PrefabGUID AB_Interact_Throne_AbilityGroup = new PrefabGUID(1651864139); public static readonly PrefabGUID AB_Interact_Throne_Buff_Sit = new PrefabGUID(211319841); public static readonly PrefabGUID AB_Interact_Throne_Cast = new PrefabGUID(1832821794); public static readonly PrefabGUID AB_Interact_Throne_DestroySit_Shared_Buff = new PrefabGUID(-493220526); public static readonly PrefabGUID AB_Interact_Throne_DisableCollision = new PrefabGUID(-554773229); public static readonly PrefabGUID AB_Interact_Throne_Dracula_AbilityGroup = new PrefabGUID(935984304); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Buff_Sit = new PrefabGUID(-13752172); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Cast = new PrefabGUID(-953937900); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Recast_AbilityGroup = new PrefabGUID(1234809194); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Recast_Cast = new PrefabGUID(1649922542); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Recast_Return = new PrefabGUID(-2124138742); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Travel = new PrefabGUID(559608494); public static readonly PrefabGUID AB_Interact_Throne_Recast_Shared_AbilityGroup = new PrefabGUID(-1385465144); public static readonly PrefabGUID AB_Interact_Throne_Recast_Shared_Cast = new PrefabGUID(301365911); public static readonly PrefabGUID AB_Interact_Throne_Travel = new PrefabGUID(1193440335); public static readonly PrefabGUID AB_Interact_Throne_Travel_Out_Stand_Up = new PrefabGUID(1822430824); public static readonly PrefabGUID AB_Interact_ThrowSword_AbilityGroup = new PrefabGUID(-1041665194); public static readonly PrefabGUID AB_Interact_ThrowSword_Buff = new PrefabGUID(-92043824); public static readonly PrefabGUID AB_Interact_ThrowSword_Cast = new PrefabGUID(1236182680); public static readonly PrefabGUID AB_Interact_TombCoffinSpawn_Travel = new PrefabGUID(722466953); public static readonly PrefabGUID AB_Interact_TombCoffinSpawn_Travel_Delay = new PrefabGUID(-165284501); public static readonly PrefabGUID AB_Interact_Trade = new PrefabGUID(-700487455); public static readonly PrefabGUID AB_Interact_Trade_AbilityGroup = new PrefabGUID(2141326610); public static readonly PrefabGUID AB_Interact_Trade_Cast = new PrefabGUID(985054525); public static readonly PrefabGUID AB_Interact_Trade_Target = new PrefabGUID(1878427249); public static readonly PrefabGUID AB_Interact_UseBloodAltar = new PrefabGUID(-664265769); public static readonly PrefabGUID AB_Interact_UseBloodAltar_AbilityGroup = new PrefabGUID(-927251534); public static readonly PrefabGUID AB_Interact_UseBloodAltar_Cast = new PrefabGUID(34523318); public static readonly PrefabGUID AB_Interact_UseBloodMixer = new PrefabGUID(-2130966171); public static readonly PrefabGUID AB_Interact_UseBloodMixer_AbilityGroup = new PrefabGUID(922855296); public static readonly PrefabGUID AB_Interact_UseBloodMixer_Cast = new PrefabGUID(93988676); public static readonly PrefabGUID AB_Interact_UseCastleHeart = new PrefabGUID(-600929294); public static readonly PrefabGUID AB_Interact_UseCastleHeart_AbilityGroup = new PrefabGUID(-801968342); public static readonly PrefabGUID AB_Interact_UseCastleHeart_AbilityGroup_Enemy = new PrefabGUID(1473393531); public static readonly PrefabGUID AB_Interact_UseCastleHeart_Cast = new PrefabGUID(918894490); public static readonly PrefabGUID AB_Interact_UseCastleHeart_Cast_Enemy = new PrefabGUID(2081035392); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding = new PrefabGUID(-959419771); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_AbilityGroup = new PrefabGUID(910704281); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_AbilityGroup_Enemy = new PrefabGUID(-650664522); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_Cast = new PrefabGUID(-329739313); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_Cast_Enemy = new PrefabGUID(-717835667); public static readonly PrefabGUID AB_Interact_UseEntryway = new PrefabGUID(-2012423771); public static readonly PrefabGUID AB_Interact_UseEntryway_Cast = new PrefabGUID(134201779); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave = new PrefabGUID(1393214003); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_AbilityGroup = new PrefabGUID(-501592674); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_Cast = new PrefabGUID(1662032955); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_PostTravel = new PrefabGUID(-1450875414); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_Travel = new PrefabGUID(83453710); public static readonly PrefabGUID AB_Interact_UseEntryway_Enter_AbilityGroup = new PrefabGUID(2024460612); public static readonly PrefabGUID AB_Interact_UseEntryway_Exit_AbilityGroup = new PrefabGUID(592600719); public static readonly PrefabGUID AB_Interact_UseEntryway_PostTravel = new PrefabGUID(-691754762); public static readonly PrefabGUID AB_Interact_UseEntryway_Travel = new PrefabGUID(2033937156); public static readonly PrefabGUID AB_Interact_UseEntryway_Travel_Graveyard = new PrefabGUID(-1297892367); public static readonly PrefabGUID AB_Interact_UseEntrywayExit_AbilityGroup = new PrefabGUID(-739563600); public static readonly PrefabGUID AB_Interact_UseForge = new PrefabGUID(-1503163472); public static readonly PrefabGUID AB_Interact_UseForge_Ability_Group = new PrefabGUID(-827928543); public static readonly PrefabGUID AB_Interact_UseForge_Cast = new PrefabGUID(1642946196); public static readonly PrefabGUID AB_Interact_UseFusionForge = new PrefabGUID(228023731); public static readonly PrefabGUID AB_Interact_UseFusionForge_Ability_Group = new PrefabGUID(1022555711); public static readonly PrefabGUID AB_Interact_UseFusionForge_Cast = new PrefabGUID(2115555303); public static readonly PrefabGUID AB_Interact_UseInventoryRouteStation = new PrefabGUID(895902045); public static readonly PrefabGUID AB_Interact_UseInventoryRouteStation_AbilityGroup = new PrefabGUID(-341552237); public static readonly PrefabGUID AB_Interact_UseInventoryRouteStation_Cast = new PrefabGUID(1081392595); public static readonly PrefabGUID AB_Interact_UseJewelCraftingStation = new PrefabGUID(-1418887294); public static readonly PrefabGUID AB_Interact_UseJewelCraftingStation_AbilityGroup = new PrefabGUID(-191894025); public static readonly PrefabGUID AB_Interact_UseJewelCraftingStation_Cast = new PrefabGUID(-1397956718); public static readonly PrefabGUID AB_Interact_UseLightningRodStation = new PrefabGUID(84062433); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_AbilityGroup = new PrefabGUID(-1339620791); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_Cast = new PrefabGUID(-2128586073); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_Overloaded_AbilityGroup = new PrefabGUID(-80003337); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_Overloaded_Cast = new PrefabGUID(1728893004); public static readonly PrefabGUID AB_Interact_UseMusicPlayerStation = new PrefabGUID(-1124266463); public static readonly PrefabGUID AB_Interact_UseMusicPlayerStation_AbilityGroup = new PrefabGUID(2145896190); public static readonly PrefabGUID AB_Interact_UseMusicPlayerStation_Cast = new PrefabGUID(1522881987); public static readonly PrefabGUID AB_Interact_UseNoctemRadar = new PrefabGUID(-1430472112); public static readonly PrefabGUID AB_Interact_UseNoctemRadar_AbilityGroup = new PrefabGUID(-857675545); public static readonly PrefabGUID AB_Interact_UseNoctemRadar_Cast = new PrefabGUID(1724072860); public static readonly PrefabGUID AB_Interact_UsePortal = new PrefabGUID(709355532); public static readonly PrefabGUID AB_Interact_UsePortal_AbilityGroup = new PrefabGUID(-2136524530); public static readonly PrefabGUID AB_Interact_UsePortal_Cast = new PrefabGUID(-909210409); public static readonly PrefabGUID AB_Interact_UsePrisonStation = new PrefabGUID(-1853175090); public static readonly PrefabGUID AB_Interact_UsePrisonStation_AbilityGroup = new PrefabGUID(-2143553487); public static readonly PrefabGUID AB_Interact_UsePrisonstation_Cast = new PrefabGUID(-202892455); public static readonly PrefabGUID AB_Interact_UseRefinementStation = new PrefabGUID(-361611703); public static readonly PrefabGUID AB_Interact_UseRefinementStation_AbilityGroup = new PrefabGUID(897325595); public static readonly PrefabGUID AB_Interact_UseRefinementstation_Cast = new PrefabGUID(-1610167208); public static readonly PrefabGUID AB_Interact_UseRefinementStationBloodpress = new PrefabGUID(-1845994379); public static readonly PrefabGUID AB_Interact_UseRefinementStationBloodpress_AbilityGroup = new PrefabGUID(-2139983264); public static readonly PrefabGUID AB_Interact_UseRefinementstationBloodpress_Cast = new PrefabGUID(1766341726); public static readonly PrefabGUID AB_Interact_UseRefinementStationGrinder = new PrefabGUID(-871253843); public static readonly PrefabGUID AB_Interact_UseRefinementStationGrinder_AbilityGroup = new PrefabGUID(-2120286823); public static readonly PrefabGUID AB_Interact_UseRefinementstationGrinder_Cast = new PrefabGUID(-1978921983); public static readonly PrefabGUID AB_Interact_UseRelic_Behemoth_AbilityGroup = new PrefabGUID(1883675026); public static readonly PrefabGUID AB_Interact_UseRelic_Behemoth_Buff = new PrefabGUID(-1703886455); public static readonly PrefabGUID AB_Interact_UseRelic_Behemoth_Cast = new PrefabGUID(-1568934921); public static readonly PrefabGUID AB_Interact_UseRelic_Manticore_AbilityGroup = new PrefabGUID(-2054010438); public static readonly PrefabGUID AB_Interact_UseRelic_Manticore_Buff = new PrefabGUID(-238197495); public static readonly PrefabGUID AB_Interact_UseRelic_Manticore_Cast = new PrefabGUID(-1644726473); public static readonly PrefabGUID AB_Interact_UseRelic_Monster_AbilityGroup = new PrefabGUID(-2064810948); public static readonly PrefabGUID AB_Interact_UseRelic_Monster_Buff = new PrefabGUID(1068709119); public static readonly PrefabGUID AB_Interact_UseRelic_Monster_Cast = new PrefabGUID(-1863913590); public static readonly PrefabGUID AB_Interact_UseRelic_Paladin_AbilityGroup = new PrefabGUID(546136204); public static readonly PrefabGUID AB_Interact_UseRelic_Paladin_Buff = new PrefabGUID(-1161197991); public static readonly PrefabGUID AB_Interact_UseRelic_Paladin_Cast = new PrefabGUID(-69591182); public static readonly PrefabGUID AB_Interact_UseRelicRadar = new PrefabGUID(-893499048); public static readonly PrefabGUID AB_Interact_UseRelicRadar_AbilityGroup = new PrefabGUID(-1337273957); public static readonly PrefabGUID AB_Interact_UseRelicRadar_Cast = new PrefabGUID(1534984668); public static readonly PrefabGUID AB_Interact_UseResearchstation = new PrefabGUID(-81291263); public static readonly PrefabGUID AB_Interact_UseResearchstation_AbilityGroup = new PrefabGUID(14271023); public static readonly PrefabGUID AB_Interact_UseResearchstation_Cast = new PrefabGUID(-83188602); public static readonly PrefabGUID AB_Interact_UseRespecStation = new PrefabGUID(-1415375000); public static readonly PrefabGUID AB_Interact_UseRespecStation_Ability_Group = new PrefabGUID(1277638345); public static readonly PrefabGUID AB_Interact_UseRespecStation_Cast = new PrefabGUID(656515510); public static readonly PrefabGUID AB_Interact_UseSalvageStation = new PrefabGUID(1604883320); public static readonly PrefabGUID AB_Interact_UseSalvageStation_AbilityGroup = new PrefabGUID(-3758365); public static readonly PrefabGUID AB_Interact_UseSalvagestation_Cast = new PrefabGUID(1580451102); public static readonly PrefabGUID AB_Interact_UseServantCoffinstation = new PrefabGUID(1436404278); public static readonly PrefabGUID AB_Interact_UseServantCoffinstation_Ability_Group = new PrefabGUID(1866448125); public static readonly PrefabGUID AB_Interact_UseServantCoffinstation_Cast = new PrefabGUID(-1901236946); public static readonly PrefabGUID AB_Interact_UseSpellSchoolPassiveStation = new PrefabGUID(42314700); public static readonly PrefabGUID AB_Interact_UseSpellSchoolPassiveStation_AbilityGroup = new PrefabGUID(2063732211); public static readonly PrefabGUID AB_Interact_UseSpellSchoolPassiveStation_Cast = new PrefabGUID(-49981718); public static readonly PrefabGUID AB_Interact_UseStables = new PrefabGUID(1726129309); public static readonly PrefabGUID AB_Interact_UseStables_AbilityGroup = new PrefabGUID(-1309114324); public static readonly PrefabGUID AB_Interact_UseStables_Cast = new PrefabGUID(-587833951); public static readonly PrefabGUID AB_Interact_UseUnitSpawnerstation = new PrefabGUID(-1535456867); public static readonly PrefabGUID AB_Interact_UseUnitSpawnerstation_Ability_Group = new PrefabGUID(-523365900); public static readonly PrefabGUID AB_Interact_UseUnitSpawnerstation_Cast = new PrefabGUID(1119412283); public static readonly PrefabGUID AB_Interact_UseWaypoint = new PrefabGUID(-986064531); public static readonly PrefabGUID AB_Interact_UseWaypoint_AbilityGroup = new PrefabGUID(893332545); public static readonly PrefabGUID AB_Interact_UseWaypoint_Blocked = new PrefabGUID(1189493948); public static readonly PrefabGUID AB_Interact_UseWaypoint_Blocked_AbilityGroup = new PrefabGUID(-1696712851); public static readonly PrefabGUID AB_Interact_UseWaypoint_Blocked_Cast = new PrefabGUID(98141265); public static readonly PrefabGUID AB_Interact_UseWaypoint_Cast = new PrefabGUID(-402025199); public static readonly PrefabGUID AB_Interact_UseWaypoint_Castle = new PrefabGUID(985937733); public static readonly PrefabGUID AB_Interact_UseWaypoint_Castle_AbilityGroup = new PrefabGUID(695067846); public static readonly PrefabGUID AB_Interact_UseWaypoint_Castle_Cast = new PrefabGUID(-1252882299); public static readonly PrefabGUID AB_Interact_UseWorkstation = new PrefabGUID(-1129881827); public static readonly PrefabGUID AB_Interact_UseWorkstation_AbilityGroup = new PrefabGUID(2038916168); public static readonly PrefabGUID AB_Interact_UseWorkstation_Cast = new PrefabGUID(434360908); public static readonly PrefabGUID AB_Interact_VampirePull_AbilityGroup = new PrefabGUID(4267150); public static readonly PrefabGUID AB_Interact_VampirePull_Cast = new PrefabGUID(288650884); public static readonly PrefabGUID AB_Interact_VampirePull_Owner_Buff = new PrefabGUID(-1390150901); public static readonly PrefabGUID AB_Interact_VampirePull_Target_Buff = new PrefabGUID(-1347981489); public static readonly PrefabGUID AB_Interact_WarpRift_AbilityGroup = new PrefabGUID(33571279); public static readonly PrefabGUID AB_Interact_WarpRift_Buff = new PrefabGUID(1461625260); public static readonly PrefabGUID AB_Interact_WarpRift_Cast = new PrefabGUID(2099141143); public static readonly PrefabGUID AB_Interact_WarpRift_EndGame_Exit_AbilityGroup = new PrefabGUID(-646168524); public static readonly PrefabGUID AB_Interact_WarpRift_EndGame_Exit_Buff = new PrefabGUID(-757873625); public static readonly PrefabGUID AB_Interact_WarpRift_EndGame_Exit_Cast = new PrefabGUID(-1947897481); public static readonly PrefabGUID AB_Interact_WarpRiftExit_AbilityGroup = new PrefabGUID(-1190925292); public static readonly PrefabGUID AB_Interact_WarpRiftExit_Buff = new PrefabGUID(-1096120792); public static readonly PrefabGUID AB_Interact_WarpRiftExit_Cast = new PrefabGUID(-238260988); public static readonly PrefabGUID AB_Interact_WaypointSpawn_Travel = new PrefabGUID(-66432447); public static readonly PrefabGUID AB_Interact_WaypointSpawn_Travel_Delay = new PrefabGUID(1521207380); public static readonly PrefabGUID AB_Interact_WoodenCoffinSpawn_Travel = new PrefabGUID(-1705977973); public static readonly PrefabGUID AB_Interact_WoodenCoffinSpawn_Travel_Delay = new PrefabGUID(-246207628); public static readonly PrefabGUID AB_InvisibilityAndImmaterial_Buff = new PrefabGUID(-1144825660); public static readonly PrefabGUID AB_IronGolem_FallAsleep_Buff_Cast = new PrefabGUID(-709834335); public static readonly PrefabGUID AB_IronGolem_FallAsleep_Buff_Group = new PrefabGUID(1510954952); public static readonly PrefabGUID AB_IronGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(261157859); public static readonly PrefabGUID AB_IronGolem_GroundSlam_AbilityGroup = new PrefabGUID(1749064378); public static readonly PrefabGUID AB_IronGolem_GroundSlam_Cast = new PrefabGUID(1053556192); public static readonly PrefabGUID AB_IronGolem_GroundSlam_DownedStun = new PrefabGUID(-638330945); public static readonly PrefabGUID AB_IronGolem_GroundSlam_Hit = new PrefabGUID(1137710018); public static readonly PrefabGUID AB_IronGolem_GroundSlam_LaunchBuff = new PrefabGUID(2066294579); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-2060534730); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Cast01 = new PrefabGUID(4483790); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Cast02 = new PrefabGUID(-517284371); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Hit01 = new PrefabGUID(1959059566); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Hit02 = new PrefabGUID(697854104); public static readonly PrefabGUID AB_IronGolem_RockSlam_AbilityGroup = new PrefabGUID(-1660458588); public static readonly PrefabGUID AB_IronGolem_RockSlam_Cast = new PrefabGUID(1987282896); public static readonly PrefabGUID AB_IronGolem_RockSlam_Projectile = new PrefabGUID(-2057416891); public static readonly PrefabGUID AB_Iva_Autofire_AbilityGroup = new PrefabGUID(-580940152); public static readonly PrefabGUID AB_Iva_Autofire_AggroBuff = new PrefabGUID(1713781158); public static readonly PrefabGUID AB_Iva_Autofire_Cast = new PrefabGUID(1954950048); public static readonly PrefabGUID AB_Iva_Autofire_Channel = new PrefabGUID(-1483089104); public static readonly PrefabGUID AB_Iva_Autofire_Projectile = new PrefabGUID(1641555845); public static readonly PrefabGUID AB_Iva_BallLightning_AbilityGroup = new PrefabGUID(870237772); public static readonly PrefabGUID AB_Iva_BallLightning_AreaImpact = new PrefabGUID(-682262393); public static readonly PrefabGUID AB_Iva_BallLightning_Cast = new PrefabGUID(1478041683); public static readonly PrefabGUID AB_Iva_BallLightning_HitBuff = new PrefabGUID(-1081333706); public static readonly PrefabGUID AB_Iva_BallLightning_HomingProjectile = new PrefabGUID(137592567); public static readonly PrefabGUID AB_Iva_BallLightning_Throw = new PrefabGUID(-973800311); public static readonly PrefabGUID AB_Iva_BallLightning_Trigger = new PrefabGUID(-1143637949); public static readonly PrefabGUID AB_Iva_BFG_Orb_AbilityGroup = new PrefabGUID(-786900742); public static readonly PrefabGUID AB_Iva_BFG_Orb_AreaImpact = new PrefabGUID(-277607253); public static readonly PrefabGUID AB_Iva_BFG_Orb_Cast = new PrefabGUID(-1630014884); public static readonly PrefabGUID AB_Iva_BFG_Orb_HitBuff = new PrefabGUID(1810543061); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile01 = new PrefabGUID(-734245337); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile02 = new PrefabGUID(1723625875); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile03 = new PrefabGUID(402723255); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile04 = new PrefabGUID(-336157222); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile05 = new PrefabGUID(1526471541); public static readonly PrefabGUID AB_Iva_BFG_Orb_Throw = new PrefabGUID(-1865739553); public static readonly PrefabGUID AB_Iva_BFG_Orb_Trigger = new PrefabGUID(-776487262); public static readonly PrefabGUID AB_Iva_BFGLightningFire_AbilityGroup = new PrefabGUID(1524772628); public static readonly PrefabGUID AB_Iva_BFGLightningFire_AggroBuff = new PrefabGUID(1981607554); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Cast = new PrefabGUID(1128127702); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Channel = new PrefabGUID(-405754773); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Projectile01 = new PrefabGUID(2037487373); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Projectile02 = new PrefabGUID(-1220995634); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_AbilityGroup = new PrefabGUID(-1715136284); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_AggroBuff = new PrefabGUID(591917862); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_Cast = new PrefabGUID(1411838706); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_HasteBuff = new PrefabGUID(-992946595); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_TargetedBuff = new PrefabGUID(1887608621); public static readonly PrefabGUID AB_Iva_BomberJetpack_Land_AbilityGroup = new PrefabGUID(-577179884); public static readonly PrefabGUID AB_Iva_BomberJetpack_Land_Cast = new PrefabGUID(771283414); public static readonly PrefabGUID AB_Iva_BomberJetpack_Land_Phase = new PrefabGUID(-503852392); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_AbilityGroup = new PrefabGUID(-1770586075); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_BombThrow = new PrefabGUID(-1645145758); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_Cast = new PrefabGUID(-1194965669); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_FlightBuff = new PrefabGUID(-149348905); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_MinionBuff = new PrefabGUID(1276542148); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_Phase = new PrefabGUID(-64994941); public static readonly PrefabGUID AB_Iva_Burn_AbilityGroup = new PrefabGUID(-247423777); public static readonly PrefabGUID AB_Iva_Burn_Cast = new PrefabGUID(-1036714450); public static readonly PrefabGUID AB_Iva_Burn_Channel = new PrefabGUID(1359707601); public static readonly PrefabGUID AB_Iva_Burn_HitBuff = new PrefabGUID(-2081372792); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_AbilityGroup = new PrefabGUID(1517447626); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_Cast = new PrefabGUID(-1526329231); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_EndBuff = new PrefabGUID(1242706173); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_HitBuff = new PrefabGUID(1986068722); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_Small_FireArea = new PrefabGUID(1580741463); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_Spinner = new PrefabGUID(-643666578); public static readonly PrefabGUID AB_Iva_JetDash_AbilityGroup = new PrefabGUID(-639593760); public static readonly PrefabGUID AB_Iva_JetDash_Cast = new PrefabGUID(-701697265); public static readonly PrefabGUID AB_Iva_JetDash_DashEnd = new PrefabGUID(-486321065); public static readonly PrefabGUID AB_Iva_JetDash_RelocateImpairBuff = new PrefabGUID(347954374); public static readonly PrefabGUID AB_Iva_JetDash_Travel = new PrefabGUID(346690109); public static readonly PrefabGUID AB_Iva_JetEscape_AbilityGroup = new PrefabGUID(-309871879); public static readonly PrefabGUID AB_Iva_JetEscape_Cast = new PrefabGUID(-568577001); public static readonly PrefabGUID AB_Iva_JetEscape_DashEnd = new PrefabGUID(-445395785); public static readonly PrefabGUID AB_Iva_JetEscape_Travel = new PrefabGUID(-1974015491); public static readonly PrefabGUID AB_Iva_ShotgunBlast_AbilityGroup = new PrefabGUID(1450987113); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Cast01 = new PrefabGUID(1311759468); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Cast02 = new PrefabGUID(-1677864); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Cast03 = new PrefabGUID(-1491962841); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Hit = new PrefabGUID(-1845842317); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Projectile = new PrefabGUID(506478410); public static readonly PrefabGUID AB_Iva_Tazer_AbilityGroup = new PrefabGUID(891644945); public static readonly PrefabGUID AB_Iva_Tazer_Cast = new PrefabGUID(-971002557); public static readonly PrefabGUID AB_Iva_Tazer_Projectile01 = new PrefabGUID(-1335472990); public static readonly PrefabGUID AB_Iva_Tazer_Projectile02 = new PrefabGUID(-221353825); public static readonly PrefabGUID AB_Iva_Tazer_SelfKnockback = new PrefabGUID(-814883978); public static readonly PrefabGUID AB_Iva_WeaponEquip_Base_AbilityGroup = new PrefabGUID(205884718); public static readonly PrefabGUID AB_Iva_WeaponEquip_Base_Cast = new PrefabGUID(1690912215); public static readonly PrefabGUID AB_Iva_WeaponEquip_BFG_AbilityGroup = new PrefabGUID(948730951); public static readonly PrefabGUID AB_Iva_WeaponEquip_BFG_Cast = new PrefabGUID(-654973710); public static readonly PrefabGUID AB_Iva_WeaponEquip_Flamer_AbilityGroup = new PrefabGUID(-2020699185); public static readonly PrefabGUID AB_Iva_WeaponEquip_Flamer_Cast = new PrefabGUID(1642953750); public static readonly PrefabGUID AB_Iva_WeaponEquip_Shotgun_AbilityGroup = new PrefabGUID(-420570478); public static readonly PrefabGUID AB_Iva_WeaponEquip_Shotgun_Cast = new PrefabGUID(-691142716); public static readonly PrefabGUID AB_Iva_WeaponEquip_Tazer_AbilityGroup = new PrefabGUID(-1409019914); public static readonly PrefabGUID AB_Iva_WeaponEquip_Tazer_Cast = new PrefabGUID(784056246); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Base_AbilityGroup = new PrefabGUID(980772169); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Base_PostCast = new PrefabGUID(1303684524); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_BFG_AbilityGroup = new PrefabGUID(2013545793); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_BFG_Cast = new PrefabGUID(-9583499); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_BFG_PostCast = new PrefabGUID(768371860); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Flamer_AbilityGroup = new PrefabGUID(49364370); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Flamer_Cast = new PrefabGUID(-586446924); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Flamer_PostCast = new PrefabGUID(444191812); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Shotgun_AbilityGroup = new PrefabGUID(-680856467); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Shotgun_Cast = new PrefabGUID(1609832009); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Shotgun_PostCast = new PrefabGUID(685090209); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Tazer_AbilityGroup = new PrefabGUID(1149489416); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Tazer_Cast = new PrefabGUID(-115460435); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Tazer_PostCast = new PrefabGUID(-900527911); public static readonly PrefabGUID AB_Knight_2H_AttackChain_AbilityGroup = new PrefabGUID(-557111974); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Down = new PrefabGUID(-1987021418); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Left = new PrefabGUID(337497895); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Right = new PrefabGUID(2080516440); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Up = new PrefabGUID(-1702216501); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Hit = new PrefabGUID(-1212196786); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Hit_Narrow = new PrefabGUID(-1605361666); public static readonly PrefabGUID AB_Knight_2H_BackRoll_AbilityGroup = new PrefabGUID(-1175617299); public static readonly PrefabGUID AB_Knight_2H_BackRoll_Cast = new PrefabGUID(1983526499); public static readonly PrefabGUID AB_Knight_2H_BasicAttack_AbilityGroup = new PrefabGUID(-1108325193); public static readonly PrefabGUID AB_Knight_2H_BasicAttack_Cast = new PrefabGUID(-475337423); public static readonly PrefabGUID AB_Knight_2H_BasicAttack_Hit = new PrefabGUID(-835020164); public static readonly PrefabGUID AB_Knight_2H_Charge_AbilityGroup = new PrefabGUID(-1462154593); public static readonly PrefabGUID AB_Knight_2H_Charge_Cast = new PrefabGUID(194178334); public static readonly PrefabGUID AB_Knight_2H_Charge_Dash = new PrefabGUID(-1341411385); public static readonly PrefabGUID AB_Knight_2H_Charge_DashEnd = new PrefabGUID(-386772603); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_AbilityGroup = new PrefabGUID(349423116); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_Accurate_AbilityGroup = new PrefabGUID(-1449279362); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_Accurate_Cast = new PrefabGUID(846574497); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_Cast = new PrefabGUID(842126825); public static readonly PrefabGUID AB_Knight_2H_OnAggro_AbilityGroup = new PrefabGUID(-1873002975); public static readonly PrefabGUID AB_Knight_2H_OnAggro_Cast = new PrefabGUID(-790816247); public static readonly PrefabGUID AB_Knight_2H_OnAggro_Group = new PrefabGUID(1124815062); public static readonly PrefabGUID AB_Knight_2H_SideStep_Left_AbilityGroup = new PrefabGUID(-2127256282); public static readonly PrefabGUID AB_Knight_2H_SideStep_Left_Cast = new PrefabGUID(1220962192); public static readonly PrefabGUID AB_Knight_2H_StepAttack_AbilityGroup = new PrefabGUID(-1330909978); public static readonly PrefabGUID AB_Knight_2H_StepAttack_Cast = new PrefabGUID(-916692099); public static readonly PrefabGUID AB_Knight_2H_StepAttack_Hit = new PrefabGUID(1950127942); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Cast01 = new PrefabGUID(-226963367); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Cast02 = new PrefabGUID(-927795851); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Group = new PrefabGUID(-1900214847); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Hit = new PrefabGUID(338618408); public static readonly PrefabGUID AB_Knight_Shield_ShieldAttack_Cast01 = new PrefabGUID(865933855); public static readonly PrefabGUID AB_Knight_Shield_ShieldAttack_Group = new PrefabGUID(-56422536); public static readonly PrefabGUID AB_Knight_Shield_ShieldAttack_Hit = new PrefabGUID(1986123263); public static readonly PrefabGUID AB_Knight_Shield_ShieldHeavyAttack_Cast01 = new PrefabGUID(771994741); public static readonly PrefabGUID AB_Knight_Shield_ShieldHeavyAttack_Group = new PrefabGUID(377144854); public static readonly PrefabGUID AB_Knight_Shield_ShieldHeavyAttack_Hit = new PrefabGUID(-2046773707); public static readonly PrefabGUID AB_KnightShield_DirectionalShield_AbilityGroup = new PrefabGUID(-386968650); public static readonly PrefabGUID AB_KnightShield_DirectionalShield_Buff = new PrefabGUID(-500398965); public static readonly PrefabGUID AB_KnightShield_DirectionalShield_Cast = new PrefabGUID(598798313); public static readonly PrefabGUID AB_KnightShield_OnAggro_AbilityGroup = new PrefabGUID(-1950156342); public static readonly PrefabGUID AB_KnightShield_OnAggro_Cast = new PrefabGUID(-1673875198); public static readonly PrefabGUID AB_KnightShield_SideStep_Back_AbilityGroup = new PrefabGUID(157070105); public static readonly PrefabGUID AB_KnightShield_SideStep_Back_Cast = new PrefabGUID(-1849130383); public static readonly PrefabGUID AB_KnightShield_SideStep_Left_AbilityGroup = new PrefabGUID(-2012449382); public static readonly PrefabGUID AB_KnightShield_SideStep_Left_Cast = new PrefabGUID(1459143672); public static readonly PrefabGUID AB_KnightShield_SideStep_Right_AbilityGroup = new PrefabGUID(1703351456); public static readonly PrefabGUID AB_KnightShield_SideStep_Right_Cast = new PrefabGUID(-219670953); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_AbilityGroup = new PrefabGUID(329043640); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Cast01 = new PrefabGUID(-1984309696); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Cast02 = new PrefabGUID(1946843120); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Cast03 = new PrefabGUID(-1515294055); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Hit01 = new PrefabGUID(-412076080); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Hit02 = new PrefabGUID(798041263); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrikeFollowUp_AbilityGroup = new PrefabGUID(2138222166); public static readonly PrefabGUID AB_Legion_Assassin_HeavyAttack_AbilityGroup = new PrefabGUID(-2049927912); public static readonly PrefabGUID AB_Legion_Assassin_HeavyAttack_Cast = new PrefabGUID(-903208525); public static readonly PrefabGUID AB_Legion_Assassin_HeavyAttack_Hit = new PrefabGUID(1562631558); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackward_AbilityGroup = new PrefabGUID(-1762655324); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackWard_Buff = new PrefabGUID(-332623450); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackward_Cast = new PrefabGUID(-2067118250); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackWard_Dash = new PrefabGUID(4813542); public static readonly PrefabGUID AB_Legion_Assassin_JumpForward_AbilityGroup = new PrefabGUID(-55735320); public static readonly PrefabGUID AB_Legion_Assassin_JumpForward_Dash = new PrefabGUID(212866404); public static readonly PrefabGUID AB_Legion_Assassin_Teleport_DurationBuff = new PrefabGUID(364379291); public static readonly PrefabGUID AB_Legion_Assassin_TeleportInit_AbilityGroup = new PrefabGUID(-1401138411); public static readonly PrefabGUID AB_Legion_Assassin_TeleportInit_Cast = new PrefabGUID(2003040289); public static readonly PrefabGUID AB_Legion_Assassin_TeleportLeft_AbilityGroup = new PrefabGUID(-53726244); public static readonly PrefabGUID AB_Legion_Assassin_TeleportLeft_Cast = new PrefabGUID(-151293675); public static readonly PrefabGUID AB_Legion_Assassin_TeleportLeft_Phase = new PrefabGUID(-1845717626); public static readonly PrefabGUID AB_Legion_Assassin_TeleportRight_AbilityGroup = new PrefabGUID(-294731102); public static readonly PrefabGUID AB_Legion_Assassin_TeleportRight_Cast = new PrefabGUID(-2008772874); public static readonly PrefabGUID AB_Legion_Assassin_TeleportRight_Phase = new PrefabGUID(-1879030997); public static readonly PrefabGUID AB_Legion_Assassin_Throw_AbilityGroup = new PrefabGUID(352570759); public static readonly PrefabGUID AB_Legion_Assassin_Throw_Cast = new PrefabGUID(663997624); public static readonly PrefabGUID AB_Legion_Assassin_Throw_Projectile = new PrefabGUID(1235292090); public static readonly PrefabGUID AB_Legion_Asssasin_JumpForward_Cast = new PrefabGUID(800554551); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_AbilityGroup = new PrefabGUID(-1717961213); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_Cast = new PrefabGUID(946480219); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_HomingProjectile = new PrefabGUID(618919317); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_Spawner = new PrefabGUID(-1721267843); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_AbilityGroup = new PrefabGUID(-347082762); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Area = new PrefabGUID(-708632203); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Cast = new PrefabGUID(-1442746874); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Debuff = new PrefabGUID(-155974681); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Projectile = new PrefabGUID(-394289116); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_AbilityGroup = new PrefabGUID(-915929892); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Cast01 = new PrefabGUID(1950660322); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Cast02 = new PrefabGUID(-2065391730); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Hit01 = new PrefabGUID(-1082969325); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Hit02 = new PrefabGUID(-1747652793); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_SlowOnHitBuff = new PrefabGUID(1736079539); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_AbilityGroup = new PrefabGUID(1741189817); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_AggroBuff = new PrefabGUID(-759178950); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_Cast = new PrefabGUID(1178515572); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_End = new PrefabGUID(-1856041720); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_Phase = new PrefabGUID(1419206335); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_RemoveTargetBuff_Buff = new PrefabGUID(1650190545); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_AbilityGroup = new PrefabGUID(701450949); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetbuff_AbilityGroup = new PrefabGUID(183752077); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetBuff_Area = new PrefabGUID(356894558); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetbuff_Buff = new PrefabGUID(144280740); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetbuff_Cast = new PrefabGUID(584203454); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_Cast = new PrefabGUID(-160268834); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_FakeProjectileRight = new PrefabGUID(310890332); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_FakeTarget = new PrefabGUID(-603059466); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Cast_Over = new PrefabGUID(1878915188); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Cast_Right = new PrefabGUID(-1771125415); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Down_Stun = new PrefabGUID(-1781199261); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Group = new PrefabGUID(-350642638); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Hit = new PrefabGUID(1237943156); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Hit_Narrow = new PrefabGUID(-789869076); public static readonly PrefabGUID AB_Legion_Guardian_Block_AbilityGroup = new PrefabGUID(-1794315213); public static readonly PrefabGUID AB_Legion_Guardian_Block_Area = new PrefabGUID(1420287648); public static readonly PrefabGUID AB_Legion_Guardian_Block_Buff = new PrefabGUID(-555399799); public static readonly PrefabGUID AB_Legion_Guardian_Block_Cast = new PrefabGUID(-895724561); public static readonly PrefabGUID AB_Legion_Guardian_BlockBuff_Buff = new PrefabGUID(-365991522); public static readonly PrefabGUID AB_Legion_Guardian_Charge_AbilityGroup = new PrefabGUID(-321918794); public static readonly PrefabGUID AB_Legion_Guardian_Charge_Cast = new PrefabGUID(1092576853); public static readonly PrefabGUID AB_Legion_Guardian_Charge_Dash = new PrefabGUID(760903377); public static readonly PrefabGUID AB_Legion_Guardian_Charge_PostDashBuff = new PrefabGUID(826269213); public static readonly PrefabGUID AB_Legion_Guardian_ChargeFollowUp_AbilityGroup = new PrefabGUID(-1989618782); public static readonly PrefabGUID AB_Legion_Guardian_ChargeFollowUp_Cast = new PrefabGUID(-635031955); public static readonly PrefabGUID AB_Legion_Guardian_ChargeFollowUp_Hit = new PrefabGUID(-184112023); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_AbilityGroup_01 = new PrefabGUID(-2042076580); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_AbilityGroup_02 = new PrefabGUID(-809908964); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Cast_01 = new PrefabGUID(606113171); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Cast_02 = new PrefabGUID(-1368838399); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Down_Stun = new PrefabGUID(1774931122); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Hit_01 = new PrefabGUID(-969363440); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Hit_02 = new PrefabGUID(1467787106); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_AbilityGroup = new PrefabGUID(-639471262); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_Cast = new PrefabGUID(934251909); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_Phase = new PrefabGUID(1399112719); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_PostWarpBuff = new PrefabGUID(874662882); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_AbilityGroup = new PrefabGUID(-2036638378); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_Cast = new PrefabGUID(-193071296); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_End = new PrefabGUID(1660955704); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_Phase = new PrefabGUID(202513681); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_AbilityGroup = new PrefabGUID(951198708); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_Cast = new PrefabGUID(-1862737063); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_FakeProjectileLeft = new PrefabGUID(836480447); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_FakeProjectileRight = new PrefabGUID(-1855067328); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_FakeTarget = new PrefabGUID(128231546); public static readonly PrefabGUID AB_Legion_Nightmaiden_JumpBackward_AbilityGroup = new PrefabGUID(-1262881470); public static readonly PrefabGUID AB_Legion_Nightmaiden_JumpBackward_Cast = new PrefabGUID(1339302981); public static readonly PrefabGUID AB_Legion_Nightmaiden_JumpBackWard_Dash = new PrefabGUID(1420846288); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_AbilityGroup = new PrefabGUID(-1498306516); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Cast = new PrefabGUID(-673637610); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_ChannelingBuff = new PrefabGUID(-1953209523); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_EndTargetBuff = new PrefabGUID(-613944680); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_AbilityGroup = new PrefabGUID(1941093851); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_Cast = new PrefabGUID(-1228698821); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_ChannelingBuff = new PrefabGUID(-56075190); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_EndTargetBuff = new PrefabGUID(2063053331); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_Projectile = new PrefabGUID(-822734490); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_Projectile_ChannelingBuff = new PrefabGUID(-1740357453); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_TargetBuff = new PrefabGUID(-1942510877); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_TargetBuff_Delay = new PrefabGUID(1575793893); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Projectile = new PrefabGUID(363718492); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Projectile_ChannelingBuff = new PrefabGUID(1168055351); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_RecastPrevention_Buff = new PrefabGUID(1190823686); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_TargetBuff = new PrefabGUID(-398835659); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_TargetBuff_Delay = new PrefabGUID(-1380922715); public static readonly PrefabGUID AB_Legion_NightMaiden_WhipTwirl_AbilityGroup = new PrefabGUID(-324538848); public static readonly PrefabGUID AB_Legion_NightMaiden_WhipTwirl_Cast = new PrefabGUID(1495658666); public static readonly PrefabGUID AB_Legion_NightMaiden_WhipTwirl_Hit = new PrefabGUID(790833499); public static readonly PrefabGUID AB_Legion_Nightmare_AbilityGroup = new PrefabGUID(-1526010521); public static readonly PrefabGUID AB_Legion_Nightmare_Cast1 = new PrefabGUID(478866250); public static readonly PrefabGUID AB_Legion_Nightmare_Cast2 = new PrefabGUID(-1360885648); public static readonly PrefabGUID AB_Legion_Nightmare_Hit = new PrefabGUID(2095363240); public static readonly PrefabGUID AB_Legion_Nightmare_Hit2 = new PrefabGUID(-188675893); public static readonly PrefabGUID AB_Legion_Nightmare_Taunt_AbilityGroup = new PrefabGUID(-740078985); public static readonly PrefabGUID AB_Legion_Nightmare_Taunt_Buff = new PrefabGUID(1363656805); public static readonly PrefabGUID AB_Legion_Nightmare_Taunt_Cast = new PrefabGUID(2104884190); public static readonly PrefabGUID AB_Legion_Shadowkin_MeleeAttack_AbilityGroup = new PrefabGUID(1617928948); public static readonly PrefabGUID AB_Legion_Shadowkin_MeleeAttack_Cast = new PrefabGUID(1097217187); public static readonly PrefabGUID AB_Legion_Shadowkin_MeleeAttack_Hit = new PrefabGUID(-1746160426); public static readonly PrefabGUID AB_Legion_Vargulf_Approach_AbilityGroup = new PrefabGUID(-968445725); public static readonly PrefabGUID AB_Legion_Vargulf_Approach_Buff = new PrefabGUID(-770340709); public static readonly PrefabGUID AB_Legion_Vargulf_Approach_Cast = new PrefabGUID(1670924570); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_AbilityGroup = new PrefabGUID(-634705694); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_AbilityGroup_Lesser = new PrefabGUID(1131137826); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Cast = new PrefabGUID(903569133); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Cast_Lesser = new PrefabGUID(-494560823); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_ChannelBuff = new PrefabGUID(-1413844406); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_ChannelBuff_Lesser = new PrefabGUID(-1568733509); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Phase = new PrefabGUID(776801430); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Phase_Lesser = new PrefabGUID(-1015417297); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostAttackBuff = new PrefabGUID(-1424814067); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostAttackBuff_Lesser = new PrefabGUID(1732150765); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostChannelBuff = new PrefabGUID(1370350247); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostChannelBuff_Lesser = new PrefabGUID(1371733748); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_StunBuff = new PrefabGUID(1596283104); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_StunBuff_Lesser = new PrefabGUID(1772748887); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_AbilityGroup = new PrefabGUID(86533405); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_AbilityGroup_Followup = new PrefabGUID(-1915922151); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_AggroBuff = new PrefabGUID(267863357); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_Cast = new PrefabGUID(1993389565); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_DisableRelocate = new PrefabGUID(-882658420); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_FakeProjectileLeft = new PrefabGUID(178669065); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_FakeProjectileRight = new PrefabGUID(-1228913539); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_FakeTarget = new PrefabGUID(-1822958543); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_AbilityGroup = new PrefabGUID(-1229087512); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_Cast = new PrefabGUID(1752934321); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_End = new PrefabGUID(1494605172); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_Phase = new PrefabGUID(1613900293); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_AbilityGroup = new PrefabGUID(1166812757); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_Cast = new PrefabGUID(1547930915); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_End = new PrefabGUID(1403070340); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_Phase = new PrefabGUID(799090530); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_AbilityGroup = new PrefabGUID(523087989); public static readonly PrefabGUID AB_Legion_vargulf_SlicingArm_ApproachBuff = new PrefabGUID(300462306); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_BleedBuff = new PrefabGUID(1581496399); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_Cast01 = new PrefabGUID(344646534); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_Cast02 = new PrefabGUID(1434709206); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_Hit = new PrefabGUID(-43822092); public static readonly PrefabGUID AB_LegionVargulf_MaulSetup_PostTravelBuff = new PrefabGUID(1587121585); public static readonly PrefabGUID AB_LightningStorm_Debug_Cast = new PrefabGUID(1607776143); public static readonly PrefabGUID AB_LightningStorm_Debug_Group = new PrefabGUID(646443134); public static readonly PrefabGUID AB_LightningStorm_Throw = new PrefabGUID(2066163170); public static readonly PrefabGUID AB_LightningStorm_Throw_Big = new PrefabGUID(-811096034); public static readonly PrefabGUID AB_LightningStorm_Throw_RodConsume = new PrefabGUID(-856735567); public static readonly PrefabGUID AB_LightningStorm_Throw_RodConsume_SpiderTank = new PrefabGUID(-1770079230); public static readonly PrefabGUID AB_LightningStorm_Throw_Spawner = new PrefabGUID(1542291148); public static readonly PrefabGUID AB_LightningStrike = new PrefabGUID(2061937604); public static readonly PrefabGUID AB_LightningStrike_LightMood_Buff = new PrefabGUID(1317604597); public static readonly PrefabGUID AB_LightningStrike_LightMoodTrigger = new PrefabGUID(-268718160); public static readonly PrefabGUID AB_LightningStrike_RodHit_AreaTrigger = new PrefabGUID(1341705512); public static readonly PrefabGUID AB_LightningStrike_RodHit_EmpowerTankBuff = new PrefabGUID(946767917); public static readonly PrefabGUID AB_LightningStrike_RodHit_StrikeAntipBuff = new PrefabGUID(1817037486); public static readonly PrefabGUID AB_LightningStrike_RodHit_WasHitBuff = new PrefabGUID(-1130377813); public static readonly PrefabGUID AB_Lightweaver_HolyBolt_AbilityGroup = new PrefabGUID(1761660947); public static readonly PrefabGUID AB_Lightweaver_HolyBolt_Cast = new PrefabGUID(-1585538060); public static readonly PrefabGUID AB_Lightweaver_HolyBolt_Projectile = new PrefabGUID(866128446); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_AbilityGroup = new PrefabGUID(-839571202); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_Cast = new PrefabGUID(-10388420); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_Projectile = new PrefabGUID(-774293391); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_Spinner = new PrefabGUID(-1719179243); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_AbilityGroup = new PrefabGUID(1876841142); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_Cast = new PrefabGUID(-240143955); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_Throw = new PrefabGUID(-1776684593); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_Trigger = new PrefabGUID(-126683236); public static readonly PrefabGUID AB_Lightweaver_Teleport_DurationBuff = new PrefabGUID(-239009375); public static readonly PrefabGUID AB_Lightweaver_TeleportInit_AbilityGroup = new PrefabGUID(-284360089); public static readonly PrefabGUID AB_Lightweaver_TeleportInit_Cast = new PrefabGUID(1220839396); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_AbilityGroup = new PrefabGUID(1891756809); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_Cast = new PrefabGUID(610437727); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_EndPhase = new PrefabGUID(-1509082012); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_Phase = new PrefabGUID(1215686150); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_AbilityGroup = new PrefabGUID(-281576382); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_Cast = new PrefabGUID(-884141479); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_EndPhase = new PrefabGUID(2128353737); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_Phase = new PrefabGUID(-185954772); public static readonly PrefabGUID AB_Longbow_MultiShot_AbilityGroup = new PrefabGUID(-1142698587); public static readonly PrefabGUID AB_Longbow_MultiShot_Arc = new PrefabGUID(-405585506); public static readonly PrefabGUID AB_Longbow_MultiShot_Cast = new PrefabGUID(243674495); public static readonly PrefabGUID AB_Longbow_MultiShot_DummyAimpreview = new PrefabGUID(545642034); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff = new PrefabGUID(384972514); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff_Focus01 = new PrefabGUID(-1676260710); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff_Focus02 = new PrefabGUID(-1269924820); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff_Focus03 = new PrefabGUID(2077738201); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile = new PrefabGUID(-2020696846); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile_Focus01 = new PrefabGUID(833584871); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile_Focus02 = new PrefabGUID(-553762142); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile_Focus03 = new PrefabGUID(-1360993098); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_AbilityGroup = new PrefabGUID(-1617880256); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Buff = new PrefabGUID(-775728558); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Cast = new PrefabGUID(-1685283682); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_ContinousArea = new PrefabGUID(-992342367); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_PostChannelBuff = new PrefabGUID(1951058273); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_SetupBuff = new PrefabGUID(1573313696); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Throw = new PrefabGUID(-2126397104); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Trigger = new PrefabGUID(-512906087); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_AbilityGroup = new PrefabGUID(550876706); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_Cast = new PrefabGUID(-1217377991); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_Trigger = new PrefabGUID(761541083); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_TriggerBuff = new PrefabGUID(-793409093); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_WalkToPosBuff = new PrefabGUID(-1650287115); public static readonly PrefabGUID AB_Lucie_Barrier_AbilityGroup = new PrefabGUID(1628835400); public static readonly PrefabGUID AB_Lucie_Barrier_Buff = new PrefabGUID(-412969916); public static readonly PrefabGUID AB_Lucie_Barrier_Cast = new PrefabGUID(-1402082130); public static readonly PrefabGUID AB_Lucie_Barrier_HasHadBarrier = new PrefabGUID(1962565411); public static readonly PrefabGUID AB_Lucie_ClarityPotion_AbilityGroup = new PrefabGUID(1310557060); public static readonly PrefabGUID AB_Lucie_ClarityPotion_Cast = new PrefabGUID(1930880741); public static readonly PrefabGUID AB_Lucie_ClarityPotion_Throw = new PrefabGUID(2084005838); public static readonly PrefabGUID AB_Lucie_CripplingGoo_AbilityGroup = new PrefabGUID(1501543883); public static readonly PrefabGUID AB_Lucie_CripplingGoo_Area = new PrefabGUID(520427449); public static readonly PrefabGUID AB_Lucie_CripplingGoo_Cast = new PrefabGUID(-102572711); public static readonly PrefabGUID AB_Lucie_CripplingGoo_LineupBuff = new PrefabGUID(-938225396); public static readonly PrefabGUID AB_Lucie_CripplingGoo_PoisonDebuff = new PrefabGUID(1382025211); public static readonly PrefabGUID AB_Lucie_CripplingGoo_Throw = new PrefabGUID(2132566996); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_AbilityGroup = new PrefabGUID(973975627); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_AreaImpact = new PrefabGUID(1070313123); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_Buff = new PrefabGUID(1950409780); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_Cast = new PrefabGUID(-569744009); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_Projectile = new PrefabGUID(-659405741); public static readonly PrefabGUID AB_Lucie_DeAggroGolems_Buff = new PrefabGUID(606249494); public static readonly PrefabGUID AB_Lucie_DeAggroGolems_Trigger = new PrefabGUID(203592090); public static readonly PrefabGUID AB_Lucie_HealingBrew_AbilityGroup = new PrefabGUID(466462408); public static readonly PrefabGUID AB_Lucie_HealingBrew_Buff = new PrefabGUID(44786898); public static readonly PrefabGUID AB_Lucie_HealingBrew_Cast = new PrefabGUID(31591934); public static readonly PrefabGUID AB_Lucie_HealingBrew_ClaritySelfThrow = new PrefabGUID(684598909); public static readonly PrefabGUID AB_Lucie_HealingBrew_HasHadHealing = new PrefabGUID(2023257617); public static readonly PrefabGUID AB_Lucie_LiquidFire_AbilityGroup = new PrefabGUID(846507754); public static readonly PrefabGUID AB_Lucie_LiquidFire_Cast = new PrefabGUID(-405141432); public static readonly PrefabGUID AB_Lucie_LiquidFire_Throw = new PrefabGUID(1467836221); public static readonly PrefabGUID AB_Lucie_PanicShot_AbilityGroup = new PrefabGUID(2041625587); public static readonly PrefabGUID AB_Lucie_PanicShot_Buff = new PrefabGUID(677638731); public static readonly PrefabGUID AB_Lucie_PanicShot_Cast = new PrefabGUID(-1416803366); public static readonly PrefabGUID AB_Lucie_PanicShot_Projectile = new PrefabGUID(1052579549); public static readonly PrefabGUID AB_Lucie_PickUpPotion_HasHadBarrier = new PrefabGUID(914424936); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_AbilityGroup = new PrefabGUID(505640659); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_Cast = new PrefabGUID(1258576628); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_PotionPickBuff = new PrefabGUID(-1623929928); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_Trigger = new PrefabGUID(1301458752); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_AbilityGroup = new PrefabGUID(385165207); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_Cast = new PrefabGUID(-1458752682); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_TargetedPotionBuff = new PrefabGUID(1931278377); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_WalkToPosBuff = new PrefabGUID(-1341107993); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_HoldingBuff = new PrefabGUID(914569852); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-2147238865); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Interact_Pickup_Cast = new PrefabGUID(-528603798); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Interact_Pickup_Trigger = new PrefabGUID(-213168325); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Resource_Drop = new PrefabGUID(1003758020); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Resource_Throw = new PrefabGUID(778857257); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_HoldingBuff = new PrefabGUID(1909143965); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-1858007153); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Interact_Pickup_Cast = new PrefabGUID(-1176748285); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Interact_Pickup_Trigger = new PrefabGUID(601684430); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Resource_Drop = new PrefabGUID(-1806255555); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Resource_Throw = new PrefabGUID(1845884699); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_HoldingBuff = new PrefabGUID(-377632550); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-700139030); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Interact_Pickup_Cast = new PrefabGUID(-625108783); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Interact_Pickup_Trigger = new PrefabGUID(831996130); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Resource_Drop = new PrefabGUID(103203334); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Resource_Throw = new PrefabGUID(-1711132237); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_HoldingBuff = new PrefabGUID(-543993484); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(1328627408); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Interact_Pickup_Cast = new PrefabGUID(696233917); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Interact_Pickup_Trigger = new PrefabGUID(1701500093); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Resource_Drop = new PrefabGUID(1138129197); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Resource_Throw = new PrefabGUID(1881468430); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_HoldingBuff = new PrefabGUID(-2071478868); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Interact_Pickup_AbilityGroup = new PrefabGUID(1524554505); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Interact_Pickup_Cast = new PrefabGUID(-1314809742); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Interact_Pickup_Trigger = new PrefabGUID(1224643252); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Resource_Drop = new PrefabGUID(-304560288); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Resource_Throw = new PrefabGUID(-1963588609); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_HoldingBuff = new PrefabGUID(759716563); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-964075599); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Interact_Pickup_Cast = new PrefabGUID(1430939024); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Interact_Pickup_Trigger = new PrefabGUID(-826541903); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Resource_Drop = new PrefabGUID(-1423960159); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Resource_Throw = new PrefabGUID(-1960893454); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_AbilityGroup = new PrefabGUID(2026199659); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_Cast = new PrefabGUID(-1648425136); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_FakeBuff = new PrefabGUID(187534835); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_Trigger = new PrefabGUID(-125440500); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drop_AbilityGroup = new PrefabGUID(-1427506356); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drop_Cast = new PrefabGUID(1859311958); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drop_Trigger = new PrefabGUID(176807893); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Throw_AbilityGroup = new PrefabGUID(-933544131); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Throw_Cast = new PrefabGUID(-121556512); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Throw_Throw = new PrefabGUID(-1323531014); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_AbilityGroup = new PrefabGUID(-984481115); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_Cast = new PrefabGUID(632343334); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_FirebreathBuff = new PrefabGUID(327089035); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_FirebreathHitBuff = new PrefabGUID(-1831964076); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_LuciePickupBuff = new PrefabGUID(394947550); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_Trigger = new PrefabGUID(-1044358838); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drop_AbilityGroup = new PrefabGUID(992060171); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drop_Cast = new PrefabGUID(342475970); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drop_Trigger = new PrefabGUID(1332080011); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Throw_AbilityGroup = new PrefabGUID(1738354598); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Throw_Cast = new PrefabGUID(-154512499); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Throw_Throw = new PrefabGUID(2017446928); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Buff = new PrefabGUID(-288972673); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drink_AbilityGroup = new PrefabGUID(1340177024); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drink_Cast = new PrefabGUID(-1459367067); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drink_Trigger = new PrefabGUID(-625395605); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drop_AbilityGroup = new PrefabGUID(1404029255); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drop_Cast = new PrefabGUID(-29556058); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drop_Trigger = new PrefabGUID(-1625118396); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Throw_AbilityGroup = new PrefabGUID(362512593); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Throw_Cast = new PrefabGUID(705919193); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Throw_Throw = new PrefabGUID(-193907308); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drink_AbilityGroup = new PrefabGUID(2102890955); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drink_Cast = new PrefabGUID(923750600); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drink_Trigger = new PrefabGUID(1454516142); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drop_AbilityGroup = new PrefabGUID(1834131915); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drop_Cast = new PrefabGUID(2102576864); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drop_Trigger = new PrefabGUID(562974809); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_SheepTransformation_Buff = new PrefabGUID(-75884418); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Throw_AbilityGroup = new PrefabGUID(211300082); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Throw_Cast = new PrefabGUID(580099485); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Throw_Throw = new PrefabGUID(821912439); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drink_AbilityGroup = new PrefabGUID(1808221013); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drink_Cast = new PrefabGUID(300404340); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drink_Trigger = new PrefabGUID(1424289041); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drop_AbilityGroup = new PrefabGUID(1492189086); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drop_Cast = new PrefabGUID(744934761); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drop_Trigger = new PrefabGUID(1502299668); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Throw_AbilityGroup = new PrefabGUID(1364843731); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Throw_Cast = new PrefabGUID(-1303175575); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Throw_Throw = new PrefabGUID(-1042223724); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Buff = new PrefabGUID(-171678968); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drink_AbilityGroup = new PrefabGUID(-425763347); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drink_Cast = new PrefabGUID(-1353806122); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drink_Trigger = new PrefabGUID(1259161849); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drop_AbilityGroup = new PrefabGUID(1225529685); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drop_Cast = new PrefabGUID(-844049671); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drop_Trigger = new PrefabGUID(-389633741); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Throw_AbilityGroup = new PrefabGUID(-1111373807); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Throw_Cast = new PrefabGUID(-939476628); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Throw_Throw = new PrefabGUID(1770741063); public static readonly PrefabGUID AB_Lucie_Roll_AbilityGroup = new PrefabGUID(-1358113706); public static readonly PrefabGUID AB_Lucie_Roll_CastAndDash = new PrefabGUID(-186119488); public static readonly PrefabGUID AB_Lucie_Roll_CircleBuff = new PrefabGUID(-172961156); public static readonly PrefabGUID AB_Lucie_Roll_ImmaterialBuff = new PrefabGUID(1947116110); public static readonly PrefabGUID AB_Lucie_ToxinBolt_AbilityGroup = new PrefabGUID(2053056011); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Cast01 = new PrefabGUID(-1128026615); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Cast02 = new PrefabGUID(2013892985); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Cast03 = new PrefabGUID(1760199795); public static readonly PrefabGUID AB_Lucie_ToxinBolt_ForceRotationBuff = new PrefabGUID(388301129); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Projectile = new PrefabGUID(1137534512); public static readonly PrefabGUID AB_Lucie_ToxinBolt_ToxinDebuff = new PrefabGUID(-1470336876); public static readonly PrefabGUID AB_Lucie_WakeGolemPotion_AbilityGroup = new PrefabGUID(-2029137394); public static readonly PrefabGUID AB_Lucie_WakeGolemPotion_Cast = new PrefabGUID(-763589431); public static readonly PrefabGUID AB_Lucie_WakeGolemPotion_Throw = new PrefabGUID(1473384236); public static readonly PrefabGUID AB_Manticore_Airborne_Flying_Constant_Buff = new PrefabGUID(1172079590); public static readonly PrefabGUID AB_Manticore_Airborne_FlyStart_Travel = new PrefabGUID(-524144009); public static readonly PrefabGUID AB_Manticore_AirDash_AbilityGroup = new PrefabGUID(-500071289); public static readonly PrefabGUID AB_Manticore_AirDash_Cast = new PrefabGUID(-201518951); public static readonly PrefabGUID AB_Manticore_AirDash_Phase = new PrefabGUID(1898640998); public static readonly PrefabGUID AB_Manticore_AirDash_TargetBuff = new PrefabGUID(-1509249975); public static readonly PrefabGUID AB_Manticore_AirDash_Throw = new PrefabGUID(-122135712); public static readonly PrefabGUID AB_Manticore_AirDash_Throw_MinionSpawn = new PrefabGUID(1824438548); public static readonly PrefabGUID AB_Manticore_AirDash_ThrowShort = new PrefabGUID(359348925); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_AbilityGroup = new PrefabGUID(995945059); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Area = new PrefabGUID(2041479464); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Cast = new PrefabGUID(-329399189); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Throw = new PrefabGUID(1962964961); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Travel = new PrefabGUID(-1964156654); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Travel_End = new PrefabGUID(-288339443); public static readonly PrefabGUID AB_Manticore_ChaosBreath_AbilityGroup = new PrefabGUID(-627924949); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Cast = new PrefabGUID(641703489); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile = new PrefabGUID(2117195064); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile_Fast = new PrefabGUID(856076233); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile_Slow = new PrefabGUID(-1758744546); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile_VerySlow = new PrefabGUID(-178370194); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Trigger = new PrefabGUID(-1676882162); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Trigger2 = new PrefabGUID(1534857464); public static readonly PrefabGUID AB_Manticore_Dash_AbilityGroup = new PrefabGUID(-298983941); public static readonly PrefabGUID AB_Manticore_Dash_Cast = new PrefabGUID(1317217367); public static readonly PrefabGUID AB_Manticore_Dash_Downed = new PrefabGUID(146753505); public static readonly PrefabGUID AB_Manticore_Dash_EndHit = new PrefabGUID(-1004524642); public static readonly PrefabGUID AB_Manticore_Dash_Hard_AbilityGroup = new PrefabGUID(475860611); public static readonly PrefabGUID AB_Manticore_Dash_Hard_Cast = new PrefabGUID(2003309778); public static readonly PrefabGUID AB_Manticore_Dash_Hard_Phase = new PrefabGUID(-719719865); public static readonly PrefabGUID AB_Manticore_Dash_LaunchBuff = new PrefabGUID(-351105234); public static readonly PrefabGUID AB_Manticore_Dash_Phase = new PrefabGUID(-1073617148); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Left = new PrefabGUID(-2438572); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Left_Hard01 = new PrefabGUID(768622871); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Left_Hard02 = new PrefabGUID(-296961065); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Right = new PrefabGUID(154871943); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Right_Hard01 = new PrefabGUID(68662110); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Right_Hard02 = new PrefabGUID(1101708146); public static readonly PrefabGUID AB_Manticore_Flame_Area = new PrefabGUID(1591419332); public static readonly PrefabGUID AB_Manticore_Flame_Chaos_Burn_LongDebuff = new PrefabGUID(1670636401); public static readonly PrefabGUID AB_Manticore_Flame_TickDebuff = new PrefabGUID(331923109); public static readonly PrefabGUID AB_Manticore_Flame_TickDebuff_Short = new PrefabGUID(471802749); public static readonly PrefabGUID AB_Manticore_Flame_Trail = new PrefabGUID(-1387213511); public static readonly PrefabGUID AB_Manticore_FlyEnd_AbilityGroup = new PrefabGUID(-808215778); public static readonly PrefabGUID AB_Manticore_FlyEnd_Cast = new PrefabGUID(-1619580627); public static readonly PrefabGUID AB_Manticore_FlyEnd_Travel = new PrefabGUID(-438604069); public static readonly PrefabGUID AB_Manticore_FlyEnd_Travel_End = new PrefabGUID(1058963566); public static readonly PrefabGUID AB_Manticore_Flying_Buff = new PrefabGUID(-2115732274); public static readonly PrefabGUID AB_Manticore_FlyStart_AbilityGroup = new PrefabGUID(-722759857); public static readonly PrefabGUID AB_Manticore_FlyStart_Cast = new PrefabGUID(146602331); public static readonly PrefabGUID AB_Manticore_FlyStart_Travel = new PrefabGUID(-539363055); public static readonly PrefabGUID AB_Manticore_FountainOfChaos_Trigger = new PrefabGUID(-1977404982); public static readonly PrefabGUID AB_Manticore_Frost_AoE = new PrefabGUID(-1545399653); public static readonly PrefabGUID AB_Manticore_Frost_Debuff = new PrefabGUID(-1095284737); public static readonly PrefabGUID AB_Manticore_Frost_Projectile = new PrefabGUID(-755044132); public static readonly PrefabGUID AB_Manticore_Frost_Projectile_Splinter = new PrefabGUID(-440387091); public static readonly PrefabGUID AB_Manticore_Frost_Projectile_Splinter_TailSwipe = new PrefabGUID(-374897348); public static readonly PrefabGUID AB_Manticore_Frost_Projectile_Splinter02 = new PrefabGUID(-395784621); public static readonly PrefabGUID AB_Manticore_FrostBreath_AbilityGroup = new PrefabGUID(486569900); public static readonly PrefabGUID AB_Manticore_FrostBreath_Cast = new PrefabGUID(122788250); public static readonly PrefabGUID AB_Manticore_FrostBreath_Channel = new PrefabGUID(-130742522); public static readonly PrefabGUID AB_Manticore_FrostBreath_HitBuff = new PrefabGUID(723871450); public static readonly PrefabGUID AB_Manticore_FrostBreath_PostCast = new PrefabGUID(-2058375136); public static readonly PrefabGUID AB_Manticore_FrostVortex_AbilityGroup = new PrefabGUID(1686895005); public static readonly PrefabGUID AB_Manticore_FrostVortex_Area = new PrefabGUID(-1175926883); public static readonly PrefabGUID AB_Manticore_FrostVortex_Buff = new PrefabGUID(-1067106579); public static readonly PrefabGUID AB_Manticore_FrostVortex_Cast = new PrefabGUID(-629212698); public static readonly PrefabGUID AB_Manticore_FrostVortex_Delayed = new PrefabGUID(-1713521815); public static readonly PrefabGUID AB_Manticore_FrostVortex_Throw = new PrefabGUID(1875745365); public static readonly PrefabGUID AB_Manticore_FrostVortex_TriggerCluster = new PrefabGUID(-800152091); public static readonly PrefabGUID AB_Manticore_GoHome_Travel = new PrefabGUID(-1806629211); public static readonly PrefabGUID AB_Manticore_Home_Buff = new PrefabGUID(-1422781175); public static readonly PrefabGUID AB_Manticore_HomePosSpawn = new PrefabGUID(-454707912); public static readonly PrefabGUID AB_Manticore_JumpBack_AbilityGroup = new PrefabGUID(1690919489); public static readonly PrefabGUID AB_Manticore_JumpBack_Cast = new PrefabGUID(1716315280); public static readonly PrefabGUID AB_Manticore_Stagger_AbilityGroup = new PrefabGUID(1806701827); public static readonly PrefabGUID AB_Manticore_Stagger_Cast = new PrefabGUID(-95408249); public static readonly PrefabGUID AB_Manticore_TailSpin_AbilityGroup = new PrefabGUID(2115527946); public static readonly PrefabGUID AB_Manticore_TailSpin_Cast = new PrefabGUID(-1489826027); public static readonly PrefabGUID AB_Manticore_TailSpin_MeleeHit = new PrefabGUID(-1078078391); public static readonly PrefabGUID AB_Manticore_TailSpin_ProjectileSpawner = new PrefabGUID(-1457015851); public static readonly PrefabGUID AB_Manticore_TailStrike_AbilityGroup = new PrefabGUID(-1744671763); public static readonly PrefabGUID AB_Manticore_TailStrike_Cast = new PrefabGUID(-1269021822); public static readonly PrefabGUID AB_Manticore_TailStrike_MeleeHit = new PrefabGUID(77443250); public static readonly PrefabGUID AB_Manticore_TailStrike_ProjectileSpawner = new PrefabGUID(691897112); public static readonly PrefabGUID AB_Manticore_TargetSwitch_AbilityGroup = new PrefabGUID(1254689969); public static readonly PrefabGUID AB_Manticore_TargetSwitch_AggroBuff = new PrefabGUID(-1530493963); public static readonly PrefabGUID AB_Manticore_TargetSwitch_Cast = new PrefabGUID(-1466413942); public static readonly PrefabGUID AB_Manticore_Turn180Left_AbilityGroup = new PrefabGUID(-1547108554); public static readonly PrefabGUID AB_Manticore_Turn180Left_Cast = new PrefabGUID(1401891474); public static readonly PrefabGUID AB_Manticore_Turn180Left_MeleeHit = new PrefabGUID(-1568678759); public static readonly PrefabGUID AB_Manticore_Turn180Left_ProjectileSpawner = new PrefabGUID(-1682766144); public static readonly PrefabGUID AB_Manticore_Turn180Right_AbilityGroup = new PrefabGUID(1373056433); public static readonly PrefabGUID AB_Manticore_Turn180Right_Cast = new PrefabGUID(-604324214); public static readonly PrefabGUID AB_Manticore_Turn180Right_MeleeHit = new PrefabGUID(945519225); public static readonly PrefabGUID AB_Manticore_Turn180Right_ProjectileSpawner = new PrefabGUID(-398274046); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_AbilityGroup = new PrefabGUID(45443379); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_Cast = new PrefabGUID(1366892358); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_MeleeHit = new PrefabGUID(84210889); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_ProjectileSpawner = new PrefabGUID(1757976740); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_AbilityGroup = new PrefabGUID(1625958933); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_Cast = new PrefabGUID(1573039480); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_MeleeHit = new PrefabGUID(751756165); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_ProjectileSpawner = new PrefabGUID(603993577); public static readonly PrefabGUID AB_Manticore_WingStorm_AbilityGroup = new PrefabGUID(-418737686); public static readonly PrefabGUID AB_Manticore_WingStorm_Cast = new PrefabGUID(1353691548); public static readonly PrefabGUID AB_Manticore_WingStorm_Channel = new PrefabGUID(-1855133289); public static readonly PrefabGUID AB_Manticore_WingStorm_Hit = new PrefabGUID(-1069525126); public static readonly PrefabGUID AB_Manticore_WingStorm_Projectile = new PrefabGUID(-510016994); public static readonly PrefabGUID AB_Manticore_WingStorm_TriggerLeft = new PrefabGUID(-27093903); public static readonly PrefabGUID AB_Manticore_WingStorm_TriggerRight = new PrefabGUID(1782002185); public static readonly PrefabGUID AB_ManTrap_Corrupted_MeleeAttack_AbilityGroup = new PrefabGUID(998806487); public static readonly PrefabGUID AB_ManTrap_Corrupted_MeleeAttack_Cast = new PrefabGUID(1486889239); public static readonly PrefabGUID AB_ManTrap_Corrupted_MeleeAttack_Hit = new PrefabGUID(-907924028); public static readonly PrefabGUID AB_ManTrap_Corrupted_Projectile_AbilityGroup = new PrefabGUID(544237275); public static readonly PrefabGUID AB_ManTrap_Corrupted_Projectile_Cast = new PrefabGUID(1185001957); public static readonly PrefabGUID AB_ManTrap_Corrupted_Projectile_Projectile = new PrefabGUID(674299738); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_AbilityGroup = new PrefabGUID(1026449575); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_Cast = new PrefabGUID(1994684330); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_SpawnBuff = new PrefabGUID(1268530841); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_Summon01 = new PrefabGUID(1490149155); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_Summon02 = new PrefabGUID(910313018); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_AbilityGroup = new PrefabGUID(1033948100); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_Cast01 = new PrefabGUID(-962223769); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_Cast02 = new PrefabGUID(-1843338005); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_Cast03 = new PrefabGUID(172749816); public static readonly PrefabGUID AB_ManTrap_Dull_MeleeAttack_Cast = new PrefabGUID(-2139239977); public static readonly PrefabGUID AB_ManTrap_Dull_MeleeAttack_Group = new PrefabGUID(105274396); public static readonly PrefabGUID AB_Mantrap_Immaterial_Buff = new PrefabGUID(-1702571933); public static readonly PrefabGUID AB_Mantrap_InCombat_Buff = new PrefabGUID(1981009430); public static readonly PrefabGUID AB_ManTrap_MeleeAttack_Cast = new PrefabGUID(-874474293); public static readonly PrefabGUID AB_ManTrap_MeleeAttack_Group = new PrefabGUID(1238529741); public static readonly PrefabGUID AB_ManTrap_MeleeAttack_Hit = new PrefabGUID(1815258946); public static readonly PrefabGUID AB_Mantrap_Poison_Debuff = new PrefabGUID(830003240); public static readonly PrefabGUID AB_ManTrap_Projectile = new PrefabGUID(1707381891); public static readonly PrefabGUID AB_ManTrap_Projectile_Cast = new PrefabGUID(-1638198301); public static readonly PrefabGUID AB_ManTrap_Projectile_Group = new PrefabGUID(780372716); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Cast01 = new PrefabGUID(-1636729042); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Cast02 = new PrefabGUID(631192081); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Cast03 = new PrefabGUID(-1650372909); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Group = new PrefabGUID(-359326766); public static readonly PrefabGUID AB_Mantrap_Wakeup_Buff = new PrefabGUID(1972665713); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_MeleeAttack_AbilityGroup = new PrefabGUID(-267258900); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_MeleeAttack_Cast = new PrefabGUID(-1404773805); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_MeleeAttack_Hit = new PrefabGUID(-1730474619); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_Projectile_AbilityGroup = new PrefabGUID(-581209791); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_Projectile_Cast = new PrefabGUID(725994358); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_Projectile_Projectile = new PrefabGUID(-1396928276); public static readonly PrefabGUID AB_Matriarch_AoE_AbilityGroup = new PrefabGUID(-424388071); public static readonly PrefabGUID AB_Matriarch_AoE_Buff = new PrefabGUID(1251215494); public static readonly PrefabGUID AB_Matriarch_AoE_Cast = new PrefabGUID(1670605272); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Main01 = new PrefabGUID(838371191); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Main02 = new PrefabGUID(650179127); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Scatter01 = new PrefabGUID(-1389644878); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Scatter02 = new PrefabGUID(207088116); public static readonly PrefabGUID AB_Matriarch_Dash_AbilityGroup = new PrefabGUID(-12917778); public static readonly PrefabGUID AB_Matriarch_Dash_Cast = new PrefabGUID(-2122272537); public static readonly PrefabGUID AB_Matriarch_Dash_HARD_AbilityGroup = new PrefabGUID(1088363798); public static readonly PrefabGUID AB_Matriarch_Dash_HARD_Cast = new PrefabGUID(2057134722); public static readonly PrefabGUID AB_Matriarch_Dash_Phase = new PrefabGUID(1989001748); public static readonly PrefabGUID AB_Matriarch_Launcher_AbilityGroup = new PrefabGUID(341041700); public static readonly PrefabGUID AB_Matriarch_Launcher_Cast = new PrefabGUID(-398314800); public static readonly PrefabGUID AB_Matriarch_Launcher_Hit = new PrefabGUID(92048037); public static readonly PrefabGUID AB_Matriarch_Launcher_LaunchBuff = new PrefabGUID(1660981118); public static readonly PrefabGUID AB_Matriarch_Melee_AbilityGroup = new PrefabGUID(-1389186216); public static readonly PrefabGUID AB_Matriarch_Melee_Cast = new PrefabGUID(1468111716); public static readonly PrefabGUID AB_Matriarch_Melee_Hit = new PrefabGUID(-2066012358); public static readonly PrefabGUID AB_Matriarch_Projectile = new PrefabGUID(581492277); public static readonly PrefabGUID AB_Matriarch_Projectile_AbilityGroup = new PrefabGUID(-514516956); public static readonly PrefabGUID AB_Matriarch_Projectile_Cast = new PrefabGUID(180075577); public static readonly PrefabGUID AB_Matriarch_Projectile_Channel = new PrefabGUID(-677026453); public static readonly PrefabGUID AB_Matriarch_Projectile_Channel_HARD = new PrefabGUID(892399465); public static readonly PrefabGUID AB_Matriarch_Soar_Minion_DeSpawnBuff = new PrefabGUID(-17499135); public static readonly PrefabGUID AB_Matriarch_Soar_Minion_SpawnDecend = new PrefabGUID(-1221149647); public static readonly PrefabGUID AB_Matriarch_Soar_Minion_SpawnDive = new PrefabGUID(769030120); public static readonly PrefabGUID AB_Matriarch_Soar_Summon = new PrefabGUID(-907804974); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_AbilityGroup = new PrefabGUID(1212947823); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_Cast = new PrefabGUID(-397091035); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_End = new PrefabGUID(-217542894); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_Phase = new PrefabGUID(849664401); public static readonly PrefabGUID AB_Matriarch_SpinAttack_AbilityGroup = new PrefabGUID(494176178); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Cast = new PrefabGUID(970992076); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Channel = new PrefabGUID(339508844); public static readonly PrefabGUID AB_Matriarch_SpinAttack_HARD_Channel = new PrefabGUID(1905744001); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Hit = new PrefabGUID(-1621531039); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Homing_HARD_Projectile = new PrefabGUID(-202133203); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Homing_Projectile = new PrefabGUID(2085874945); public static readonly PrefabGUID AB_Matriarch_SpinAttack_SummonDash = new PrefabGUID(877457615); public static readonly PrefabGUID AB_Mech_Activate_Explosive_Buff = new PrefabGUID(597124880); public static readonly PrefabGUID AB_Mech_Activate_Explosive_Trigger = new PrefabGUID(1051384420); public static readonly PrefabGUID AB_Militia_BellRinger_RingBell_AbilityGroup = new PrefabGUID(2073002423); public static readonly PrefabGUID AB_Militia_BellRinger_RingBell_Cast = new PrefabGUID(1538215473); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AbilityGroup = new PrefabGUID(1611191665); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AggroBuff_AbilityGroup = new PrefabGUID(-1049539886); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AggroBuff_Buff = new PrefabGUID(-841121993); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AggroBuff_Cast = new PrefabGUID(-536713174); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_Area_Knockback = new PrefabGUID(-1124194001); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_Cast = new PrefabGUID(-1691121147); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_Channel = new PrefabGUID(-875312828); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_HitBuff = new PrefabGUID(-937972599); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_AbilityGroup = new PrefabGUID(-1957047297); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_Buff = new PrefabGUID(-1848432780); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_Cast = new PrefabGUID(105916215); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_Trigger = new PrefabGUID(310961964); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_AbilityGroup = new PrefabGUID(-545560531); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_Cast = new PrefabGUID(-859264405); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_Throw = new PrefabGUID(1157220997); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_Trigger = new PrefabGUID(1599230924); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Idle_Buff = new PrefabGUID(198181165); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile = new PrefabGUID(-544287626); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Area = new PrefabGUID(-1310138228); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Cast = new PrefabGUID(-259533161); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Group = new PrefabGUID(368122726); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard = new PrefabGUID(222846819); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard_Area = new PrefabGUID(-1406495074); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard_Cast = new PrefabGUID(846585356); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard_Group = new PrefabGUID(-88118341); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_AbilityGroup = new PrefabGUID(1674395967); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Cast = new PrefabGUID(1980954566); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Channel = new PrefabGUID(1100265033); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Minion_Buff = new PrefabGUID(75980902); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Summon = new PrefabGUID(507392848); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_AbilityGroup = new PrefabGUID(296313928); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_Cast = new PrefabGUID(761214925); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_Minion_Buff = new PrefabGUID(-1428021510); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_Summon = new PrefabGUID(-1660773689); public static readonly PrefabGUID AB_Militia_BombThrow_AbilityGroup = new PrefabGUID(1232856473); public static readonly PrefabGUID AB_Militia_BombThrow_Cast = new PrefabGUID(-935905787); public static readonly PrefabGUID AB_Militia_BombThrow_Explosion_Delayed = new PrefabGUID(732165342); public static readonly PrefabGUID AB_Militia_BombThrow_Throw = new PrefabGUID(-2134151205); public static readonly PrefabGUID AB_Militia_BombThrow_Throw_Cluster = new PrefabGUID(-255736072); public static readonly PrefabGUID AB_Militia_CallAdds_AbilityGroup = new PrefabGUID(1870073064); public static readonly PrefabGUID AB_Militia_CallAdds_Cast = new PrefabGUID(385539763); public static readonly PrefabGUID AB_Militia_CallAdds_Legion_AbilityGroup = new PrefabGUID(1244670975); public static readonly PrefabGUID AB_Militia_CallAdds_Legion_Cast = new PrefabGUID(-435692819); public static readonly PrefabGUID AB_Militia_CallAdds_Legion_SpawnMinions = new PrefabGUID(-273839084); public static readonly PrefabGUID AB_Militia_CallAdds_SpawnMinions = new PrefabGUID(1392323465); public static readonly PrefabGUID AB_Militia_ConstrainingPole_MeleeAttack_AbilityGroup = new PrefabGUID(-893194478); public static readonly PrefabGUID AB_Militia_ConstrainingPole_MeleeAttack_Area = new PrefabGUID(841457); public static readonly PrefabGUID AB_Militia_ConstrainingPole_MeleeAttack_Cast = new PrefabGUID(942221944); public static readonly PrefabGUID AB_Militia_Crossbow_Cast = new PrefabGUID(1169594249); public static readonly PrefabGUID AB_Militia_Crossbow_Group = new PrefabGUID(-1802963726); public static readonly PrefabGUID AB_Militia_Crossbow_Projectile = new PrefabGUID(-1838257649); public static readonly PrefabGUID AB_Militia_EyeOfGod_AggroBuff = new PrefabGUID(1452462104); public static readonly PrefabGUID AB_Militia_EyeOfGod_AreaDamageBuff = new PrefabGUID(1612771592); public static readonly PrefabGUID AB_Militia_EyeOfGod_AreaEffectBuff = new PrefabGUID(838368210); public static readonly PrefabGUID AB_Militia_EyeOfGod_AreaInitBuff = new PrefabGUID(933561205); public static readonly PrefabGUID AB_Militia_EyeOfGod_Haste_Hard = new PrefabGUID(-1850436869); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_AbilityGroup = new PrefabGUID(-409778117); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_AoESpawnerBuff = new PrefabGUID(1050595055); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_Cast = new PrefabGUID(1184643154); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_Trigger = new PrefabGUID(-1853602850); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_AbilityGroup = new PrefabGUID(1631838527); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_Cast01 = new PrefabGUID(2060866908); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_Cast02 = new PrefabGUID(-41130002); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_Projectile = new PrefabGUID(-280091016); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_AbilityGroup = new PrefabGUID(-1379598377); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_Cast = new PrefabGUID(-1843693678); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_Hit = new PrefabGUID(-669400666); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_Trigger = new PrefabGUID(1801016041); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_MountForceCastTrigger = new PrefabGUID(1491333787); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_AbilityGroup = new PrefabGUID(-618550771); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_Cast = new PrefabGUID(1597770220); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_Hit = new PrefabGUID(-538988374); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_Trigger = new PrefabGUID(1351545111); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_AbilityGroup = new PrefabGUID(-1623080868); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_Cast = new PrefabGUID(-1682625133); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_SpawnMount = new PrefabGUID(1615695021); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_Travel_Phase = new PrefabGUID(-1988219418); public static readonly PrefabGUID AB_Militia_FabiansSteed_AggroTarget_AbilityGroup = new PrefabGUID(-715615220); public static readonly PrefabGUID AB_Militia_FabiansSteed_AggroTarget_AggroBuff = new PrefabGUID(-13181636); public static readonly PrefabGUID AB_Militia_FabiansSteed_AggroTarget_Cast = new PrefabGUID(-752382300); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_AbilityGroup = new PrefabGUID(1246326726); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_Cast = new PrefabGUID(-267421443); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_ChargingBuff = new PrefabGUID(328706422); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_Phase = new PrefabGUID(-219976787); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_RiderBuff = new PrefabGUID(-1988917472); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeAoE = new PrefabGUID(361876424); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger01 = new PrefabGUID(-2080797217); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger02 = new PrefabGUID(-1108207344); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger03 = new PrefabGUID(1365581986); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger04 = new PrefabGUID(1895978220); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger05 = new PrefabGUID(1453459652); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_AbilityGroup = new PrefabGUID(1220301459); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_Buff = new PrefabGUID(-1492616746); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_Cast = new PrefabGUID(-450565827); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_DynamicCollisionBuff = new PrefabGUID(1261865310); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_End = new PrefabGUID(-1564254360); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_Phase = new PrefabGUID(-1946670460); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_RiderBuff = new PrefabGUID(2054840798); public static readonly PrefabGUID AB_Militia_FabiansSteed_LeapMovement_AbilityGroup = new PrefabGUID(975866147); public static readonly PrefabGUID AB_Militia_FabiansSteed_LeapMovement_Cast = new PrefabGUID(-2018268572); public static readonly PrefabGUID AB_Militia_FabiansSteed_MountedSwingMovement_AbilityGroup = new PrefabGUID(-59488185); public static readonly PrefabGUID AB_Militia_FabiansSteed_MountedSwingMovement_Cast = new PrefabGUID(-1499052014); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_AbilityGroup = new PrefabGUID(325658714); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_MinionEffectBuff = new PrefabGUID(-1604026473); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_RotationBuff = new PrefabGUID(1328632900); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion01 = new PrefabGUID(-656099471); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion02 = new PrefabGUID(-1968939693); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion03 = new PrefabGUID(1972989794); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion04 = new PrefabGUID(104024742); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_Trigger = new PrefabGUID(1492766921); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Cast = new PrefabGUID(-1499593072); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_CastTrackerBuff = new PrefabGUID(151863819); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_ChargingBuff = new PrefabGUID(1688233876); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_LyingStunBuff = new PrefabGUID(-533793439); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Phase = new PrefabGUID(1110707350); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_RiderBuff = new PrefabGUID(1478782911); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostCharge_AbilityGroup = new PrefabGUID(644410055); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostCharge_Buff = new PrefabGUID(1772398791); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostCharge_Cast = new PrefabGUID(1510593370); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostMultiCharge_AbilityGroup = new PrefabGUID(1207495983); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostMultiCharge_Buff = new PrefabGUID(-966704283); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostMultiCharge_Cast = new PrefabGUID(2028296730); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_AbilityGroup = new PrefabGUID(-469608333); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_Buff = new PrefabGUID(-38800429); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_Cast = new PrefabGUID(-617347533); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_MounterBuff = new PrefabGUID(-863496809); public static readonly PrefabGUID AB_Militia_Glassblower_Approach_AbilityGroup = new PrefabGUID(-719487446); public static readonly PrefabGUID AB_Militia_Glassblower_Approach_Buff = new PrefabGUID(-1499420269); public static readonly PrefabGUID AB_Militia_Glassblower_Approach_Cast = new PrefabGUID(-1212587679); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_AbilityGroup = new PrefabGUID(-29584300); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Cast = new PrefabGUID(795472923); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Hard_AbilityGroup = new PrefabGUID(317399990); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Hard_Cast = new PrefabGUID(-1085065672); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Hard_Projectile = new PrefabGUID(-1121865614); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Projectile = new PrefabGUID(-552770626); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_AbilityGroup = new PrefabGUID(800186323); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Cast = new PrefabGUID(-733931221); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_ChannelBuff = new PrefabGUID(1274118179); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Hard_AbilityGroup = new PrefabGUID(-1174644772); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Hard_Cast = new PrefabGUID(-1202196448); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Hard_ChannelBuff = new PrefabGUID(-2004538338); public static readonly PrefabGUID AB_Militia_Glassblower_Emote_Idle_AbilityGroup = new PrefabGUID(-348862907); public static readonly PrefabGUID AB_Militia_Glassblower_Emote_Idle_Buff = new PrefabGUID(681813764); public static readonly PrefabGUID AB_Militia_Glassblower_Emote_Idle_Cast = new PrefabGUID(382843220); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_AbilityGroup = new PrefabGUID(-212014657); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_Cast = new PrefabGUID(-1666493342); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_TargetTrigger = new PrefabGUID(484167491); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_Throw = new PrefabGUID(-543136108); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_Trigger = new PrefabGUID(892476052); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_AbilityGroup = new PrefabGUID(890007919); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_Buff = new PrefabGUID(1312286201); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_Cast = new PrefabGUID(-574135336); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_HitBuff = new PrefabGUID(604006167); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_Projectile = new PrefabGUID(706976478); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_RotationBuff = new PrefabGUID(796519131); public static readonly PrefabGUID AB_Militia_Glassblower_WindDash_Cast = new PrefabGUID(-454402264); public static readonly PrefabGUID AB_Militia_Glassblower_WindDash_Dash = new PrefabGUID(1502309335); public static readonly PrefabGUID AB_Militia_Glassblower_WindDash_Group = new PrefabGUID(-225237355); public static readonly PrefabGUID AB_Militia_GlassBreakable_CoolingTransition_Buff = new PrefabGUID(1173675117); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Buff_01 = new PrefabGUID(404189245); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Buff_02 = new PrefabGUID(-37316700); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Buff_03 = new PrefabGUID(1899203717); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Hard_Buff_01 = new PrefabGUID(-1421529641); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Hard_Buff_02 = new PrefabGUID(-650348335); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Hard_Buff_03 = new PrefabGUID(-1859953993); public static readonly PrefabGUID AB_Militia_GlassBreakable_HitTarget_Buff = new PrefabGUID(-129444122); public static readonly PrefabGUID AB_Militia_GlassBreakable_Projectile = new PrefabGUID(-1341014040); public static readonly PrefabGUID AB_Militia_GlassBreakableHot_Lifetime_Buff = new PrefabGUID(1353811141); public static readonly PrefabGUID AB_Militia_GlassBreakableHot_Summon = new PrefabGUID(953109020); public static readonly PrefabGUID AB_Militia_Guard_Block_AbilityGroup = new PrefabGUID(-485166585); public static readonly PrefabGUID AB_Militia_Guard_Block_Buff = new PrefabGUID(-1127662277); public static readonly PrefabGUID AB_Militia_Guard_Block_Cast = new PrefabGUID(1593328493); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Cast01 = new PrefabGUID(-573899745); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Cast02 = new PrefabGUID(351513532); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Group = new PrefabGUID(931534835); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Hit = new PrefabGUID(965049893); public static readonly PrefabGUID AB_Militia_Guard_ShieldAttack_Cast01 = new PrefabGUID(192620323); public static readonly PrefabGUID AB_Militia_Guard_ShieldAttack_Group = new PrefabGUID(-668603830); public static readonly PrefabGUID AB_Militia_Guard_ShieldAttack_Hit = new PrefabGUID(-1135846637); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostNova_Area = new PrefabGUID(445894978); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostNova_Cast = new PrefabGUID(174230189); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostNova_Group = new PrefabGUID(1624827356); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostPresence_Hard_Debuff = new PrefabGUID(1023788437); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostPresence_Hard_Trigger = new PrefabGUID(-479873253); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_AbilityGroup = new PrefabGUID(308360499); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_Buff = new PrefabGUID(788971409); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_Cast = new PrefabGUID(-970634100); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_IceCone = new PrefabGUID(-841278979); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Cast = new PrefabGUID(-923781186); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Group = new PrefabGUID(-1110188840); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Hard_Cast = new PrefabGUID(-707993837); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Hard_Group = new PrefabGUID(-1634136571); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Hard_Projectile = new PrefabGUID(-414888089); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Projectile = new PrefabGUID(-1598751634); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_AbilityGroup = new PrefabGUID(-743963442); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_Cast = new PrefabGUID(-324287935); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_Hit = new PrefabGUID(628554069); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_WasTargetedBuff = new PrefabGUID(-411910491); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreakerInit_AbilityGroup = new PrefabGUID(1607170837); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreakerInit_Cast = new PrefabGUID(-1354845346); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreakerInit_IceBreakerBuff = new PrefabGUID(-959722752); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_AbilityGroup = new PrefabGUID(-841402173); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_Cast01 = new PrefabGUID(2037904539); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_Cast02 = new PrefabGUID(53607009); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_Hit = new PrefabGUID(423899989); public static readonly PrefabGUID AB_Militia_Heavy_Dash_AbilityGroup = new PrefabGUID(892342913); public static readonly PrefabGUID AB_Militia_Heavy_Dash_Cast = new PrefabGUID(-1683497788); public static readonly PrefabGUID AB_Militia_Heavy_Dash_Phase = new PrefabGUID(1329828024); public static readonly PrefabGUID AB_Militia_Heavy_DirectionalShield_AbilityGroup = new PrefabGUID(940440404); public static readonly PrefabGUID AB_Militia_Heavy_DirectionalShield_Buff = new PrefabGUID(-1181427780); public static readonly PrefabGUID AB_Militia_Heavy_DirectionalShield_Cast = new PrefabGUID(-1895487398); public static readonly PrefabGUID AB_Militia_Heavy_MeleeAttack_Cast = new PrefabGUID(-1873368898); public static readonly PrefabGUID AB_Militia_Heavy_MeleeAttack_Group = new PrefabGUID(-1528770669); public static readonly PrefabGUID AB_Militia_Heavy_MeleeAttack_Hit = new PrefabGUID(213579884); public static readonly PrefabGUID AB_Militia_Heavy_ShieldBash_Cast = new PrefabGUID(2095640768); public static readonly PrefabGUID AB_Militia_Heavy_ShieldBash_Group = new PrefabGUID(951831242); public static readonly PrefabGUID AB_Militia_Heavy_ShieldBash_Hit = new PrefabGUID(734492476); public static readonly PrefabGUID AB_Militia_Horseman_AbilityGroup = new PrefabGUID(-1077139800); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_AbilityGroup = new PrefabGUID(-1843850355); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_ApproachBuff = new PrefabGUID(589883804); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Cast = new PrefabGUID(-464739015); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Hit = new PrefabGUID(1946864385); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_AbilityGroup = new PrefabGUID(1660777757); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_ApproachBuff = new PrefabGUID(850080231); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_Cast = new PrefabGUID(576955485); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_Hit = new PrefabGUID(1849140734); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Right_AbilityGroup = new PrefabGUID(262116525); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Right_Cast = new PrefabGUID(-1796589505); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Right_Hit = new PrefabGUID(-1957148417); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Side_Trigger = new PrefabGUID(395023610); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Trigger = new PrefabGUID(1191742412); public static readonly PrefabGUID AB_Militia_Horseman_Cast = new PrefabGUID(-1683127942); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_AbilityGroup = new PrefabGUID(-1630648333); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_Cast = new PrefabGUID(-1920135116); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_Phase = new PrefabGUID(-1524980318); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_RiderBuff = new PrefabGUID(1039139361); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_RiderTrigger = new PrefabGUID(-547258856); public static readonly PrefabGUID AB_Militia_Horseman_Mount_RunAway_AbilityGroup = new PrefabGUID(-680710725); public static readonly PrefabGUID AB_Militia_Horseman_Mount_RunAway_Buff = new PrefabGUID(1942991761); public static readonly PrefabGUID AB_Militia_Horseman_Mount_RunAway_Cast = new PrefabGUID(-1384842305); public static readonly PrefabGUID AB_Militia_Horseman_Projectile = new PrefabGUID(-958364971); public static readonly PrefabGUID AB_Militia_Horseman_StepAttack_AbilityGroup = new PrefabGUID(-342380924); public static readonly PrefabGUID AB_Militia_Horseman_StepAttack_Cast = new PrefabGUID(1708061035); public static readonly PrefabGUID AB_Militia_Horseman_StepAttack_Hit = new PrefabGUID(1254730673); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_AbilityGroup = new PrefabGUID(-1162366175); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_Cast = new PrefabGUID(-221807068); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_SelfBuff = new PrefabGUID(2140175849); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_TargetBuff = new PrefabGUID(2103090040); public static readonly PrefabGUID AB_Militia_Hound_Alert_Buff = new PrefabGUID(-1132928988); public static readonly PrefabGUID AB_Militia_Hound_Bite_AbilityGroup = new PrefabGUID(340577476); public static readonly PrefabGUID AB_Militia_Hound_Bite_Cast = new PrefabGUID(-297222494); public static readonly PrefabGUID AB_Militia_Hound_Bite_Hit = new PrefabGUID(199486033); public static readonly PrefabGUID AB_Militia_Hound_DashAttack = new PrefabGUID(1506455250); public static readonly PrefabGUID AB_Militia_Hound_DashAttack_AbilityGroup = new PrefabGUID(-215712550); public static readonly PrefabGUID AB_Militia_Hound_DashAttack_Cast = new PrefabGUID(-645622724); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_AbilityGroup = new PrefabGUID(-1280459867); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_Buff = new PrefabGUID(662242066); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_Cast = new PrefabGUID(-22951360); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_Hit = new PrefabGUID(1283034946); public static readonly PrefabGUID AB_Militia_Hound_Howl_AbilityGroup = new PrefabGUID(-1055527085); public static readonly PrefabGUID AB_Militia_Hound_Howl_Cast = new PrefabGUID(1067524861); public static readonly PrefabGUID AB_Militia_Hound_Howl_Channel = new PrefabGUID(-499038542); public static readonly PrefabGUID AB_Militia_Hound_Howl_Hit = new PrefabGUID(-455939255); public static readonly PrefabGUID AB_Militia_Hound_QuickDash_AbilityGroup = new PrefabGUID(2031950279); public static readonly PrefabGUID AB_Militia_Hound_QuickDash_Cast = new PrefabGUID(620616091); public static readonly PrefabGUID AB_Militia_Hound_Rage_Buff = new PrefabGUID(-478396623); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_AbilityGroup = new PrefabGUID(1707593926); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_AllyBuff = new PrefabGUID(-1245007017); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_AllyHit = new PrefabGUID(-28502485); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_Cast = new PrefabGUID(-58463973); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_Hit = new PrefabGUID(-1267678631); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_TargetBuff = new PrefabGUID(-873378712); public static readonly PrefabGUID AB_Militia_Hound_StepBack_AbilityGroup = new PrefabGUID(-1291643146); public static readonly PrefabGUID AB_Militia_Hound_StepBack_Cast = new PrefabGUID(1513148856); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_AbilityGroup = new PrefabGUID(-91811178); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_Buff = new PrefabGUID(935288403); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_Cast = new PrefabGUID(-2072247581); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_Hit = new PrefabGUID(1445596591); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_AbilityGroup = new PrefabGUID(-1449494345); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_Cast = new PrefabGUID(-305287896); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_ChannelBuff = new PrefabGUID(-888209286); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_Dash = new PrefabGUID(1475180815); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_TargetBuff = new PrefabGUID(1939626064); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_AbilityGroup = new PrefabGUID(1219885177); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Buff = new PrefabGUID(1520432556); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Cast = new PrefabGUID(-1877352340); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Cast_Repetition = new PrefabGUID(588443066); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Projectile = new PrefabGUID(2026550367); public static readonly PrefabGUID AB_Militia_HoundMaster_Roll_AbilityGroup = new PrefabGUID(-1416105872); public static readonly PrefabGUID AB_Militia_HoundMaster_Roll_CastAndRoll = new PrefabGUID(161433905); public static readonly PrefabGUID AB_Militia_HoundMaster_Shove_AbilityGroup = new PrefabGUID(-367310449); public static readonly PrefabGUID AB_Militia_HoundMaster_Shove_Cast = new PrefabGUID(163497335); public static readonly PrefabGUID AB_Militia_HoundMaster_Shove_Hit = new PrefabGUID(-1463095875); public static readonly PrefabGUID AB_Militia_HoundMaster_SpreadShot_AbilityGroup = new PrefabGUID(479773974); public static readonly PrefabGUID AB_Militia_HoundMaster_SpreadShot_Cast = new PrefabGUID(332470331); public static readonly PrefabGUID AB_Militia_HoundMaster_SpreadShot_Projectile = new PrefabGUID(1463179857); public static readonly PrefabGUID AB_Militia_HoundMaster_Tackel_AbilityGroup = new PrefabGUID(1648996357); public static readonly PrefabGUID AB_Militia_HoundMaster_Tackel_Cast = new PrefabGUID(1571738183); public static readonly PrefabGUID AB_Militia_HoundMaster_Tackel_Dash = new PrefabGUID(1463506513); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_AbilityGroup = new PrefabGUID(-1843696472); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_Cast = new PrefabGUID(1691670833); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_Dash = new PrefabGUID(-1248926133); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_PostCastBuff = new PrefabGUID(-455882178); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_AbilityGroup = new PrefabGUID(1946568656); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_Cast = new PrefabGUID(180216083); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_Dash = new PrefabGUID(-1281589671); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_PostCastBuff = new PrefabGUID(-808968507); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_AbilityGroup = new PrefabGUID(-930424159); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Cast = new PrefabGUID(396234093); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_AbilityGroup = new PrefabGUID(-2003945269); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_Cast = new PrefabGUID(-1166416993); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_Travel = new PrefabGUID(-1484576719); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_TravelEnd = new PrefabGUID(993943966); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_TravelHit = new PrefabGUID(-417501080); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Init_AbilityGroup = new PrefabGUID(-2015856259); public static readonly PrefabGUID Ab_Militia_Leader_LeapAttack_Init_Buff = new PrefabGUID(1185694153); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Init_Cast = new PrefabGUID(-1006504748); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Init_Hit = new PrefabGUID(-1269635519); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Travel = new PrefabGUID(494773823); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_TravelEnd = new PrefabGUID(471452481); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_TravelHit = new PrefabGUID(-531409417); public static readonly PrefabGUID Ab_Militia_Leader_LeapAttack_WasTargetedBuff = new PrefabGUID(1012806549); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_Hard_SmallFireArea = new PrefabGUID(-1570706124); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_AbilityGroup = new PrefabGUID(-213757827); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Cast = new PrefabGUID(-1606487203); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Channel = new PrefabGUID(158253791); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Hit = new PrefabGUID(-449678721); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Init_AbilityGroup = new PrefabGUID(-1802655130); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Init_Cast = new PrefabGUID(-2020799175); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Init_Trigger = new PrefabGUID(-1043699905); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_SelfKnockback = new PrefabGUID(-268526092); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Cast01 = new PrefabGUID(-1637687485); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Cast02 = new PrefabGUID(674787677); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Group = new PrefabGUID(994921501); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Hit = new PrefabGUID(1917511902); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_AbilityGroup = new PrefabGUID(764619540); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_Cast = new PrefabGUID(-1057332181); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_Group = new PrefabGUID(-1689067072); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_Projectile = new PrefabGUID(1407622008); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_AbilityGroup = new PrefabGUID(-202704002); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_Cast = new PrefabGUID(1533808657); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_Group = new PrefabGUID(1714996121); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_Phase = new PrefabGUID(-1767824623); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_AbilityGroup = new PrefabGUID(1181965808); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_Cast = new PrefabGUID(210514978); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_Projectile = new PrefabGUID(1827936279); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_ProjectileFollowup = new PrefabGUID(-909814249); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_ProjectileFollowup2 = new PrefabGUID(-519858706); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_ProjectileFollowup3 = new PrefabGUID(1811893830); public static readonly PrefabGUID AB_Militia_LightArrow_HealShot_AbilityGroup = new PrefabGUID(-1509483896); public static readonly PrefabGUID AB_Militia_LightArrow_HealShot_Cast = new PrefabGUID(-270716581); public static readonly PrefabGUID AB_Militia_LightArrow_HealShot_Projectile = new PrefabGUID(1694590705); public static readonly PrefabGUID AB_Militia_LightArrow_MultiShot_Hard_AbilityGroup = new PrefabGUID(1574404388); public static readonly PrefabGUID AB_Militia_LightArrow_MultiShot_Hard_Cast = new PrefabGUID(-333790766); public static readonly PrefabGUID AB_Militia_LightArrow_MultiShot_Hard_Projectile = new PrefabGUID(2055611868); public static readonly PrefabGUID AB_Militia_LightArrow_QuickShot_AbilityGroup = new PrefabGUID(-1282136902); public static readonly PrefabGUID AB_Militia_LightArrow_QuickShot_Cast = new PrefabGUID(1122509081); public static readonly PrefabGUID AB_Militia_LightArrow_QuickShot_Projectile = new PrefabGUID(232390913); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_AbilityGroup = new PrefabGUID(-1286987800); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Amplify = new PrefabGUID(1545163783); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Cast = new PrefabGUID(-840453877); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Group = new PrefabGUID(761268127); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Projectile = new PrefabGUID(1003207270); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_AbilityGroup = new PrefabGUID(336380612); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_Cast = new PrefabGUID(437106438); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_Summon = new PrefabGUID(-1191185326); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_SummonPerPlayer = new PrefabGUID(-436382828); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_AbilityGroup = new PrefabGUID(-494771621); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_Cast = new PrefabGUID(-1528004826); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_ClusterAoE = new PrefabGUID(2108594975); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_Group = new PrefabGUID(-866526980); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_Throw = new PrefabGUID(-1734694879); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyQuickShot_Cast = new PrefabGUID(-1922271934); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyQuickShot_Group = new PrefabGUID(-708850140); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyShot_Cast = new PrefabGUID(-1138817994); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyShot_Group = new PrefabGUID(617823552); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_Cast = new PrefabGUID(878744625); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_ClusterAoE = new PrefabGUID(1810579004); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_Group = new PrefabGUID(-891060764); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_Throw = new PrefabGUID(1451985039); public static readonly PrefabGUID AB_Militia_Longbow_FireArrow_Cast = new PrefabGUID(1747170224); public static readonly PrefabGUID AB_Militia_Longbow_FireArrow_Group = new PrefabGUID(-1102042167); public static readonly PrefabGUID AB_Militia_Longbow_FireArrow_Projectile = new PrefabGUID(1235239149); public static readonly PrefabGUID AB_Militia_Longbowman_RangedAttack_Cast = new PrefabGUID(1943859459); public static readonly PrefabGUID AB_Militia_Longbowman_RangedAttack_Group = new PrefabGUID(-351745987); public static readonly PrefabGUID AB_Militia_Longbowman_RangedAttack_Projectile = new PrefabGUID(-83871442); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_AbilityGroup = new PrefabGUID(-241312231); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Cast = new PrefabGUID(-1198099916); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_AbilityGroup = new PrefabGUID(976341724); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_Cast = new PrefabGUID(1718899753); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_Hit = new PrefabGUID(-619949765); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_Projectile = new PrefabGUID(-2051750779); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_AbilityGroup = new PrefabGUID(-1228302737); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_Cast = new PrefabGUID(1319195215); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_Hit = new PrefabGUID(-995058779); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_Projectile = new PrefabGUID(1258357382); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hit = new PrefabGUID(2088724204); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Projectile = new PrefabGUID(1458430574); public static readonly PrefabGUID AB_Militia_MeleeStraight_AbilityGroup = new PrefabGUID(2142000031); public static readonly PrefabGUID AB_Militia_MeleeStraight_Cast = new PrefabGUID(760468527); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_AbilityGroup = new PrefabGUID(-746972983); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_Cast = new PrefabGUID(1667340231); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_Hit = new PrefabGUID(179409495); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_LaunchBuff = new PrefabGUID(-476290072); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_Projectile = new PrefabGUID(-847210019); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_AbilityGroup = new PrefabGUID(-735966107); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_Cast = new PrefabGUID(1130550623); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_Hit = new PrefabGUID(635022562); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_LaunchBuff = new PrefabGUID(1699536172); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_Projectile = new PrefabGUID(-2088994151); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hit = new PrefabGUID(309989912); public static readonly PrefabGUID AB_Militia_MeleeStraight_LaunchBuff = new PrefabGUID(-992007541); public static readonly PrefabGUID AB_Militia_MeleeStraight_Projectile = new PrefabGUID(-1757482429); public static readonly PrefabGUID AB_Militia_Miner_Alert_Buff = new PrefabGUID(731131812); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Cast01 = new PrefabGUID(-1743412664); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Cast02 = new PrefabGUID(735200332); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Group01 = new PrefabGUID(-2107123661); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Hit01 = new PrefabGUID(1098003053); public static readonly PrefabGUID AB_Militia_Miner_Mine_AbilityGroup = new PrefabGUID(1599972576); public static readonly PrefabGUID AB_Militia_Miner_Mine_Cast = new PrefabGUID(-636478178); public static readonly PrefabGUID AB_Militia_Miner_Mine_Hit = new PrefabGUID(1523838552); public static readonly PrefabGUID AB_Militia_Miner_OnAggro_AbilityGroup = new PrefabGUID(-1065281102); public static readonly PrefabGUID AB_Militia_Miner_OnAggro_Buff = new PrefabGUID(1380141337); public static readonly PrefabGUID AB_Militia_Miner_OnAggro_Cast = new PrefabGUID(-1333304890); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Cast = new PrefabGUID(858823255); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Group = new PrefabGUID(-1418783710); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_HoldSteady_Buff = new PrefabGUID(-1946078755); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Projectile = new PrefabGUID(305403942); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Trigger = new PrefabGUID(191767448); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_AbilityGroup = new PrefabGUID(-198012170); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_Cast = new PrefabGUID(-103069801); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_01 = new PrefabGUID(1945387500); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_02 = new PrefabGUID(1012191762); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_03 = new PrefabGUID(703829574); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_04 = new PrefabGUID(-1821199754); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_AbilityGroup = new PrefabGUID(-592301846); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_Cast = new PrefabGUID(-1103781868); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_Hit = new PrefabGUID(212570667); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_MinionSpawn = new PrefabGUID(1597618627); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_AbilityGroup = new PrefabGUID(-1922948406); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_Cast = new PrefabGUID(-848924313); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_EnrageBuff = new PrefabGUID(1491093272); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkFinishBuff = new PrefabGUID(2088711774); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkPreTravelBuff = new PrefabGUID(204128754); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkPuddle = new PrefabGUID(369298666); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkTravelBuff = new PrefabGUID(-2098450523); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_PostCastBuff = new PrefabGUID(-671703185); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_ScribeChannelBuff = new PrefabGUID(1947371829); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_ScribeFinishBuff = new PrefabGUID(1160005762); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_ShieldBuff = new PrefabGUID(-352213790); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_AbilityGroup = new PrefabGUID(-1104025162); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_Cast01 = new PrefabGUID(1307917235); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_Cast02 = new PrefabGUID(764115278); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_Projectile = new PrefabGUID(-361579486); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_AbilityGroup = new PrefabGUID(-186690512); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_Cast = new PrefabGUID(1850455899); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_MinionSpawn = new PrefabGUID(393445142); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_Projectile = new PrefabGUID(-2132516576); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_AbilityGroup = new PrefabGUID(2019689688); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_Cast_01 = new PrefabGUID(1138860033); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_Cast_02 = new PrefabGUID(1279578598); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_HitBuff = new PrefabGUID(2117331927); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_MainProjectile_01 = new PrefabGUID(1145480062); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_MainProjectile_02 = new PrefabGUID(1333737747); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_ProjectileDelay_01 = new PrefabGUID(855984076); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_ProjectileDelay_02 = new PrefabGUID(-1826602684); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_SmallProjectile = new PrefabGUID(-1032289114); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Init_AbilityGroup = new PrefabGUID(-1332977411); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Init_Buff = new PrefabGUID(2005485465); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Init_Cast = new PrefabGUID(-610093433); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Throw = new PrefabGUID(1697972242); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_AbilityGroup = new PrefabGUID(-1008562275); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_Cast = new PrefabGUID(1702459723); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_End = new PrefabGUID(-1582474138); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_Phase = new PrefabGUID(-90853357); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_PrePhase = new PrefabGUID(-851974236); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Trigger = new PrefabGUID(-1812720098); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Cast01 = new PrefabGUID(1554611074); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Cast02 = new PrefabGUID(1398618013); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Group = new PrefabGUID(471046053); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Hit = new PrefabGUID(-365270957); public static readonly PrefabGUID AB_Militia_TorchThrow_AbilityGroup = new PrefabGUID(-116877786); public static readonly PrefabGUID AB_Militia_TorchThrow_Cast = new PrefabGUID(441300272); public static readonly PrefabGUID AB_Militia_TorchThrow_Throw = new PrefabGUID(-1324026835); public static readonly PrefabGUID AB_Militia_Whirlwind_AbilityGroup = new PrefabGUID(-1077498120); public static readonly PrefabGUID AB_Militia_Whirlwind_Cast = new PrefabGUID(1598555241); public static readonly PrefabGUID AB_Militia_Whirlwind_Channel = new PrefabGUID(-1370452228); public static readonly PrefabGUID AB_Militia_Whirlwind_Hit = new PrefabGUID(1238803703); public static readonly PrefabGUID AB_Monster_DestroyBeams_Trigger = new PrefabGUID(-795589491); public static readonly PrefabGUID AB_Monster_ElectricField_AbilityGroup = new PrefabGUID(-1503327574); public static readonly PrefabGUID AB_Monster_ElectricField_BouncerObject = new PrefabGUID(581689067); public static readonly PrefabGUID AB_Monster_ElectricField_Cast = new PrefabGUID(-698139719); public static readonly PrefabGUID AB_Monster_ElectricField_DurationBuff = new PrefabGUID(-495279978); public static readonly PrefabGUID AB_Monster_ElectricField_Hit = new PrefabGUID(-2124868463); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow1 = new PrefabGUID(-1531437559); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow2 = new PrefabGUID(-959123655); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow3 = new PrefabGUID(1144224386); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow4 = new PrefabGUID(1805905502); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow5 = new PrefabGUID(-930442278); public static readonly PrefabGUID AB_Monster_ElectricField_PulseThrow = new PrefabGUID(-325647225); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger1 = new PrefabGUID(1083083247); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger2 = new PrefabGUID(-504585202); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger3 = new PrefabGUID(-838376627); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger4 = new PrefabGUID(461639256); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger5 = new PrefabGUID(-1552062815); public static readonly PrefabGUID AB_Monster_EnergyBeam_DestroyPairedBeam = new PrefabGUID(-1312382778); public static readonly PrefabGUID AB_Monster_FinalMelee_AbilityGroup = new PrefabGUID(-1659620404); public static readonly PrefabGUID AB_Monster_FinalMelee_Cast_01 = new PrefabGUID(1701613198); public static readonly PrefabGUID AB_Monster_FinalMelee_Cast_02 = new PrefabGUID(859228072); public static readonly PrefabGUID AB_Monster_FinalMelee_Cast_03 = new PrefabGUID(1838535773); public static readonly PrefabGUID AB_Monster_FinalMelee_Hit_01 = new PrefabGUID(1819163908); public static readonly PrefabGUID AB_Monster_FinalMelee_Hit_02 = new PrefabGUID(1629951915); public static readonly PrefabGUID AB_Monster_FinalMelee_Hit_03 = new PrefabGUID(-1284189939); public static readonly PrefabGUID AB_Monster_FinalMelee_Phase = new PrefabGUID(-1823978654); public static readonly PrefabGUID AB_Monster_FinalMelee_PostTravelBuff = new PrefabGUID(1841167047); public static readonly PrefabGUID AB_Monster_FinalProjectile_AbilityGroup = new PrefabGUID(-741006712); public static readonly PrefabGUID AB_Monster_FinalProjectile_Cast = new PrefabGUID(374856501); public static readonly PrefabGUID AB_Monster_FinalProjectile_IncapacitateBuff = new PrefabGUID(208530214); public static readonly PrefabGUID AB_Monster_FinalProjectile_Projectile01 = new PrefabGUID(171128206); public static readonly PrefabGUID AB_Monster_FinalProjectile_Projectile02 = new PrefabGUID(288386871); public static readonly PrefabGUID AB_Monster_FinalStage_AreaKnockback = new PrefabGUID(-55604971); public static readonly PrefabGUID AB_Monster_Grab_AbilityGroup = new PrefabGUID(723715376); public static readonly PrefabGUID AB_Monster_Grab_Cast = new PrefabGUID(-856920180); public static readonly PrefabGUID AB_Monster_Grab_FakeProjectile = new PrefabGUID(74664835); public static readonly PrefabGUID AB_Monster_Grab_FakeTarget = new PrefabGUID(1807041512); public static readonly PrefabGUID AB_Monster_Grab_FakeTargetHighPrio = new PrefabGUID(1253385950); public static readonly PrefabGUID AB_Monster_Grab_HasGrabedBuff = new PrefabGUID(1120701436); public static readonly PrefabGUID AB_Monster_Grab_Hit = new PrefabGUID(1220632816); public static readonly PrefabGUID AB_Monster_Grab_TargetGrabedBuff = new PrefabGUID(-759087433); public static readonly PrefabGUID AB_Monster_GroundSlam_Hit = new PrefabGUID(-1683451014); public static readonly PrefabGUID AB_Monster_GroundSlam_Hitv2 = new PrefabGUID(-1325955146); public static readonly PrefabGUID AB_Monster_GroundSlam_LaunchBuff = new PrefabGUID(-419794791); public static readonly PrefabGUID AB_Monster_HomePos_FakeTarget = new PrefabGUID(1529452061); public static readonly PrefabGUID AB_Monster_LightningPillar_AggroBuff = new PrefabGUID(-1633106899); public static readonly PrefabGUID AB_Monster_LightningPillar_AreaDamageBuff = new PrefabGUID(373120229); public static readonly PrefabGUID AB_Monster_LightningPillar_AreaEffectBuff = new PrefabGUID(-2061047741); public static readonly PrefabGUID AB_Monster_LightningPillar_AreaInitBuff = new PrefabGUID(-682085199); public static readonly PrefabGUID AB_Monster_LightningPillar_SpeedBuff_AbilityGroup = new PrefabGUID(828954334); public static readonly PrefabGUID AB_Monster_LightningPillar_SpeedBuff_Buff = new PrefabGUID(-1108748292); public static readonly PrefabGUID AB_Monster_LightningPillar_SpeedBuff_Cast = new PrefabGUID(-2078217582); public static readonly PrefabGUID AB_Monster_LightningShield_AbilityGroup = new PrefabGUID(1065629794); public static readonly PrefabGUID AB_Monster_LightningShield_AreaKnockback = new PrefabGUID(-1639043330); public static readonly PrefabGUID AB_Monster_LightningShield_Buff = new PrefabGUID(-2118254056); public static readonly PrefabGUID AB_Monster_LightningShield_Cast = new PrefabGUID(-1330064109); public static readonly PrefabGUID AB_Monster_LightningShield_Projectile = new PrefabGUID(2064540259); public static readonly PrefabGUID AB_Monster_LightningSlam_AreaKnockback = new PrefabGUID(620098819); public static readonly PrefabGUID AB_Monster_LightningSlam_DownedIncapacitate = new PrefabGUID(1322041767); public static readonly PrefabGUID AB_Monster_LightningSlam_InAirPhase = new PrefabGUID(1890619022); public static readonly PrefabGUID AB_Monster_LightningSlam_Land_AbilityGroup = new PrefabGUID(1492585365); public static readonly PrefabGUID AB_Monster_LightningSlam_Land_Cast = new PrefabGUID(-269922264); public static readonly PrefabGUID AB_Monster_LightningSlam_Land_Phase = new PrefabGUID(1938864208); public static readonly PrefabGUID AB_Monster_LightningSlam_LiftOff_AbilityGroup = new PrefabGUID(1795073911); public static readonly PrefabGUID AB_Monster_LightningSlam_LiftOff_Cast = new PrefabGUID(747401276); public static readonly PrefabGUID AB_Monster_LightningSlam_LiftOff_Phase = new PrefabGUID(817492469); public static readonly PrefabGUID AB_Monster_LightningSlam_PostTravelBuff = new PrefabGUID(-519019712); public static readonly PrefabGUID AB_Monster_LightningStorm_AbilityGroup = new PrefabGUID(-820078889); public static readonly PrefabGUID AB_Monster_LightningStorm_Buff = new PrefabGUID(1904401829); public static readonly PrefabGUID AB_Monster_LightningStorm_Cast = new PrefabGUID(1050345517); public static readonly PrefabGUID AB_Monster_LightningStorm_Throw = new PrefabGUID(407145118); public static readonly PrefabGUID AB_Monster_MeleeAttack_AbilityGroup = new PrefabGUID(1853611622); public static readonly PrefabGUID AB_Monster_MeleeAttack_Cast_01 = new PrefabGUID(-1589722260); public static readonly PrefabGUID AB_Monster_MeleeAttack_Cast_02 = new PrefabGUID(1322396789); public static readonly PrefabGUID AB_Monster_MeleeAttack_Cast_03 = new PrefabGUID(-1368555899); public static readonly PrefabGUID AB_Monster_MeleeAttack_Hit_03 = new PrefabGUID(-432236331); public static readonly PrefabGUID AB_Monster_MeleeAttack_Shockwave_Projectile = new PrefabGUID(11146335); public static readonly PrefabGUID AB_Monster_MeleeAttack_ShockwaveWide_Projectile = new PrefabGUID(663140965); public static readonly PrefabGUID AB_Monster_MeleeAttack_Trigger01 = new PrefabGUID(1065401644); public static readonly PrefabGUID AB_Monster_MeleeAttack_Trigger02 = new PrefabGUID(-1229169327); public static readonly PrefabGUID AB_Monster_MeleeAttack_Trigger03 = new PrefabGUID(455342956); public static readonly PrefabGUID AB_Monster_PierceFinnish_AbilityGroup = new PrefabGUID(1693720077); public static readonly PrefabGUID AB_Monster_PierceFinnish_Cast = new PrefabGUID(724453123); public static readonly PrefabGUID AB_Monster_PierceFinnish_LaunchBuff = new PrefabGUID(-842301264); public static readonly PrefabGUID AB_Monster_PierceFinnish_StunBuff = new PrefabGUID(-357888166); public static readonly PrefabGUID AB_Monster_PierceShock_AbilityGroup = new PrefabGUID(164595507); public static readonly PrefabGUID AB_Monster_PierceShock_AggroBuff = new PrefabGUID(152635966); public static readonly PrefabGUID AB_Monster_PierceShock_Cast = new PrefabGUID(-2088048316); public static readonly PrefabGUID AB_Monster_PierceShock_DamageBuff = new PrefabGUID(-2052458973); public static readonly PrefabGUID AB_Monster_PierceShock_Dash = new PrefabGUID(1565998489); public static readonly PrefabGUID AB_Monster_PierceShock_HasGrabedBuff = new PrefabGUID(-1419903558); public static readonly PrefabGUID AB_Monster_PierceShock_PostDash = new PrefabGUID(-2000878892); public static readonly PrefabGUID AB_Monster_PierceShock_Swing_AbilityGroup = new PrefabGUID(257418700); public static readonly PrefabGUID AB_Monster_PierceShock_Swing_Cast = new PrefabGUID(911471600); public static readonly PrefabGUID AB_Monster_PierceShock_Swing_Hit = new PrefabGUID(348375790); public static readonly PrefabGUID AB_Monster_PierceShock_TargetGrabedBuff = new PrefabGUID(745999782); public static readonly PrefabGUID AB_Monster_Return_AbilityGroup = new PrefabGUID(540661576); public static readonly PrefabGUID AB_Monster_Return_Cast = new PrefabGUID(1004215409); public static readonly PrefabGUID AB_Monster_Stomp_AbilityGroup = new PrefabGUID(764489448); public static readonly PrefabGUID AB_Monster_Stomp_CableBuff = new PrefabGUID(-1679548310); public static readonly PrefabGUID AB_Monster_Stomp_Cast_01 = new PrefabGUID(-1303936630); public static readonly PrefabGUID AB_Monster_Stomp_Hit_01 = new PrefabGUID(1871704091); public static readonly PrefabGUID AB_Monster_Stomp_Shockwave_Projectile = new PrefabGUID(-1028027594); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_AbilityGroup = new PrefabGUID(-2127334043); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Cast = new PrefabGUID(1586504815); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Channel = new PrefabGUID(-684344508); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Minion_Buff = new PrefabGUID(68807609); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Summon = new PrefabGUID(598033946); public static readonly PrefabGUID AB_Monster_Throw_AbilityGroup = new PrefabGUID(-2066895745); public static readonly PrefabGUID AB_Monster_Throw_Cast = new PrefabGUID(-599315676); public static readonly PrefabGUID AB_Monster_Throw_LaunchBuff = new PrefabGUID(-1510240353); public static readonly PrefabGUID AB_Monster_Throw_StunBuff = new PrefabGUID(1559397587); public static readonly PrefabGUID AB_Monster_WarpSlam_AbilityGroup = new PrefabGUID(-2054557525); public static readonly PrefabGUID AB_Monster_WarpSlam_Cast = new PrefabGUID(-2017992195); public static readonly PrefabGUID AB_Monster_WarpSlam_DownedIncapacitate = new PrefabGUID(1433858254); public static readonly PrefabGUID AB_Monster_WarpSlam_Hit = new PrefabGUID(-1377688942); public static readonly PrefabGUID AB_Monster_WarpSlam_LaunchBuff = new PrefabGUID(-1637416665); public static readonly PrefabGUID AB_Monster_WarpSlam_Phase = new PrefabGUID(456846269); public static readonly PrefabGUID AB_Monster_WarpSlam_PostTravelBuff = new PrefabGUID(-1325587588); public static readonly PrefabGUID AB_Moose_AreaAttack_Cast = new PrefabGUID(-1526943133); public static readonly PrefabGUID AB_Moose_AreaAttack_Group = new PrefabGUID(-764767694); public static readonly PrefabGUID AB_Moose_AreaAttack_Hit = new PrefabGUID(-199922219); public static readonly PrefabGUID AB_Moose_Charge_AbilityGroup = new PrefabGUID(1883230955); public static readonly PrefabGUID AB_Moose_Charge_Cast = new PrefabGUID(-588309271); public static readonly PrefabGUID AB_Moose_Charge_Phase = new PrefabGUID(1922676092); public static readonly PrefabGUID AB_Moose_Charge_Winter_AbilityGroup = new PrefabGUID(250913160); public static readonly PrefabGUID AB_Moose_Charge_Winter_Cast = new PrefabGUID(992541510); public static readonly PrefabGUID AB_Moose_Charge_Winter_Phase = new PrefabGUID(1651004222); public static readonly PrefabGUID AB_Morgana_HealingOrb_Throw = new PrefabGUID(1986876497); public static readonly PrefabGUID AB_Morgana_HealingOrb_Trigger = new PrefabGUID(2117206000); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_AbilityGroup = new PrefabGUID(-79098693); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_Cast = new PrefabGUID(-168113643); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_Hit = new PrefabGUID(1802838590); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_LaunchBuff = new PrefabGUID(-1435093992); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_AbilityGroup = new PrefabGUID(340686786); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Cast = new PrefabGUID(-1598726478); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_ChargeBuff = new PrefabGUID(-662560439); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Hit = new PrefabGUID(-987873399); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_PostCast = new PrefabGUID(-1196802042); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Scream_AbilityGroup = new PrefabGUID(-1766338327); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Scream_Cast = new PrefabGUID(539707204); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_WallHitBuff = new PrefabGUID(-284417829); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_AbilityGroup = new PrefabGUID(1459248190); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Cast = new PrefabGUID(759266926); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_AbilityGroup = new PrefabGUID(-1485105952); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_Cast = new PrefabGUID(-592133725); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_DownedStun = new PrefabGUID(-1661817080); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_Hit = new PrefabGUID(-610003173); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Hit01 = new PrefabGUID(-319182672); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Hit02 = new PrefabGUID(1416844066); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_HitBuff = new PrefabGUID(-840600586); public static readonly PrefabGUID AB_Mutant_FleshGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-736079997); public static readonly PrefabGUID AB_Mutant_FleshGolem_MeleeAttack_Cast = new PrefabGUID(-1625589635); public static readonly PrefabGUID AB_Mutant_FleshGolem_MeleeAttack_Hit = new PrefabGUID(40416621); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_Cast = new PrefabGUID(320549285); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_Group = new PrefabGUID(-650383304); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_Hit = new PrefabGUID(240383488); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_MutantBlood_Cast = new PrefabGUID(298951273); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_MutantBlood_Group = new PrefabGUID(-822790233); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_MutantBlood_Hit = new PrefabGUID(1568098360); public static readonly PrefabGUID AB_Mutant_Rat_Taunt_Cast = new PrefabGUID(2063778780); public static readonly PrefabGUID AB_Mutant_Rat_Taunt_Group = new PrefabGUID(306615743); public static readonly PrefabGUID AB_Mutant_Spitter_Bash_AbilityGroup = new PrefabGUID(1771061239); public static readonly PrefabGUID AB_Mutant_Spitter_Bash_Cast = new PrefabGUID(-1451329932); public static readonly PrefabGUID AB_Mutant_Spitter_Bash_Hit = new PrefabGUID(-107206286); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_AbilityGroup = new PrefabGUID(1388701732); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_Area = new PrefabGUID(-1062725775); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_Cast = new PrefabGUID(-1423884099); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_PoisonDebuff = new PrefabGUID(-890471139); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_Throw = new PrefabGUID(-2108180473); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile = new PrefabGUID(1650108830); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile_AbilityGroup = new PrefabGUID(1271143604); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile_AoE = new PrefabGUID(-1801334178); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile_Cast = new PrefabGUID(1766367215); public static readonly PrefabGUID AB_Mutant_Spitter_Taunt_AbilityGroup = new PrefabGUID(-1038102898); public static readonly PrefabGUID AB_Mutant_Spitter_Taunt_Cast = new PrefabGUID(971867390); public static readonly PrefabGUID AB_Nightlurker_HeavyAttack_AbilityGroup = new PrefabGUID(-14207169); public static readonly PrefabGUID AB_Nightlurker_HeavyAttack_Cast = new PrefabGUID(-1425324425); public static readonly PrefabGUID AB_Nightlurker_HeavyAttack_Hit = new PrefabGUID(1611321156); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack01_AbilityGroup = new PrefabGUID(-195118922); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack01_Cast = new PrefabGUID(-1727733622); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack01_Hit = new PrefabGUID(-1809201998); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack02_AbilityGroup = new PrefabGUID(1708209167); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack02_Cast = new PrefabGUID(-1403393783); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack02_Hit = new PrefabGUID(-282333695); public static readonly PrefabGUID AB_Nightlurker_Rush_AbilityGroup = new PrefabGUID(-413591328); public static readonly PrefabGUID AB_Nightlurker_Rush_Buff = new PrefabGUID(505018388); public static readonly PrefabGUID AB_Nightlurker_Rush_Cast = new PrefabGUID(430516423); public static readonly PrefabGUID AB_NightMaiden_MeleeAttack_AbilityGroup = new PrefabGUID(175670852); public static readonly PrefabGUID AB_NightMaiden_MeleeAttack_Cast = new PrefabGUID(-1947308699); public static readonly PrefabGUID AB_NightMaiden_MeleeAttack_Hit = new PrefabGUID(1733260604); public static readonly PrefabGUID AB_Noctem_Trader_Attack_AbilityGroup = new PrefabGUID(-1981491221); public static readonly PrefabGUID AB_Noctem_Trader_Attack_Cast = new PrefabGUID(1245399064); public static readonly PrefabGUID AB_Noctem_Trader_Attack_Projectile = new PrefabGUID(-1789959759); public static readonly PrefabGUID AB_Nun_AoE_AbilityGroup = new PrefabGUID(1267698255); public static readonly PrefabGUID AB_Nun_AoE_AbilityGroup_ALREADY_EXISTS_2 = new PrefabGUID(919394375); public static readonly PrefabGUID AB_Nun_AoE_ApplyLight_Buff = new PrefabGUID(-225445080); public static readonly PrefabGUID AB_Nun_AoE_Cast = new PrefabGUID(-1327158740); public static readonly PrefabGUID AB_Nun_AoE_Cast_ALREADY_EXISTS_2 = new PrefabGUID(-1056032824); public static readonly PrefabGUID AB_Nun_AoE_Ground = new PrefabGUID(-1314959120); public static readonly PrefabGUID AB_Nun_AoE_Ground_Delay = new PrefabGUID(546255861); public static readonly PrefabGUID AB_Nun_AoE_Ground_Impact = new PrefabGUID(365595489); public static readonly PrefabGUID AB_Nun_AoE_Light_Buff = new PrefabGUID(-1466712470); public static readonly PrefabGUID AB_Nun_AoE_Light_Debuff = new PrefabGUID(178225731); public static readonly PrefabGUID AB_Nun_AoE_Throw = new PrefabGUID(-525653914); public static readonly PrefabGUID AB_Nun_AoE_Throw_ALREADY_EXISTS_2 = new PrefabGUID(-1777782037); public static readonly PrefabGUID AB_Nun_Counter_AbilityGroup = new PrefabGUID(-1725804558); public static readonly PrefabGUID AB_Nun_Counter_Buff = new PrefabGUID(-309950314); public static readonly PrefabGUID AB_Nun_Counter_Cast = new PrefabGUID(-1347852248); public static readonly PrefabGUID AB_Nun_Counter_Hit = new PrefabGUID(1860577222); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_AbilityGroup = new PrefabGUID(605530795); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_Cast = new PrefabGUID(124716728); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_Projectile = new PrefabGUID(292536976); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_Spinner = new PrefabGUID(-65352590); public static readonly PrefabGUID AB_Nun_HealingChannel_AbilityGroup = new PrefabGUID(54266570); public static readonly PrefabGUID AB_Nun_HealingChannel_AbilityGroup_Long = new PrefabGUID(1090673078); public static readonly PrefabGUID AB_Nun_HealingChannel_AbilityGroup_Short = new PrefabGUID(397860291); public static readonly PrefabGUID AB_Nun_HealingChannel_Buff = new PrefabGUID(1238761918); public static readonly PrefabGUID AB_Nun_HealingChannel_Buff_Long = new PrefabGUID(-1023972003); public static readonly PrefabGUID AB_Nun_HealingChannel_Buff_Short = new PrefabGUID(196684530); public static readonly PrefabGUID AB_Nun_HealingChannel_Cast = new PrefabGUID(1303130448); public static readonly PrefabGUID AB_Nun_HealingChannel_Cast_Long = new PrefabGUID(-1251225382); public static readonly PrefabGUID AB_Nun_HealingChannel_Cast_Short = new PrefabGUID(482056232); public static readonly PrefabGUID AB_Nun_HealingTarget_Buff = new PrefabGUID(-1338019725); public static readonly PrefabGUID AB_Nun_HealingTarget_Cast = new PrefabGUID(1148384259); public static readonly PrefabGUID AB_Nun_HealingTarget_Group = new PrefabGUID(-1079667900); public static readonly PrefabGUID AB_Nun_HolyProjectile_AbilityGroup = new PrefabGUID(-1581417695); public static readonly PrefabGUID AB_Nun_HolyProjectile_Cast = new PrefabGUID(1657176997); public static readonly PrefabGUID AB_Nun_HolyProjectile_Projectile = new PrefabGUID(-1266856881); public static readonly PrefabGUID AB_Nun_HolyProjectile_Trigger = new PrefabGUID(528702510); public static readonly PrefabGUID AB_Nun_MeleeAttack_Cast = new PrefabGUID(-1575119738); public static readonly PrefabGUID AB_Nun_MeleeAttack_Group = new PrefabGUID(22263894); public static readonly PrefabGUID AB_Nun_MeleeAttack_Hit = new PrefabGUID(-1296752620); public static readonly PrefabGUID AB_Nun_Projectile = new PrefabGUID(764919055); public static readonly PrefabGUID AB_Nun_Projectile_Cast = new PrefabGUID(-1501966038); public static readonly PrefabGUID AB_Nun_Projectile_Channel_Buff = new PrefabGUID(728650887); public static readonly PrefabGUID AB_Nun_Projectile_Group = new PrefabGUID(-1199987827); public static readonly PrefabGUID AB_Nun_VBlood_HealCommand_AbilityGroup = new PrefabGUID(-1756529149); public static readonly PrefabGUID AB_Nun_VBlood_HealCommand_Buff = new PrefabGUID(-1852778592); public static readonly PrefabGUID AB_Nun_VBlood_HealCommand_Cast = new PrefabGUID(199967204); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_AbilityGroup = new PrefabGUID(607644390); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_Cast = new PrefabGUID(991483255); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_Hit = new PrefabGUID(-2056876331); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_Projectile = new PrefabGUID(-1192068123); public static readonly PrefabGUID AB_Nun_VBlood_SpawnMinions_AbilityGroup = new PrefabGUID(-1754021382); public static readonly PrefabGUID AB_Nun_VBlood_SpawnMinions_Cast = new PrefabGUID(-526273546); public static readonly PrefabGUID AB_Nun_VBlood_SpawnMinions_Summon = new PrefabGUID(2101490191); public static readonly PrefabGUID AB_Ocean_Blowfish_Projectile = new PrefabGUID(1953054130); public static readonly PrefabGUID AB_Ocean_Blowfish_Swim_AbilityGroup = new PrefabGUID(177071276); public static readonly PrefabGUID AB_Ocean_Blowfish_Swim_Cast = new PrefabGUID(-1294856119); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_AbilityGroup = new PrefabGUID(-1059091794); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_BitingBuff = new PrefabGUID(-534472898); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_Cast = new PrefabGUID(315497297); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_Hit = new PrefabGUID(-547080929); public static readonly PrefabGUID AB_Ocean_Piranha_Circle_AbilityGroup = new PrefabGUID(-1763951497); public static readonly PrefabGUID AB_Ocean_Piranha_Circle_Cast = new PrefabGUID(213628655); public static readonly PrefabGUID AB_Ocean_Piranha_Circle_StrafeBuff = new PrefabGUID(-353710736); public static readonly PrefabGUID AB_OpenMenu_BuildMenu = new PrefabGUID(628606387); public static readonly PrefabGUID AB_OpenMenu_BuildMenu_AbilityGroup = new PrefabGUID(-996493500); public static readonly PrefabGUID AB_OpenMenu_BuildMenu_Cast = new PrefabGUID(785101229); public static readonly PrefabGUID AB_Paladin_ChargeMeleeAttack_AbilityGroup = new PrefabGUID(-448018551); public static readonly PrefabGUID AB_Paladin_ChargeMeleeAttack_Cast = new PrefabGUID(-135205948); public static readonly PrefabGUID AB_Paladin_ChargeMeleeAttack_Hit = new PrefabGUID(-223424384); public static readonly PrefabGUID AB_Paladin_Dash_AbilityGroup = new PrefabGUID(413176017); public static readonly PrefabGUID AB_Paladin_Dash_Cast = new PrefabGUID(-1819508776); public static readonly PrefabGUID AB_Paladin_Dash_Cast_Unused_SharedSequence = new PrefabGUID(-1994660225); public static readonly PrefabGUID AB_Paladin_Dash_Phase = new PrefabGUID(-428120902); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_AbilityGroup = new PrefabGUID(1927100043); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Cast = new PrefabGUID(1366719412); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_ChannelBuff = new PrefabGUID(-1063438490); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Projectile01 = new PrefabGUID(1762254236); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Projectile02 = new PrefabGUID(1114471086); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Spinner01 = new PrefabGUID(1088466884); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Spinner02 = new PrefabGUID(1493105733); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_AbilityGroup = new PrefabGUID(124285667); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_Cast = new PrefabGUID(1425523189); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_Phase = new PrefabGUID(-1731620709); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_Post = new PrefabGUID(-913669419); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_AbilityGroup = new PrefabGUID(31826871); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_AggroBuff = new PrefabGUID(-224687934); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Area = new PrefabGUID(1321054427); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Cast = new PrefabGUID(2137346253); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Channel = new PrefabGUID(-1414846289); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Projectile = new PrefabGUID(-2023779225); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_AbilityGroup = new PrefabGUID(985669672); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_Cast = new PrefabGUID(-1853497889); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_SpawnerProjectile01 = new PrefabGUID(-161417409); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_SpawnerProjectile02 = new PrefabGUID(1939459631); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_Throw = new PrefabGUID(-602633418); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_Trigger = new PrefabGUID(-1058738214); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_TriggerBuff = new PrefabGUID(1392777264); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_AbilityGroup = new PrefabGUID(-105601189); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_Cast01 = new PrefabGUID(-1027110042); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_Cast02 = new PrefabGUID(665368660); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_Cast03 = new PrefabGUID(1096657837); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit01 = new PrefabGUID(1565046753); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit02 = new PrefabGUID(31465263); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit03 = new PrefabGUID(-436653634); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit04 = new PrefabGUID(-1782361353); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit05 = new PrefabGUID(1482443640); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_SwingHit = new PrefabGUID(-336914569); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_AbilityGroup = new PrefabGUID(1309712000); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Area = new PrefabGUID(-1260282342); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Cast = new PrefabGUID(863095122); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Channel = new PrefabGUID(-276630616); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_ImpactStun = new PrefabGUID(-780208408); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_PaladinBuff = new PrefabGUID(126325102); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Projectile = new PrefabGUID(882224304); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_SelfBuff = new PrefabGUID(1191955967); public static readonly PrefabGUID AB_Paladin_FallenAngel_Dash_AbilityGroup = new PrefabGUID(-1364891068); public static readonly PrefabGUID AB_Paladin_FallenAngel_Dash_Cast = new PrefabGUID(-1841398888); public static readonly PrefabGUID AB_Paladin_FallenAngel_Dash_Phase = new PrefabGUID(-1774793471); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_AbilityGroup = new PrefabGUID(-8655403); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_Cast01 = new PrefabGUID(1119948324); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_Cast02 = new PrefabGUID(-1119950225); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_Cast03 = new PrefabGUID(-2024297160); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit01 = new PrefabGUID(-598113938); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit02 = new PrefabGUID(973030350); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit03 = new PrefabGUID(932035097); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit04 = new PrefabGUID(-117453894); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit05 = new PrefabGUID(-943197286); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_SwingHit = new PrefabGUID(-766264377); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_AbilityGroup = new PrefabGUID(-1847055470); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Area = new PrefabGUID(-427815084); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Cast = new PrefabGUID(1624547915); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Channel = new PrefabGUID(2033792992); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Projectile = new PrefabGUID(-1322577210); public static readonly PrefabGUID AB_Paladin_HolyNuke_AbilityGroup = new PrefabGUID(1926314891); public static readonly PrefabGUID AB_Paladin_HolyNuke_Buff = new PrefabGUID(-1807398295); public static readonly PrefabGUID AB_Paladin_HolyNuke_Cast = new PrefabGUID(-423326103); public static readonly PrefabGUID AB_Paladin_HolyNuke_Hit = new PrefabGUID(395569863); public static readonly PrefabGUID AB_Paladin_MeleeAttack_AbilityGroup = new PrefabGUID(1212343160); public static readonly PrefabGUID AB_Paladin_MeleeAttack_Cast = new PrefabGUID(-1722361046); public static readonly PrefabGUID AB_Paladin_MeleeAttack_Hit = new PrefabGUID(-776895691); public static readonly PrefabGUID AB_Paladin_OnAggro_AbilityGroup = new PrefabGUID(-1408189956); public static readonly PrefabGUID AB_Paladin_OnAggro_Cast = new PrefabGUID(-299486907); public static readonly PrefabGUID AB_Paladin_OnAggro_Group = new PrefabGUID(-643255566); public static readonly PrefabGUID AB_Paladin_ShockWaveSlam_AbilityGroup = new PrefabGUID(-626021308); public static readonly PrefabGUID AB_Paladin_ShockWaveSlam_Cast = new PrefabGUID(-1734736354); public static readonly PrefabGUID AB_Paladin_ShockWaveSlam_Hit = new PrefabGUID(-996778647); public static readonly PrefabGUID AB_PaladinShockWave_Projectile = new PrefabGUID(-480497639); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_AbilityGroup = new PrefabGUID(66606146); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_DashCast = new PrefabGUID(2098101392); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Immaterial = new PrefabGUID(69982784); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_AbilityGroup = new PrefabGUID(-1145923288); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Cast = new PrefabGUID(286387494); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_ExplosiveBuff = new PrefabGUID(-580613535); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_ExplosiveImpact = new PrefabGUID(728144325); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_ExplosiveImpact_DoubleBarrel = new PrefabGUID(-835895377); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_HitBuff = new PrefabGUID(-2011295261); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Projectile = new PrefabGUID(-1274932233); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Recast_AbilityGroup = new PrefabGUID(1913579080); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Recast_Cast = new PrefabGUID(-1783827601); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Recast_Projectile = new PrefabGUID(-858163982); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_RecastBuff = new PrefabGUID(-246775707); public static readonly PrefabGUID AB_Pistols_FanTheHammer_AbilityGroup = new PrefabGUID(760344149); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Cast = new PrefabGUID(1356553255); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Channel = new PrefabGUID(-102660349); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Channel_Move = new PrefabGUID(-1028216735); public static readonly PrefabGUID AB_Pistols_FanTheHammer_DummyAimpreview = new PrefabGUID(1807176591); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Hit = new PrefabGUID(-1238384604); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Projectile = new PrefabGUID(-1279354734); public static readonly PrefabGUID AB_Pistols_Primary_Attack_AbilityGroup = new PrefabGUID(-1490887838); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Cast01 = new PrefabGUID(-1246832826); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Cast02 = new PrefabGUID(1552752232); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Cast03 = new PrefabGUID(1394076868); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_AbilityGroup = new PrefabGUID(-413053555); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_Cast01 = new PrefabGUID(-1684142361); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_Cast02 = new PrefabGUID(-1117218632); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_Cast03 = new PrefabGUID(-819536316); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_01 = new PrefabGUID(-736673188); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_02 = new PrefabGUID(-1103939573); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_Mounted_01 = new PrefabGUID(352611039); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_Mounted_02 = new PrefabGUID(794485805); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBlood_Projectile_01 = new PrefabGUID(1169758276); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBlood_Projectile_02 = new PrefabGUID(534014665); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBones_Projectile_01 = new PrefabGUID(-992576753); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBones_Projectile_02 = new PrefabGUID(-452996621); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfChaos_Projectile_01 = new PrefabGUID(1345961852); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfChaos_Projectile_02 = new PrefabGUID(1745574776); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfFrost_Projectile_01 = new PrefabGUID(-1905990999); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfFrost_Projectile_02 = new PrefabGUID(1215968257); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfIllusion_Projectile_01 = new PrefabGUID(-1316615675); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfIllusion_Projectile_02 = new PrefabGUID(-663318402); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfShadow_Projectile_01 = new PrefabGUID(1139820531); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfShadow_Projectile_02 = new PrefabGUID(-2075080541); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfStorm_Projectile_01 = new PrefabGUID(1902768390); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfStorm_Projectile_02 = new PrefabGUID(1342140363); public static readonly PrefabGUID AB_Pixie_Projectile = new PrefabGUID(39329543); public static readonly PrefabGUID AB_Pixie_Projectile_Cast = new PrefabGUID(-2952395); public static readonly PrefabGUID AB_Pixie_Projectile_Group = new PrefabGUID(-259433272); public static readonly PrefabGUID AB_Poloma_Hard_Projectile = new PrefabGUID(-397818132); public static readonly PrefabGUID AB_Poloma_Hard_Projectile_Cast = new PrefabGUID(-1214248619); public static readonly PrefabGUID AB_Poloma_Hard_Projectile_Group = new PrefabGUID(-595482115); public static readonly PrefabGUID AB_Poloma_Otherside_AbilityGroup = new PrefabGUID(1795809188); public static readonly PrefabGUID AB_Poloma_Otherside_AbilityGroup_Ally = new PrefabGUID(2033547790); public static readonly PrefabGUID AB_Poloma_Otherside_Buff = new PrefabGUID(686250802); public static readonly PrefabGUID AB_Poloma_Otherside_Cast = new PrefabGUID(1681004179); public static readonly PrefabGUID AB_Poloma_Otherside_Cast_Ally = new PrefabGUID(655578962); public static readonly PrefabGUID AB_Poloma_Pixie_Cast = new PrefabGUID(1938657407); public static readonly PrefabGUID AB_Poloma_Pixie_Group = new PrefabGUID(-1036943907); public static readonly PrefabGUID AB_Poloma_Pixie_Summon = new PrefabGUID(-106223515); public static readonly PrefabGUID AB_Poloma_Projectile = new PrefabGUID(262129124); public static readonly PrefabGUID AB_Poloma_Projectile_Cast = new PrefabGUID(1213441760); public static readonly PrefabGUID AB_Poloma_Projectile_Group = new PrefabGUID(-914903899); public static readonly PrefabGUID AB_Poloma_SpiritRift_Cast = new PrefabGUID(-1099141658); public static readonly PrefabGUID AB_Poloma_SpiritRift_Group = new PrefabGUID(-939006306); public static readonly PrefabGUID AB_Poloma_SpiritRift_Throw = new PrefabGUID(-631223103); public static readonly PrefabGUID AB_Poloma_Wolf_AbilityGroup = new PrefabGUID(-321651703); public static readonly PrefabGUID AB_Poloma_Wolf_Cast = new PrefabGUID(829434562); public static readonly PrefabGUID AB_Poloma_Wolf_Projectile = new PrefabGUID(-1245976584); public static readonly PrefabGUID AB_Poloma_Wolf_Projectile_FirstProjectile = new PrefabGUID(429350778); public static readonly PrefabGUID AB_Prisoner_VillagerFemale_OnAggro_AbilityGroup_01 = new PrefabGUID(394173239); public static readonly PrefabGUID AB_Prisoner_VillagerFemale_OnAggro_Cast_01 = new PrefabGUID(176360765); public static readonly PrefabGUID AB_Prisoner_VillagerMale_OnAggro_AbilityGroup_01 = new PrefabGUID(-1806163577); public static readonly PrefabGUID AB_Prisoner_VillagerMale_OnAggro_Cast_01 = new PrefabGUID(1368749418); public static readonly PrefabGUID AB_PrisonInteract_AbilityGroup = new PrefabGUID(-1825390216); public static readonly PrefabGUID AB_PrisonInteract_Cast = new PrefabGUID(1292254844); public static readonly PrefabGUID AB_PrisonInteract_Hit = new PrefabGUID(1435009879); public static readonly PrefabGUID AB_Prog_Boomerang_Cast = new PrefabGUID(-1731953910); public static readonly PrefabGUID AB_Prog_Boomerang_Group = new PrefabGUID(992487676); public static readonly PrefabGUID AB_Prog_Boomerang_Return = new PrefabGUID(-110872883); public static readonly PrefabGUID AB_Prog_HomingNova_Cast = new PrefabGUID(-1107333474); public static readonly PrefabGUID AB_Prog_HomingNova_Group = new PrefabGUID(-1085783726); public static readonly PrefabGUID AB_Prog_HomingNova_Projectile = new PrefabGUID(2136487395); public static readonly PrefabGUID AB_Purifier_BackBarrier_AbilityGroup = new PrefabGUID(-41022254); public static readonly PrefabGUID AB_Purifier_BackBarrier_Cast = new PrefabGUID(119196949); public static readonly PrefabGUID AB_Purifier_BackBarrier_LeftBuff = new PrefabGUID(569251826); public static readonly PrefabGUID AB_Purifier_BackBarrier_RightBuff = new PrefabGUID(960501997); public static readonly PrefabGUID AB_Purifier_Barrier_PurgeBarriers = new PrefabGUID(-1144410559); public static readonly PrefabGUID AB_Purifier_ChaosQuake_AbilityGroup = new PrefabGUID(1922493152); public static readonly PrefabGUID AB_Purifier_ChaosQuake_AreaThrow = new PrefabGUID(-1493279308); public static readonly PrefabGUID AB_Purifier_ChaosQuake_Cast = new PrefabGUID(1269984130); public static readonly PrefabGUID AB_Purifier_ChaosQuake_Hit = new PrefabGUID(-1488336159); public static readonly PrefabGUID AB_Purifier_ChaosQuake_Projectile = new PrefabGUID(-1581582910); public static readonly PrefabGUID AB_Purifier_ChaosSpray_AbilityGroup = new PrefabGUID(1228457971); public static readonly PrefabGUID AB_Purifier_ChaosSpray_Cast = new PrefabGUID(-969544598); public static readonly PrefabGUID AB_Purifier_ChaosSpray_PostCast = new PrefabGUID(385578968); public static readonly PrefabGUID AB_Purifier_ChaosSpray_Projectile = new PrefabGUID(991462357); public static readonly PrefabGUID AB_Purifier_ChaosSpray_Spinner = new PrefabGUID(844010592); public static readonly PrefabGUID AB_Purifier_ChaosVolley_AbilityGroup = new PrefabGUID(1425686238); public static readonly PrefabGUID AB_Purifier_ChaosVolley_AggroBuff = new PrefabGUID(-1479750402); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Area = new PrefabGUID(-1286403651); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Area_Projectile = new PrefabGUID(-1180502249); public static readonly PrefabGUID AB_Purifier_ChaosVolley_BurnDebuff = new PrefabGUID(1163490655); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Cast = new PrefabGUID(-319831648); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Channel = new PrefabGUID(1984434974); public static readonly PrefabGUID AB_Purifier_ChaosVolley_PostCast = new PrefabGUID(-1907523949); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Throw = new PrefabGUID(1613206303); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_AbilityGroup = new PrefabGUID(-1672126097); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_AreaKnockback = new PrefabGUID(955242202); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_Cast = new PrefabGUID(1772596288); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_LeftBuff = new PrefabGUID(593446973); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_Projectile = new PrefabGUID(930713149); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_RightBuff = new PrefabGUID(1075662022); public static readonly PrefabGUID AB_Purifier_JetPunch_AbilityGroup = new PrefabGUID(698366326); public static readonly PrefabGUID AB_Purifier_JetPunch_AggroBuff = new PrefabGUID(-1063958665); public static readonly PrefabGUID AB_Purifier_JetPunch_Cast = new PrefabGUID(1517153912); public static readonly PrefabGUID AB_Purifier_JetPunch_Dash = new PrefabGUID(-982975585); public static readonly PrefabGUID AB_Purifier_JetPunch_DownedStun = new PrefabGUID(-2071551838); public static readonly PrefabGUID AB_Purifier_JetPunch_LaunchBuff = new PrefabGUID(1883832448); public static readonly PrefabGUID AB_Purifier_JetPunch_PostDash = new PrefabGUID(1482865799); public static readonly PrefabGUID AB_Purifier_JetPunch_Swing_AbilityGroup = new PrefabGUID(452849117); public static readonly PrefabGUID AB_Purifier_JetPunch_Swing_Cast = new PrefabGUID(-1702533942); public static readonly PrefabGUID AB_Purifier_JetPunch_Swing_Hit = new PrefabGUID(-1148943993); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_AbilityGroup = new PrefabGUID(-1567787423); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_Cast = new PrefabGUID(637562480); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_EndPhase = new PrefabGUID(-1391280466); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_Phase = new PrefabGUID(-2050984476); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_FarBack_AbilityGroup = new PrefabGUID(973636261); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_FarBack_Buff = new PrefabGUID(1300822575); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_FarBack_Cast = new PrefabGUID(-993971139); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_AbilityGroup = new PrefabGUID(62042854); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_Cast = new PrefabGUID(1571491196); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_EndPhase = new PrefabGUID(1038320521); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_Phase = new PrefabGUID(554446938); public static readonly PrefabGUID AB_Purifier_MeleeAttack_AbilityGroup = new PrefabGUID(936625846); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Cast = new PrefabGUID(-302354289); public static readonly PrefabGUID AB_Purifier_MeleeAttack_DownedStun = new PrefabGUID(803103305); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Hit = new PrefabGUID(-71074635); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Left_AbilityGroup = new PrefabGUID(-825962514); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Left_Cast = new PrefabGUID(1964316578); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Left_Hit = new PrefabGUID(378511410); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Right_AbilityGroup = new PrefabGUID(1343651850); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Right_Cast = new PrefabGUID(145556757); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Right_Hit = new PrefabGUID(-216691993); public static readonly PrefabGUID AB_Purifier_RotationBoost_AbilityGroup = new PrefabGUID(-675519112); public static readonly PrefabGUID AB_Purifier_RotationBoost_Buff = new PrefabGUID(791787133); public static readonly PrefabGUID AB_Purifier_RotationBoost_Cast = new PrefabGUID(-1381686893); public static readonly PrefabGUID AB_Purifier_ScatterLob_AbilityGroup = new PrefabGUID(718360189); public static readonly PrefabGUID AB_Purifier_ScatterLob_Cast = new PrefabGUID(-21577654); public static readonly PrefabGUID AB_Purifier_ScatterLob_Projectile = new PrefabGUID(666034998); public static readonly PrefabGUID AB_Purifier_ScatterLob_Throw = new PrefabGUID(471073242); public static readonly PrefabGUID AB_Purifier_ScatterLob_Trigger = new PrefabGUID(1190288358); public static readonly PrefabGUID AB_Purifier_VerminRepellent_AbilityGroup = new PrefabGUID(1189720448); public static readonly PrefabGUID AB_Purifier_VerminRepellent_Cast = new PrefabGUID(-1867160935); public static readonly PrefabGUID AB_Purifier_VerminRepellent_Projectile = new PrefabGUID(-1719650892); public static readonly PrefabGUID AB_Purifier_VerminRepellent_Throw = new PrefabGUID(891640900); public static readonly PrefabGUID AB_Rat_Immaterial_Buff = new PrefabGUID(1746259719); public static readonly PrefabGUID AB_ReleaseSlaves_AoECheck = new PrefabGUID(-1520552223); public static readonly PrefabGUID AB_Rifleman_Projectile_Cast = new PrefabGUID(-658144916); public static readonly PrefabGUID AB_Rifleman_Projectile_Group = new PrefabGUID(1622839653); public static readonly PrefabGUID AB_Rifleman_Projectile01 = new PrefabGUID(2020258727); public static readonly PrefabGUID AB_RockElemental_Awake_AbilityGroup = new PrefabGUID(-2050883182); public static readonly PrefabGUID AB_RockElemental_Awake_Cast = new PrefabGUID(1076314647); public static readonly PrefabGUID AB_RockElemental_FallAsleep_Buff_AbilityGroup = new PrefabGUID(-1924288461); public static readonly PrefabGUID AB_RockElemental_FallAsleep_Buff_Cast = new PrefabGUID(-2058809126); public static readonly PrefabGUID AB_RockElemental_FallAsleep_Buff_SleepingIdle = new PrefabGUID(218410291); public static readonly PrefabGUID AB_RockElemental_Leap_AbilityGroup = new PrefabGUID(294532069); public static readonly PrefabGUID AB_RockElemental_Leap_Cast = new PrefabGUID(650871197); public static readonly PrefabGUID AB_RockElemental_Leap_End = new PrefabGUID(2120225821); public static readonly PrefabGUID AB_RockElemental_Leap_Phase = new PrefabGUID(-430970428); public static readonly PrefabGUID AB_RockElemental_MeleeAttack_AbilityGroup = new PrefabGUID(-560639220); public static readonly PrefabGUID AB_RockElemental_MeleeAttack_Cast = new PrefabGUID(750705261); public static readonly PrefabGUID AB_RockElemental_MeleeAttack_Hit = new PrefabGUID(-241120205); public static readonly PrefabGUID AB_RockElemental_Rollout_AbilityGroup = new PrefabGUID(-150520781); public static readonly PrefabGUID AB_RockElemental_Rollout_Cast = new PrefabGUID(-364910199); public static readonly PrefabGUID AB_RockElemental_Rollout_Phase = new PrefabGUID(-931247281); public static readonly PrefabGUID AB_RockElemental_Rollout_PostDashBuff = new PrefabGUID(1924537261); public static readonly PrefabGUID AB_Scarecrow_Blind_Debuff = new PrefabGUID(860347517); public static readonly PrefabGUID AB_Scarecrow_Counter_AbilityGroup = new PrefabGUID(741783094); public static readonly PrefabGUID AB_Scarecrow_Counter_Buff = new PrefabGUID(48394277); public static readonly PrefabGUID AB_Scarecrow_Counter_Cast = new PrefabGUID(824723586); public static readonly PrefabGUID AB_Scarecrow_Counter_PreTravel = new PrefabGUID(-1346667899); public static readonly PrefabGUID AB_Scarecrow_Counter_Travel = new PrefabGUID(-1770136907); public static readonly PrefabGUID AB_Scarecrow_Counter_TravelEnd = new PrefabGUID(1971523772); public static readonly PrefabGUID AB_Scarecrow_Idle_Buff = new PrefabGUID(688560582); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Cast01 = new PrefabGUID(1546564020); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Cast02 = new PrefabGUID(-774011304); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Group = new PrefabGUID(-1436929556); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Hit_Fork = new PrefabGUID(372532588); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Hit_Sickle = new PrefabGUID(719261515); public static readonly PrefabGUID AB_Scarecrow_Projectile_Cast = new PrefabGUID(-960670153); public static readonly PrefabGUID AB_Scarecrow_Projectile_Group = new PrefabGUID(594778109); public static readonly PrefabGUID AB_Scarecrow_Projectile01 = new PrefabGUID(1258810436); public static readonly PrefabGUID AB_Scarecrow_Projectile02 = new PrefabGUID(1491475964); public static readonly PrefabGUID AB_Scarecrow_Scream_Area = new PrefabGUID(-1902498305); public static readonly PrefabGUID AB_Scarecrow_Scream_Cast = new PrefabGUID(399910725); public static readonly PrefabGUID AB_Scarecrow_Scream_Group = new PrefabGUID(382761265); public static readonly PrefabGUID AB_Scratcher_Dash_AbilityGroup = new PrefabGUID(-265839081); public static readonly PrefabGUID AB_Scratcher_Dash_Cast = new PrefabGUID(-1975037660); public static readonly PrefabGUID AB_Scratcher_Dash_Phase = new PrefabGUID(-749748299); public static readonly PrefabGUID AB_Scratcher_Launcher_AbilityGroup = new PrefabGUID(1245308829); public static readonly PrefabGUID AB_Scratcher_Launcher_Cast = new PrefabGUID(75890525); public static readonly PrefabGUID AB_Scratcher_Launcher_Hit = new PrefabGUID(-321434156); public static readonly PrefabGUID AB_Scratcher_Melee_AbilityGroup = new PrefabGUID(769558056); public static readonly PrefabGUID AB_Scratcher_Melee_Cast = new PrefabGUID(-113575797); public static readonly PrefabGUID AB_Scratcher_Melee_Hit = new PrefabGUID(1305855243); public static readonly PrefabGUID AB_Scratcher_SpinAttack_AbilityGroup = new PrefabGUID(-738502538); public static readonly PrefabGUID AB_Scratcher_SpinAttack_Cast = new PrefabGUID(432706507); public static readonly PrefabGUID AB_Scratcher_SpinAttack_Channel = new PrefabGUID(-403803467); public static readonly PrefabGUID AB_Scratcher_SpinAttack_Hit = new PrefabGUID(1672932239); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff01 = new PrefabGUID(1953176948); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff01_Respawning = new PrefabGUID(-294186400); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff02 = new PrefabGUID(231106250); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff02_Respawning = new PrefabGUID(2064967183); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff03 = new PrefabGUID(1193543239); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff03_Respawning = new PrefabGUID(-787058191); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_HitBuff = new PrefabGUID(738688960); public static readonly PrefabGUID AB_Scribe_InkCrawler_CircleDistance_AbilityGroup = new PrefabGUID(338593632); public static readonly PrefabGUID AB_Scribe_InkCrawler_CircleDistance_Buff = new PrefabGUID(854100969); public static readonly PrefabGUID AB_Scribe_InkCrawler_CircleDistance_Cast = new PrefabGUID(-1616350290); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_AbilityGroup = new PrefabGUID(1239155316); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Area = new PrefabGUID(-1965326732); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Cast = new PrefabGUID(-1206492862); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_PoisonDebuff = new PrefabGUID(334642283); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Projectile = new PrefabGUID(1081135899); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Throw = new PrefabGUID(-374382921); public static readonly PrefabGUID AB_SeaSerpent_AggroArea = new PrefabGUID(2040493056); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Cast = new PrefabGUID(-911022007); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Group = new PrefabGUID(-1287271443); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Throw = new PrefabGUID(1891999992); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Trigger = new PrefabGUID(419672858); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_AbilityGroup = new PrefabGUID(1506479890); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_AoE = new PrefabGUID(884513149); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_Cast = new PrefabGUID(281240320); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_Projectile = new PrefabGUID(-565208290); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_AbilityGroup = new PrefabGUID(1115346958); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Cast = new PrefabGUID(1011930736); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_AbilityGroup = new PrefabGUID(-938355432); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Cast = new PrefabGUID(2003762356); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Combo01_AbilityGroup = new PrefabGUID(-1470096516); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Combo02_AbilityGroup = new PrefabGUID(163224625); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Hit = new PrefabGUID(24735896); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hit = new PrefabGUID(567597112); public static readonly PrefabGUID AB_Shadowkin_ChaosBoltSingleCast_AbilityGroup = new PrefabGUID(530484088); public static readonly PrefabGUID AB_Shadowkin_ChaosBoltSingleCast_Cast = new PrefabGUID(1585495776); public static readonly PrefabGUID AB_Shadowkin_ChaosBoltSingleCast_Projectile = new PrefabGUID(1147611870); public static readonly PrefabGUID AB_Shapesfhit_Golem_ExitForm_Cast = new PrefabGUID(-588977169); public static readonly PrefabGUID AB_Shapesfhit_Golem_ExitForm_Group = new PrefabGUID(1546717070); public static readonly PrefabGUID AB_Shapesfhit_Golem_ExitForm_Trigger = new PrefabGUID(-1168312376); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Cast = new PrefabGUID(-596182398); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Group = new PrefabGUID(-1303418171); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Hit = new PrefabGUID(385944154); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_LoS_Check = new PrefabGUID(-1528045058); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Stun = new PrefabGUID(179778755); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_MeleeAttack_Cast = new PrefabGUID(1045370357); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_MeleeAttack_Group = new PrefabGUID(-27840697); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_MeleeAttack_Hit = new PrefabGUID(106246702); public static readonly PrefabGUID AB_Shapeshift_Bat_Group = new PrefabGUID(-104327922); public static readonly PrefabGUID AB_Shapeshift_Bat_Land_AbilityGroup = new PrefabGUID(1558475957); public static readonly PrefabGUID AB_Shapeshift_Bat_Land_PreCast = new PrefabGUID(1835868090); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_AbilityGroup = new PrefabGUID(1679087496); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_Cast = new PrefabGUID(-1608204145); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_Travel = new PrefabGUID(-371745443); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_Travel_End = new PrefabGUID(-2001733587); public static readonly PrefabGUID AB_Shapeshift_Bat_PreCast = new PrefabGUID(618866625); public static readonly PrefabGUID AB_Shapeshift_Bat_TakeFlight_Buff = new PrefabGUID(1205505492); public static readonly PrefabGUID AB_Shapeshift_Bat_TakeFlight_Cast = new PrefabGUID(2072057913); public static readonly PrefabGUID AB_Shapeshift_Bat_TakeFlight_Group = new PrefabGUID(576026408); public static readonly PrefabGUID AB_Shapeshift_Bear_Buff = new PrefabGUID(-1569370346); public static readonly PrefabGUID AB_Shapeshift_Bear_Cast = new PrefabGUID(1820111391); public static readonly PrefabGUID AB_Shapeshift_Bear_Dash = new PrefabGUID(3728954); public static readonly PrefabGUID AB_Shapeshift_Bear_Dash_Cast = new PrefabGUID(-1595304562); public static readonly PrefabGUID AB_Shapeshift_Bear_Dash_Group = new PrefabGUID(1873182450); public static readonly PrefabGUID AB_Shapeshift_Bear_Group = new PrefabGUID(341866865); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Cast01 = new PrefabGUID(-393228351); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Cast02 = new PrefabGUID(1062263110); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Group = new PrefabGUID(-1259884575); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Hit = new PrefabGUID(55046940); public static readonly PrefabGUID AB_Shapeshift_Bear_Roar_AbilityGroup = new PrefabGUID(-840954076); public static readonly PrefabGUID AB_Shapeshift_Bear_Roar_Cast = new PrefabGUID(-1494177431); public static readonly PrefabGUID AB_Shapeshift_Bear_Roar_Trigger = new PrefabGUID(1285947050); public static readonly PrefabGUID AB_Shapeshift_Bear_Skin01_Buff = new PrefabGUID(-858273386); public static readonly PrefabGUID AB_Shapeshift_Bear_Skin01_Cast = new PrefabGUID(269629884); public static readonly PrefabGUID AB_Shapeshift_Bear_Skin01_Group = new PrefabGUID(-631049507); public static readonly PrefabGUID AB_Shapeshift_BloodHunger_BloodSight_Buff = new PrefabGUID(1199823151); public static readonly PrefabGUID AB_Shapeshift_BloodHunger_BloodSight_Cast = new PrefabGUID(1141075594); public static readonly PrefabGUID AB_Shapeshift_BloodHunger_BloodSight_Group = new PrefabGUID(-1863241708); public static readonly PrefabGUID AB_Shapeshift_BloodMend_Buff = new PrefabGUID(-72081294); public static readonly PrefabGUID AB_Shapeshift_BloodMend_Cast = new PrefabGUID(-422465852); public static readonly PrefabGUID AB_Shapeshift_BloodMend_Group = new PrefabGUID(-1996241419); public static readonly PrefabGUID AB_Shapeshift_CommandingPresence_Buff = new PrefabGUID(-222170350); public static readonly PrefabGUID AB_Shapeshift_CommandingPresence_Cast = new PrefabGUID(-1718455019); public static readonly PrefabGUID AB_Shapeshift_CommandingPresence_Group = new PrefabGUID(589136658); public static readonly PrefabGUID AB_Shapeshift_DominatingPresence_PsychicForm_Buff = new PrefabGUID(-1447419822); public static readonly PrefabGUID AB_Shapeshift_DominatingPresence_PsychicForm_Cast = new PrefabGUID(19187526); public static readonly PrefabGUID AB_Shapeshift_DominatingPresence_PsychicForm_Group = new PrefabGUID(-1908054166); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_AwakeBuff = new PrefabGUID(-2111422455); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Buff = new PrefabGUID(914043867); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Cast = new PrefabGUID(-1054873057); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_GroundSlam_Cast = new PrefabGUID(2106313675); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_GroundSlam_Group = new PrefabGUID(1216522353); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_GroundSlam_Hit = new PrefabGUID(548495076); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Group = new PrefabGUID(-1193297071); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Ranged_AbilityGroup = new PrefabGUID(-1130363778); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Ranged_Cast = new PrefabGUID(395411669); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Ranged_Projectile = new PrefabGUID(2058619860); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_AbilityGroup = new PrefabGUID(-223453383); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_Area = new PrefabGUID(-1698616433); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_Buff = new PrefabGUID(-1842466470); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_Cast = new PrefabGUID(-1302891872); public static readonly PrefabGUID AB_Shapeshift_Human_Buff = new PrefabGUID(-53860211); public static readonly PrefabGUID AB_Shapeshift_Human_Cast = new PrefabGUID(1484365948); public static readonly PrefabGUID AB_Shapeshift_Human_Grandma_Skin01_Buff = new PrefabGUID(-434940480); public static readonly PrefabGUID AB_Shapeshift_Human_Grandma_Skin01_Cast = new PrefabGUID(-118310719); public static readonly PrefabGUID AB_Shapeshift_Human_Grandma_Skin01_Group = new PrefabGUID(1167119356); public static readonly PrefabGUID AB_Shapeshift_Human_Group = new PrefabGUID(-980532804); public static readonly PrefabGUID AB_Shapeshift_Human_PMK_Skin02_Buff = new PrefabGUID(-868350144); public static readonly PrefabGUID AB_Shapeshift_Human_PMK_Skin02_Cast = new PrefabGUID(-2084233337); public static readonly PrefabGUID AB_Shapeshift_Human_PMK_Skin02_Group = new PrefabGUID(1937597415); public static readonly PrefabGUID AB_Shapeshift_NormalForm_Buff = new PrefabGUID(1352541204); public static readonly PrefabGUID AB_Shapeshift_NormalForm_Cast = new PrefabGUID(1528641670); public static readonly PrefabGUID AB_Shapeshift_NormalForm_Group = new PrefabGUID(1634335063); public static readonly PrefabGUID AB_Shapeshift_Rat_Buff = new PrefabGUID(902394170); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_AbilityGroup = new PrefabGUID(1224470698); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Buff = new PrefabGUID(-2126626806); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Cast = new PrefabGUID(785510569); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Travel = new PrefabGUID(-370880069); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Travel_End = new PrefabGUID(1011458245); public static readonly PrefabGUID AB_Shapeshift_Rat_Cast = new PrefabGUID(-1297441333); public static readonly PrefabGUID AB_Shapeshift_Rat_Group = new PrefabGUID(784029872); public static readonly PrefabGUID AB_Shapeshift_ShareBlood_ExposeVein_Buff = new PrefabGUID(-979543195); public static readonly PrefabGUID AB_Shapeshift_ShareBlood_ExposeVein_Cast = new PrefabGUID(1686380967); public static readonly PrefabGUID AB_Shapeshift_ShareBlood_ExposeVein_Group = new PrefabGUID(-1648128560); public static readonly PrefabGUID AB_Shapeshift_Spider_Buff = new PrefabGUID(124832551); public static readonly PrefabGUID AB_Shapeshift_Spider_Burrow_AbilityGroup = new PrefabGUID(1089139335); public static readonly PrefabGUID AB_Shapeshift_Spider_Burrow_Buff = new PrefabGUID(-1665328650); public static readonly PrefabGUID AB_Shapeshift_Spider_Burrow_Cast = new PrefabGUID(647509692); public static readonly PrefabGUID AB_Shapeshift_Spider_Cast = new PrefabGUID(-677779816); public static readonly PrefabGUID AB_Shapeshift_Spider_Group = new PrefabGUID(180580857); public static readonly PrefabGUID AB_Shapeshift_Spider_Unburrow_AbilityGroup = new PrefabGUID(1704026958); public static readonly PrefabGUID AB_Shapeshift_Spider_Unburrow_Cast = new PrefabGUID(-1735332389); public static readonly PrefabGUID AB_Shapeshift_Toad_Buff = new PrefabGUID(-1038422434); public static readonly PrefabGUID AB_Shapeshift_Toad_Cast = new PrefabGUID(-2003108222); public static readonly PrefabGUID AB_Shapeshift_Toad_Group = new PrefabGUID(-499389517); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_AbilityGroup = new PrefabGUID(-1428039996); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_Cast = new PrefabGUID(535790519); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_End = new PrefabGUID(825952968); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_Phase = new PrefabGUID(1634367442); public static readonly PrefabGUID AB_Shapeshift_Toad_PMK_Skin01_Buff = new PrefabGUID(332075952); public static readonly PrefabGUID AB_Shapeshift_Toad_PMK_Skin01_Cast = new PrefabGUID(2008964866); public static readonly PrefabGUID AB_Shapeshift_Toad_PMK_Skin01_Group = new PrefabGUID(-34533844); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Bleed_Buff = new PrefabGUID(1751486572); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Cast = new PrefabGUID(990205141); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Group = new PrefabGUID(-1262842180); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Hit = new PrefabGUID(424140303); public static readonly PrefabGUID AB_Shapeshift_Wolf_Blackfang_Skin03_Buff = new PrefabGUID(-46579774); public static readonly PrefabGUID AB_Shapeshift_Wolf_Blackfang_Skin03_Cast = new PrefabGUID(-316891652); public static readonly PrefabGUID AB_Shapeshift_Wolf_Blackfang_Skin03_Group = new PrefabGUID(430979240); public static readonly PrefabGUID AB_Shapeshift_Wolf_Buff = new PrefabGUID(-351718282); public static readonly PrefabGUID AB_Shapeshift_Wolf_Cast = new PrefabGUID(-651919260); public static readonly PrefabGUID AB_Shapeshift_Wolf_Group = new PrefabGUID(900707394); public static readonly PrefabGUID AB_Shapeshift_Wolf_Howl_AbilityGroup = new PrefabGUID(875909348); public static readonly PrefabGUID AB_Shapeshift_Wolf_Howl_Cast = new PrefabGUID(-1717706027); public static readonly PrefabGUID AB_Shapeshift_Wolf_Howl_Trigger = new PrefabGUID(1151266648); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_AbilityGroup = new PrefabGUID(-781549505); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_AbilityGroup = new PrefabGUID(833416928); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_Buff = new PrefabGUID(-1075909278); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_Cast = new PrefabGUID(722131933); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_End = new PrefabGUID(-348619675); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_Phase = new PrefabGUID(1489317139); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Buff = new PrefabGUID(-1882904996); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Cast = new PrefabGUID(2108303474); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_End = new PrefabGUID(-2081929499); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Phase = new PrefabGUID(113772695); public static readonly PrefabGUID AB_Shapeshift_Wolf_PMK_Skin02_Buff = new PrefabGUID(-1687924191); public static readonly PrefabGUID AB_Shapeshift_Wolf_PMK_Skin02_Cast = new PrefabGUID(-41080879); public static readonly PrefabGUID AB_Shapeshift_Wolf_PMK_Skin02_Group = new PrefabGUID(-1739260908); public static readonly PrefabGUID AB_Shapeshift_Wolf_Skin01_Buff = new PrefabGUID(-1158884666); public static readonly PrefabGUID AB_Shapeshift_Wolf_Skin01_Cast = new PrefabGUID(1304152223); public static readonly PrefabGUID AB_Shapeshift_Wolf_Skin01_Group = new PrefabGUID(1798913199); public static readonly PrefabGUID AB_Shared_Chaos_Burn_Debuff = new PrefabGUID(-1665010680); public static readonly PrefabGUID AB_Shared_FireArea = new PrefabGUID(1005131151); public static readonly PrefabGUID AB_Shared_FireArea_ExtendedLifetime = new PrefabGUID(-610346895); public static readonly PrefabGUID AB_Shared_FireArea_FlameWhip = new PrefabGUID(2072748546); public static readonly PrefabGUID AB_Shared_FireArea_FlameWhip_Spread = new PrefabGUID(-1996209115); public static readonly PrefabGUID AB_Shared_FireArea_Large = new PrefabGUID(-1104629149); public static readonly PrefabGUID AB_Shared_FireArea_ReducedLifeTime = new PrefabGUID(-210466836); public static readonly PrefabGUID AB_Shared_FireArea_VegetationSpread = new PrefabGUID(-2134900616); public static readonly PrefabGUID AB_Shared_FireArea_VegetationSpread_Whip = new PrefabGUID(702674310); public static readonly PrefabGUID AB_Shared_Small_FireArea = new PrefabGUID(1286119415); public static readonly PrefabGUID AB_ShareVBlood_Buff = new PrefabGUID(1923696267); public static readonly PrefabGUID AB_ShareVBlood_Cast = new PrefabGUID(-1227944258); public static readonly PrefabGUID AB_ShareVBlood_Group = new PrefabGUID(-79785701); public static readonly PrefabGUID AB_SkeletonCrossbow_Shared_Crossbow_Cast = new PrefabGUID(-781120203); public static readonly PrefabGUID AB_SkeletonCrossbow_Shared_Crossbow_Group = new PrefabGUID(1601771862); public static readonly PrefabGUID AB_SkeletonCrossbow_Shared_Crossbow_Projectile = new PrefabGUID(-1016825785); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Cast01 = new PrefabGUID(-1962637181); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Cast02 = new PrefabGUID(-1772369761); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Group = new PrefabGUID(1772194590); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Hit = new PrefabGUID(1720725467); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Cast01 = new PrefabGUID(-331352748); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Cast02 = new PrefabGUID(-1315631229); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Group = new PrefabGUID(138513891); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Hit = new PrefabGUID(868430975); public static readonly PrefabGUID AB_SlaveMaster_ChargeAttack_AbilityGroup = new PrefabGUID(401195214); public static readonly PrefabGUID AB_SlaveMaster_ChargeAttack_Cast = new PrefabGUID(-1632182069); public static readonly PrefabGUID AB_SlaveMaster_ChargeAttack_Phase = new PrefabGUID(-875273610); public static readonly PrefabGUID AB_SlaveMaster_Hook_AbilityGroup = new PrefabGUID(1423169435); public static readonly PrefabGUID AB_SlaveMaster_Hook_Cast = new PrefabGUID(-1894950302); public static readonly PrefabGUID AB_SlaveMaster_Hook_Hit1 = new PrefabGUID(-208357182); public static readonly PrefabGUID AB_SlaveMaster_Hook_Hit2 = new PrefabGUID(-643010508); public static readonly PrefabGUID AB_SlaveMaster_Hook_HitBuff = new PrefabGUID(702046661); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_AbilityGroup = new PrefabGUID(-725150213); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_Cast = new PrefabGUID(857098831); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_Hit = new PrefabGUID(-2103407510); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_HitBuff = new PrefabGUID(558996680); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_AbilityGroup = new PrefabGUID(97206555); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Cast = new PrefabGUID(-901615635); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Channel = new PrefabGUID(-1309867202); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Hit = new PrefabGUID(373139016); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Projectile = new PrefabGUID(-1840019479); public static readonly PrefabGUID AB_SlaveMaster_RangedAttack_AbilityGroup = new PrefabGUID(80712753); public static readonly PrefabGUID AB_SlaveMaster_RangedAttack_Cast = new PrefabGUID(358880096); public static readonly PrefabGUID AB_SlaveMaster_RangedAttack_Projectile = new PrefabGUID(1160057580); public static readonly PrefabGUID AB_SlaveMaster_ScatterShot_AbilityGroup = new PrefabGUID(-366103191); public static readonly PrefabGUID AB_SlaveMaster_ScatterShot_Cast = new PrefabGUID(-1680009881); public static readonly PrefabGUID AB_SlaveMaster_ScatterShot_Hit = new PrefabGUID(218442875); public static readonly PrefabGUID AB_SlaveMaster_Swing_AbilityGroup = new PrefabGUID(-1969627539); public static readonly PrefabGUID AB_SlaveMaster_Swing_Cast = new PrefabGUID(-121094735); public static readonly PrefabGUID AB_SlaveMaster_Swing_Hit = new PrefabGUID(1012299187); public static readonly PrefabGUID AB_SlaveRuffian_Mine_AbilityGroup = new PrefabGUID(2122592609); public static readonly PrefabGUID AB_SlaveRuffian_Mine_Cast = new PrefabGUID(-1416360601); public static readonly PrefabGUID AB_SlaveRuffian_Mine_Hit = new PrefabGUID(1702782525); public static readonly PrefabGUID AB_SlaveRuffian_Shout_AbilityGroup = new PrefabGUID(506072916); public static readonly PrefabGUID AB_SlaveRuffian_Shout_Cast = new PrefabGUID(1373997640); public static readonly PrefabGUID AB_SlaveRuffian_Swing_AbilityGroup = new PrefabGUID(-983491078); public static readonly PrefabGUID AB_SlaveRuffian_Swing_Cast = new PrefabGUID(1969205205); public static readonly PrefabGUID AB_SlaveRuffian_Swing_Hit = new PrefabGUID(2025108233); public static readonly PrefabGUID AB_Small_FireArea_FlameSpreader1 = new PrefabGUID(-411855192); public static readonly PrefabGUID AB_Sommelier_BarrelDance_AbilityGroup = new PrefabGUID(1074442576); public static readonly PrefabGUID AB_Sommelier_BarrelDance_Buff = new PrefabGUID(467920537); public static readonly PrefabGUID AB_Sommelier_BarrelDance_Buff_Hard = new PrefabGUID(38721678); public static readonly PrefabGUID AB_Sommelier_BarrelDance_Cast = new PrefabGUID(-1478879522); public static readonly PrefabGUID AB_Sommelier_BarrelFountain_AbilityGroup = new PrefabGUID(-616794756); public static readonly PrefabGUID AB_Sommelier_BarrelFountain_Buff = new PrefabGUID(-446042859); public static readonly PrefabGUID AB_Sommelier_BarrelFountain_Cast = new PrefabGUID(-2029627518); public static readonly PrefabGUID AB_Sommelier_BarrelMinion_BarrelRoll_AbilityGroup = new PrefabGUID(-1252510507); public static readonly PrefabGUID AB_Sommelier_BarrelMinion_BarrelRoll_Cast = new PrefabGUID(2020854722); public static readonly PrefabGUID AB_Sommelier_BarrelMinion_BarrelRoll_Phase = new PrefabGUID(-2105075242); public static readonly PrefabGUID AB_Sommelier_BloodBolt_AbilityGroup = new PrefabGUID(215933642); public static readonly PrefabGUID AB_Sommelier_BloodBolt_Cast = new PrefabGUID(600127133); public static readonly PrefabGUID AB_Sommelier_BloodBolt_Projectile = new PrefabGUID(-1107865103); public static readonly PrefabGUID AB_Sommelier_Flurry_AbilityGroup = new PrefabGUID(-1537007486); public static readonly PrefabGUID AB_Sommelier_Flurry_Buff = new PrefabGUID(1191295161); public static readonly PrefabGUID AB_Sommelier_Flurry_Cast = new PrefabGUID(-1669787634); public static readonly PrefabGUID AB_Sommelier_Flurry_Hit = new PrefabGUID(857303928); public static readonly PrefabGUID AB_Sommelier_GroundStab_AbilityGroup = new PrefabGUID(1168210403); public static readonly PrefabGUID AB_Sommelier_GroundStab_Cast = new PrefabGUID(-806737785); public static readonly PrefabGUID AB_Sommelier_GroundStab_Hit = new PrefabGUID(-927723686); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_AbilityGroup = new PrefabGUID(22199616); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Cast = new PrefabGUID(848709362); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_AbilityGroup = new PrefabGUID(1129782597); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_Cast = new PrefabGUID(-513930486); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_Projectile = new PrefabGUID(673647636); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_SpawnerDouble = new PrefabGUID(490341540); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_SpawnerTripple = new PrefabGUID(216868165); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_HitBuff = new PrefabGUID(181772789); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_HitKnockdown = new PrefabGUID(533823656); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Jump = new PrefabGUID(125808617); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Projectile = new PrefabGUID(332296669); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_SpawnerDouble = new PrefabGUID(-1940194776); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_SpawnerTripple = new PrefabGUID(-419654644); public static readonly PrefabGUID AB_Sommelier_MeleeHorizontal_AbilityGroup = new PrefabGUID(1078822594); public static readonly PrefabGUID AB_Sommelier_MeleeHorizontal_Cast = new PrefabGUID(1922303328); public static readonly PrefabGUID AB_Sommelier_MeleeHorizontal_Hit = new PrefabGUID(1143646341); public static readonly PrefabGUID AB_Sommelier_MeleeSwing_AbilityGroup = new PrefabGUID(-1157907958); public static readonly PrefabGUID AB_Sommelier_MeleeSwing_Cast = new PrefabGUID(-482441749); public static readonly PrefabGUID AB_Sommelier_MeleeSwing_Hit = new PrefabGUID(1548312767); public static readonly PrefabGUID AB_Sorceress_AoE_AbilityGroup = new PrefabGUID(725170243); public static readonly PrefabGUID AB_Sorceress_AoE_Cast = new PrefabGUID(-549710605); public static readonly PrefabGUID AB_Sorceress_AoE_Throw = new PrefabGUID(-1132153996); public static readonly PrefabGUID AB_Sorceress_Projectile = new PrefabGUID(705255035); public static readonly PrefabGUID AB_Sorceress_Projectile_AbilityGroup = new PrefabGUID(1075000607); public static readonly PrefabGUID AB_Sorceress_Projectile_Cast = new PrefabGUID(-1771490803); public static readonly PrefabGUID AB_Sorceress_Projectile_Cast_OUTDATED = new PrefabGUID(-1634790827); public static readonly PrefabGUID AB_Sorceress_Projectile_OUTDATED = new PrefabGUID(535132128); public static readonly PrefabGUID AB_Sorceress_Relocate_AbilityGroup = new PrefabGUID(-420953378); public static readonly PrefabGUID AB_Sorceress_Relocate_Cast = new PrefabGUID(2054495461); public static readonly PrefabGUID AB_Sorceress_Relocate_Phase = new PrefabGUID(-1842717610); public static readonly PrefabGUID AB_Spear_AThousandSpears_Recast_Impale_Cast = new PrefabGUID(770699558); public static readonly PrefabGUID AB_Spear_AThousandSpears_Recast_Impale_Group = new PrefabGUID(1250277114); public static readonly PrefabGUID AB_Spear_AThousandSpears_Recast_Impale_Hit = new PrefabGUID(-169137842); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_AbilityGroup = new PrefabGUID(377778793); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_BallLightning = new PrefabGUID(1144449188); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_Cast = new PrefabGUID(-451018135); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_Channel = new PrefabGUID(-657549570); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_Hit = new PrefabGUID(-1662516734); public static readonly PrefabGUID AB_Spectral_Guardian_MeleeAttack_AbilityGroup = new PrefabGUID(1130939687); public static readonly PrefabGUID AB_Spectral_Guardian_MeleeAttack_Cast = new PrefabGUID(2022337060); public static readonly PrefabGUID AB_Spectral_Guardian_MeleeAttack_Hit = new PrefabGUID(320741315); public static readonly PrefabGUID AB_Spectral_SpellSlinger_Projectile_AbilityGroup = new PrefabGUID(-1298478938); public static readonly PrefabGUID AB_Spectral_SpellSlinger_Projectile_Cast = new PrefabGUID(-1387812876); public static readonly PrefabGUID AB_Spectral_SpellSlinger_Projectile_Projectile = new PrefabGUID(338892768); public static readonly PrefabGUID AB_Spider_Baneling_ChangeState_Buff = new PrefabGUID(-1899305647); public static readonly PrefabGUID AB_Spider_Baneling_ChangeState_Cast = new PrefabGUID(2083925528); public static readonly PrefabGUID AB_Spider_Baneling_ChangeState_Group = new PrefabGUID(1790377808); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Area = new PrefabGUID(1828396614); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Cast = new PrefabGUID(-68475657); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Cast_OLD = new PrefabGUID(1005873034); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Debuff = new PrefabGUID(1314931922); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Group = new PrefabGUID(-891106318); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Hit = new PrefabGUID(-2042355927); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_AbilityGroup = new PrefabGUID(983916408); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_Cast = new PrefabGUID(-2106352427); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_SummonThrow = new PrefabGUID(-1997270727); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_Trigger = new PrefabGUID(-1238737320); public static readonly PrefabGUID AB_Spider_Forest_BackStep_AbilityGroup = new PrefabGUID(858891748); public static readonly PrefabGUID AB_Spider_Forest_BackStep_Cast = new PrefabGUID(201290141); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_AbilityGroup = new PrefabGUID(-1425167877); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_Cast = new PrefabGUID(-435135295); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_Channel = new PrefabGUID(2058461104); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_CircleTarget = new PrefabGUID(2072031527); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_CocoonBuff = new PrefabGUID(1172960771); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_Hit = new PrefabGUID(-1003349420); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_HitBuff = new PrefabGUID(-732214986); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_MinionLifetime = new PrefabGUID(486535223); public static readonly PrefabGUID AB_Spider_Forest_MeleeAttack_AbilityGroup = new PrefabGUID(1841930998); public static readonly PrefabGUID AB_Spider_Forest_MeleeAttack_Cast = new PrefabGUID(2015592533); public static readonly PrefabGUID AB_Spider_Forest_MeleeAttack_Hit = new PrefabGUID(-1491144790); public static readonly PrefabGUID AB_Spider_Forest_Webbing_AbilityGroup = new PrefabGUID(1713280509); public static readonly PrefabGUID AB_Spider_Forest_Webbing_Area = new PrefabGUID(-732416810); public static readonly PrefabGUID AB_Spider_Forest_Webbing_Cast = new PrefabGUID(746052462); public static readonly PrefabGUID AB_Spider_Forest_Webbing_Throw = new PrefabGUID(1884314193); public static readonly PrefabGUID AB_Spider_Forestling_Attack_AbilityGroup = new PrefabGUID(-292254536); public static readonly PrefabGUID AB_Spider_Forestling_Attack_Cast = new PrefabGUID(1823086934); public static readonly PrefabGUID AB_Spider_Forestling_Attack_Hit = new PrefabGUID(-1666093740); public static readonly PrefabGUID AB_Spider_Melee_BackStep_AbilityGroup = new PrefabGUID(792257682); public static readonly PrefabGUID AB_Spider_Melee_BackStep_Cast = new PrefabGUID(138477419); public static readonly PrefabGUID AB_Spider_Melee_FastMeleeAttack_Cast = new PrefabGUID(-1958614057); public static readonly PrefabGUID AB_Spider_Melee_FastMeleeAttack_Group = new PrefabGUID(1693120911); public static readonly PrefabGUID AB_Spider_Melee_FastMeleeAttack_Hit = new PrefabGUID(1260031697); public static readonly PrefabGUID AB_Spider_Melee_MeleeAttack_Cast = new PrefabGUID(-1744666997); public static readonly PrefabGUID AB_Spider_Melee_MeleeAttack_Group = new PrefabGUID(1820645555); public static readonly PrefabGUID AB_Spider_Melee_MeleeAttack_Hit = new PrefabGUID(-987891944); public static readonly PrefabGUID AB_Spider_Melee_Webbing_AbilityGroup = new PrefabGUID(-915534386); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Area = new PrefabGUID(1973587529); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Cast = new PrefabGUID(-1543261361); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Channel_Buff = new PrefabGUID(-1791410055); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Throw = new PrefabGUID(-1559961505); public static readonly PrefabGUID AB_Spider_Queen_AoE_AbilityGroup = new PrefabGUID(1573712465); public static readonly PrefabGUID AB_Spider_Queen_AoE_Area = new PrefabGUID(-2042374404); public static readonly PrefabGUID AB_Spider_Queen_AoE_Cast = new PrefabGUID(-166678097); public static readonly PrefabGUID AB_Spider_Queen_AoE_SmallArea = new PrefabGUID(1050381015); public static readonly PrefabGUID AB_Spider_Queen_AoE_SmallThrow = new PrefabGUID(-921815119); public static readonly PrefabGUID AB_Spider_Queen_AoE_Throw = new PrefabGUID(-1467102322); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_AbilityGroup = new PrefabGUID(2130811227); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_Cast = new PrefabGUID(766165279); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_Channel = new PrefabGUID(-1687344116); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_CocoonBuff = new PrefabGUID(831431517); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_Hit = new PrefabGUID(-403955900); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_HitBuff = new PrefabGUID(-1679785240); public static readonly PrefabGUID AB_Spider_Queen_Hard_ExplodingPoisonArea = new PrefabGUID(-1222197876); public static readonly PrefabGUID AB_Spider_Queen_Hard_ExplodingPoisonBuff = new PrefabGUID(113363813); public static readonly PrefabGUID AB_Spider_Queen_MeleeAttack_AbilityGroup = new PrefabGUID(1274762079); public static readonly PrefabGUID AB_Spider_Queen_MeleeAttack_Cast = new PrefabGUID(1980911243); public static readonly PrefabGUID AB_Spider_Queen_MeleeAttack_Hit = new PrefabGUID(582407450); public static readonly PrefabGUID AB_Spider_Queen_PBAoE_AbilityGroup = new PrefabGUID(-2109003637); public static readonly PrefabGUID AB_Spider_Queen_PBAoE_Cast = new PrefabGUID(836784018); public static readonly PrefabGUID AB_Spider_Queen_PBAoE_Hit = new PrefabGUID(-1077599424); public static readonly PrefabGUID AB_Spider_Queen_Poison_Debuff = new PrefabGUID(154706618); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_AbilityGroup = new PrefabGUID(-1586810476); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_Cast = new PrefabGUID(-683448231); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_Channel = new PrefabGUID(754361238); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_Projectile = new PrefabGUID(-1145897844); public static readonly PrefabGUID AB_Spider_Queen_RangeAttack_AbilityGroup = new PrefabGUID(1132262199); public static readonly PrefabGUID AB_Spider_Queen_RangeAttack_Cast = new PrefabGUID(221952544); public static readonly PrefabGUID AB_Spider_Queen_RangeAttack_Projectile = new PrefabGUID(-960461822); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_AbilityGroup = new PrefabGUID(-1779071085); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Explosive = new PrefabGUID(-91153538); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Melee = new PrefabGUID(-728018205); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Ranged = new PrefabGUID(1616741584); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Small = new PrefabGUID(-1650304246); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Explosive = new PrefabGUID(-239069676); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_GateBoss_AbilityGroup = new PrefabGUID(-1448118517); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_GateBoss_Cast_Melee = new PrefabGUID(-35070703); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_GateBoss_Melee = new PrefabGUID(362299353); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Melee = new PrefabGUID(-163186017); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Ranged = new PrefabGUID(826633048); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Small = new PrefabGUID(426549163); public static readonly PrefabGUID AB_Spider_Queen_WebHook = new PrefabGUID(1678598978); public static readonly PrefabGUID AB_Spider_Queen_WebHook_AbilityGroup = new PrefabGUID(1499629710); public static readonly PrefabGUID AB_Spider_Queen_WebHook_Cast = new PrefabGUID(1099578860); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_AbilityGroup = new PrefabGUID(193592408); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Area = new PrefabGUID(-35324595); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Cast = new PrefabGUID(482243952); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Debuff = new PrefabGUID(-1328565762); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Projectile = new PrefabGUID(-1971512697); public static readonly PrefabGUID AB_Spider_Range_BackStep_AbilityGroup = new PrefabGUID(-1072715636); public static readonly PrefabGUID AB_Spider_Range_BackStep_Cast = new PrefabGUID(1649891046); public static readonly PrefabGUID AB_Spider_Range_CloseAttack_Cast = new PrefabGUID(-1692933019); public static readonly PrefabGUID AB_Spider_Range_CloseAttack_Group = new PrefabGUID(-1694480301); public static readonly PrefabGUID AB_Spider_Range_CloseAttack_Hit = new PrefabGUID(-1549369887); public static readonly PrefabGUID AB_Spider_Range_Poison_Debuff = new PrefabGUID(141775141); public static readonly PrefabGUID AB_Spider_Range_PoisonProjectile = new PrefabGUID(-1111503324); public static readonly PrefabGUID AB_Spider_Range_PoisonProjectile_Cast = new PrefabGUID(-962768798); public static readonly PrefabGUID AB_Spider_Range_PoisonProjectile_Group = new PrefabGUID(464665677); public static readonly PrefabGUID AB_Spider_Spiderling_Attack_Cast = new PrefabGUID(1651443656); public static readonly PrefabGUID AB_Spider_Spiderling_Attack_Group = new PrefabGUID(-1655641312); public static readonly PrefabGUID AB_Spider_Spiderling_Attack_Hit = new PrefabGUID(-54705642); public static readonly PrefabGUID AB_StoneGolem_Awake_Cast = new PrefabGUID(-1167677688); public static readonly PrefabGUID AB_StoneGolem_Awake_Group = new PrefabGUID(-793376955); public static readonly PrefabGUID AB_StoneGolem_FallAsleep_Buff_Cast = new PrefabGUID(-112953310); public static readonly PrefabGUID AB_StoneGolem_FallAsleep_Buff_Group = new PrefabGUID(-352214814); public static readonly PrefabGUID AB_StoneGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-1072867618); public static readonly PrefabGUID AB_StoneGolem_GroundSlam_AbilityGroup = new PrefabGUID(-1045581646); public static readonly PrefabGUID AB_StoneGolem_GroundSlam_Cast = new PrefabGUID(-68428579); public static readonly PrefabGUID AB_StoneGolem_GroundSlam_Hit = new PrefabGUID(1400631654); public static readonly PrefabGUID AB_StoneGolem_MeleeAttack_AbilityGroup = new PrefabGUID(1272395899); public static readonly PrefabGUID AB_StoneGolem_MeleeAttack_Cast = new PrefabGUID(-1508767874); public static readonly PrefabGUID AB_StoneGolem_MeleeAttack_Hit = new PrefabGUID(-504003404); public static readonly PrefabGUID AB_StoneGolem_RockSlam_AbilityGroup = new PrefabGUID(418002062); public static readonly PrefabGUID AB_StoneGolem_RockSlam_Cast = new PrefabGUID(1492118429); public static readonly PrefabGUID AB_StoneGolem_RockSlam_Projectile = new PrefabGUID(-219578446); public static readonly PrefabGUID AB_Storm_BallLightning_AbilityGroup = new PrefabGUID(1249925269); public static readonly PrefabGUID AB_Storm_BallLightning_AreaImpact = new PrefabGUID(-78524155); public static readonly PrefabGUID AB_Storm_BallLightning_Cast = new PrefabGUID(-1829701216); public static readonly PrefabGUID AB_Storm_BallLightning_Projectile = new PrefabGUID(1330012711); public static readonly PrefabGUID AB_Storm_BallLightning_SpellMod_Haste = new PrefabGUID(-235064089); public static readonly PrefabGUID AB_Storm_BallLightning_SpellMod_Recast_AbilityGroup = new PrefabGUID(-440373841); public static readonly PrefabGUID AB_Storm_BallLightning_SpellMod_Recast_Buff = new PrefabGUID(1144591708); public static readonly PrefabGUID AB_Storm_BallLightning_Spellmod_Recast_Cast = new PrefabGUID(-537359230); public static readonly PrefabGUID AB_Storm_BallLightning_Spellmod_Recast_Trigger = new PrefabGUID(1883720601); public static readonly PrefabGUID AB_Storm_Cyclone_AbilityGroup = new PrefabGUID(-356990326); public static readonly PrefabGUID AB_Storm_Cyclone_Cast = new PrefabGUID(-159503942); public static readonly PrefabGUID AB_Storm_Cyclone_Projectile = new PrefabGUID(1147396247); public static readonly PrefabGUID AB_Storm_Discharge_AbilityGroup = new PrefabGUID(1952703098); public static readonly PrefabGUID AB_Storm_Discharge_Cast = new PrefabGUID(922224629); public static readonly PrefabGUID AB_Storm_Discharge_Counter_Buff = new PrefabGUID(-755938348); public static readonly PrefabGUID AB_Storm_Discharge_ImmaterialBuff = new PrefabGUID(868387448); public static readonly PrefabGUID AB_Storm_Discharge_Projectile = new PrefabGUID(-1748756849); public static readonly PrefabGUID AB_Storm_Discharge_SpellMod_Recast_AbilityGroup = new PrefabGUID(1816495876); public static readonly PrefabGUID AB_Storm_Discharge_Spellmod_Recast_AreaImpact = new PrefabGUID(405724396); public static readonly PrefabGUID AB_Storm_Discharge_SpellMod_Recast_Buff = new PrefabGUID(1659814621); public static readonly PrefabGUID AB_Storm_Discharge_Spellmod_Recast_Cast = new PrefabGUID(-1491956067); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_01 = new PrefabGUID(1044565673); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_01_MagicSourceVariation = new PrefabGUID(-737425100); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_02 = new PrefabGUID(-1192885497); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_02_MagicSourceVariation = new PrefabGUID(-2102306724); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_03 = new PrefabGUID(1095865904); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_HitBuff = new PrefabGUID(488441349); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_AbilityGroup = new PrefabGUID(1870875931); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Buff = new PrefabGUID(1538254242); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Cast = new PrefabGUID(1368053381); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Recast_AbilityGroup = new PrefabGUID(-1355723507); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Recast_Cast = new PrefabGUID(1697734124); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Throw = new PrefabGUID(-890953469); public static readonly PrefabGUID AB_Storm_LightningTendrils_AbilityGroup = new PrefabGUID(-1184139778); public static readonly PrefabGUID AB_Storm_LightningTendrils_Cast = new PrefabGUID(-396872793); public static readonly PrefabGUID AB_Storm_LightningTendrils_Channel_Move = new PrefabGUID(259467316); public static readonly PrefabGUID AB_Storm_LightningTendrils_DummyAimpreview = new PrefabGUID(917990176); public static readonly PrefabGUID AB_Storm_LightningTendrils_Hit = new PrefabGUID(-2055591403); public static readonly PrefabGUID AB_Storm_LightningTendrils_Projectile = new PrefabGUID(-437325088); public static readonly PrefabGUID AB_Storm_LightningTendrils_SpellMod_StunBuildup = new PrefabGUID(-820686873); public static readonly PrefabGUID AB_Storm_LightningTyphoon_AbilityGroup = new PrefabGUID(-914344112); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Cast = new PrefabGUID(1220265215); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Channel = new PrefabGUID(-896298364); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Hit = new PrefabGUID(-34882604); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Projectile = new PrefabGUID(143266267); public static readonly PrefabGUID AB_Storm_LightningWall_AbilityGroup = new PrefabGUID(1071205195); public static readonly PrefabGUID AB_Storm_LightningWall_Cast = new PrefabGUID(1459814320); public static readonly PrefabGUID AB_Storm_LightningWall_HitBuff = new PrefabGUID(548424626); public static readonly PrefabGUID AB_Storm_LightningWall_Object = new PrefabGUID(-343685714); public static readonly PrefabGUID AB_Storm_LightningWall_Speed_Buff = new PrefabGUID(301339098); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Shield = new PrefabGUID(1504445802); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Shield_HitBuff = new PrefabGUID(510558669); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Snare_HitBuff = new PrefabGUID(736385119); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Static_HitBuff = new PrefabGUID(-1541927071); public static readonly PrefabGUID AB_Storm_LightningWall_Throw = new PrefabGUID(-281608365); public static readonly PrefabGUID AB_Storm_PolarityShift_AbilityGroup = new PrefabGUID(-987810170); public static readonly PrefabGUID AB_Storm_PolarityShift_Cast = new PrefabGUID(-1683701733); public static readonly PrefabGUID AB_Storm_PolarityShift_Projectile = new PrefabGUID(-1046657693); public static readonly PrefabGUID AB_Storm_PolarityShift_SpellMod_AreaImpactDestination = new PrefabGUID(1583251106); public static readonly PrefabGUID AB_Storm_PolarityShift_SpellMod_AreaImpactOrigin = new PrefabGUID(-832039126); public static readonly PrefabGUID AB_Storm_PolarityShift_Travel_Ally = new PrefabGUID(1385593239); public static readonly PrefabGUID AB_Storm_PolarityShift_Travel_Owner = new PrefabGUID(-1728012537); public static readonly PrefabGUID AB_Storm_PolarityShift_Travel_Target = new PrefabGUID(1845651754); public static readonly PrefabGUID AB_Storm_RagingTempest_AbilityGroup = new PrefabGUID(2111431121); public static readonly PrefabGUID AB_Storm_RagingTempest_Area_Hit = new PrefabGUID(1514410108); public static readonly PrefabGUID AB_Storm_RagingTempest_Cast = new PrefabGUID(1726948631); public static readonly PrefabGUID AB_Storm_RagingTempest_DashOut_Phase = new PrefabGUID(1196714737); public static readonly PrefabGUID AB_Storm_RagingTempest_LightningStrike = new PrefabGUID(120071232); public static readonly PrefabGUID AB_Storm_RagingTempest_Other_DashOut_AbilityGroup = new PrefabGUID(2037106453); public static readonly PrefabGUID AB_Storm_RagingTempest_Other_DashOut_Cast = new PrefabGUID(1838786050); public static readonly PrefabGUID AB_Storm_RagingTempest_Other_Self_Buff = new PrefabGUID(1648657486); public static readonly PrefabGUID AB_Storm_RagingTempest_Phase = new PrefabGUID(161600994); public static readonly PrefabGUID AB_Subdue_AbilityGroup = new PrefabGUID(965421878); public static readonly PrefabGUID AB_Subdue_Active_Capture_Buff = new PrefabGUID(685381065); public static readonly PrefabGUID AB_Subdue_CaptureBuff_Target = new PrefabGUID(-1629935116); public static readonly PrefabGUID AB_Subdue_Cast = new PrefabGUID(2122566349); public static readonly PrefabGUID AB_Subdue_Channeling = new PrefabGUID(-942018407); public static readonly PrefabGUID AB_Subdue_Channeling_Target_Debuff = new PrefabGUID(-1763457371); public static readonly PrefabGUID AB_Subdue_Completed = new PrefabGUID(503680755); public static readonly PrefabGUID AB_Subdue_Owner_HasSubdueedTarget_Buff = new PrefabGUID(-1348317488); public static readonly PrefabGUID AB_Subdue_Projectile = new PrefabGUID(430016929); public static readonly PrefabGUID AB_Subdue_RecallTarget_AbilityGroup = new PrefabGUID(1479612756); public static readonly PrefabGUID AB_Subdue_RecallTarget_Cast = new PrefabGUID(1983062393); public static readonly PrefabGUID AB_Subdue_RecallTarget_PreTravel = new PrefabGUID(-882732981); public static readonly PrefabGUID AB_Subdue_RecallTarget_Travel = new PrefabGUID(-1697229695); public static readonly PrefabGUID AB_Subdue_RecallTarget_Trigger = new PrefabGUID(-1608732309); public static readonly PrefabGUID AB_Subdue_ReleaseTarget_AbilityGroup = new PrefabGUID(1856432305); public static readonly PrefabGUID AB_Subdue_ReleaseTarget_Cast = new PrefabGUID(1953043495); public static readonly PrefabGUID AB_Subdue_ReleaseTarget_Trigger = new PrefabGUID(-31231435); public static readonly PrefabGUID AB_SUMMON_Wolf_Shared_MeleeAttack_Cast = new PrefabGUID(-23745493); public static readonly PrefabGUID AB_SUMMON_Wolf_Shared_MeleeAttack_Group = new PrefabGUID(-843384411); public static readonly PrefabGUID AB_SUMMON_Wolf_Shared_MeleeAttack_Hit = new PrefabGUID(-824691221); public static readonly PrefabGUID AB_Tailor_OnAggro_AbilityGroup = new PrefabGUID(-630967346); public static readonly PrefabGUID AB_Tailor_OnAggro_Cast = new PrefabGUID(264916641); public static readonly PrefabGUID AB_Tailor_Shapeshift_AbilityGroup = new PrefabGUID(1637511208); public static readonly PrefabGUID AB_Tailor_Shapeshift_Cast = new PrefabGUID(408292383); public static readonly PrefabGUID AB_Tailor_Shapeshift_Gargoyle_Buff = new PrefabGUID(-395216184); public static readonly PrefabGUID AB_Tailor_Shapeshift_Transition_Buff = new PrefabGUID(-728707862); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_ChargeAttack_Cast = new PrefabGUID(1286493708); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_ChargeAttack_Group = new PrefabGUID(1487412876); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_ChargeAttack_Hit = new PrefabGUID(-31107723); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_MeleeAttack_Cast = new PrefabGUID(1030533396); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_MeleeAttack_Group = new PrefabGUID(1110054537); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_MeleeAttack_Hit = new PrefabGUID(751441829); public static readonly PrefabGUID AB_Trader_Farbane_Theif_HeavyAttack_Cast = new PrefabGUID(-1577981046); public static readonly PrefabGUID AB_Trader_Farbane_Theif_HeavyAttack_Group = new PrefabGUID(787005490); public static readonly PrefabGUID AB_Trader_Farbane_Theif_HeavyAttack_Hit = new PrefabGUID(-596922628); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack01_Cast01 = new PrefabGUID(-234317072); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack01_Group = new PrefabGUID(-1844993528); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack01_Hit = new PrefabGUID(1876681975); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack02_Cast02 = new PrefabGUID(1363505601); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack02_Group = new PrefabGUID(922686381); public static readonly PrefabGUID AB_Treant_Corrupted_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-293207555); public static readonly PrefabGUID AB_Treant_Corrupted_FallAsleep_Cast = new PrefabGUID(-751795687); public static readonly PrefabGUID AB_Treant_Corrupted_FallAsleep_Group = new PrefabGUID(1957509060); public static readonly PrefabGUID AB_Treant_Corrupted_MeleeAttack_AbilityGroup = new PrefabGUID(680554094); public static readonly PrefabGUID AB_Treant_Corrupted_MeleeAttack_Cast = new PrefabGUID(-1533530703); public static readonly PrefabGUID AB_Treant_Corrupted_MeleeAttack_Hit = new PrefabGUID(-140135517); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile = new PrefabGUID(1542861647); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Buff_Entangle_Delay = new PrefabGUID(443548044); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Cast = new PrefabGUID(1860312672); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Channel_Buff = new PrefabGUID(-1821796035); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Group = new PrefabGUID(-891864538); public static readonly PrefabGUID AB_Treant_Corrupted_WakeUp_Cast = new PrefabGUID(-895284846); public static readonly PrefabGUID AB_Treant_Corrupted_WakeUp_Group = new PrefabGUID(-1858935493); public static readonly PrefabGUID AB_Treant_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-1206507658); public static readonly PrefabGUID AB_Treant_FallAsleep_Cast = new PrefabGUID(653983875); public static readonly PrefabGUID AB_Treant_FallAsleep_Group = new PrefabGUID(761844990); public static readonly PrefabGUID AB_Treant_MeleeAttack_Cast01 = new PrefabGUID(-852753586); public static readonly PrefabGUID AB_Treant_MeleeAttack_Group = new PrefabGUID(1671419025); public static readonly PrefabGUID AB_Treant_MeleeAttack_Hit = new PrefabGUID(-146101842); public static readonly PrefabGUID AB_Treant_Projectile = new PrefabGUID(1640843047); public static readonly PrefabGUID AB_Treant_Projectile_Buff_Entangle_Delay = new PrefabGUID(1223573631); public static readonly PrefabGUID AB_Treant_Projectile_Cast = new PrefabGUID(-1794356035); public static readonly PrefabGUID AB_Treant_Projectile_Channel_Buff = new PrefabGUID(1528844664); public static readonly PrefabGUID AB_Treant_Projectile_Group = new PrefabGUID(-968756307); public static readonly PrefabGUID AB_Treant_WakeUp_Cast = new PrefabGUID(444000313); public static readonly PrefabGUID AB_Treant_WakeUp_Group = new PrefabGUID(-573678829); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Setup_SpawnMinion01 = new PrefabGUID(1389644802); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Setup_SpawnMinion02 = new PrefabGUID(-1776466828); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_AbilityGroup = new PrefabGUID(-802865471); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Area = new PrefabGUID(-495307382); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Buff = new PrefabGUID(1584874749); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Cast = new PrefabGUID(218371843); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Throw = new PrefabGUID(1141768008); public static readonly PrefabGUID AB_Undead_AreanaChampion_CorpseBuff_AbilityGroup = new PrefabGUID(-89125940); public static readonly PrefabGUID AB_Undead_AreanaChampion_CorpseBuff_Cast = new PrefabGUID(-1282045688); public static readonly PrefabGUID AB_Undead_ArenaChampion_AddToDuel_AbilityGroup = new PrefabGUID(341647784); public static readonly PrefabGUID AB_Undead_ArenaChampion_AddToDuel_Buff = new PrefabGUID(1120504274); public static readonly PrefabGUID AB_Undead_ArenaChampion_AddToDuel_Cast = new PrefabGUID(2063024278); public static readonly PrefabGUID AB_Undead_ArenaChampion_AwakeSequence_AbilityGroup = new PrefabGUID(1734337277); public static readonly PrefabGUID AB_Undead_ArenaChampion_AwakeSequence_Cast = new PrefabGUID(-947257653); public static readonly PrefabGUID AB_Undead_ArenaChampion_AwakeSequence_Trigger = new PrefabGUID(-909853022); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_AbilityGroup = new PrefabGUID(-782050236); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_AreaTrigger = new PrefabGUID(1325686057); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Cast = new PrefabGUID(-931371902); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Channeling = new PrefabGUID(1727243260); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Channeling_Target_Debuff = new PrefabGUID(-471020436); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Projectile = new PrefabGUID(-230762527); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_01 = new PrefabGUID(974552890); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_02 = new PrefabGUID(2041980895); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_03 = new PrefabGUID(-1968712128); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_04 = new PrefabGUID(-910154993); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_AbilityGroup = new PrefabGUID(-1810214745); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_BlockChargeBuff = new PrefabGUID(837397627); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_Cast = new PrefabGUID(163324070); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_Dash = new PrefabGUID(-1846280592); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_DashEnd = new PrefabGUID(-1125182798); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_DashEndHit = new PrefabGUID(-2119414643); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_FlightBuff = new PrefabGUID(-596907406); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_LandBuff = new PrefabGUID(411000154); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_AbilityGroup = new PrefabGUID(-1357375516); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_Buff = new PrefabGUID(-1651889429); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_Cast = new PrefabGUID(-90603923); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_PostTriggerBuff = new PrefabGUID(653584327); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_Trigger = new PrefabGUID(-1435902026); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_AbilityGroup = new PrefabGUID(-1175912131); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_Buff = new PrefabGUID(-585546216); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_Cast = new PrefabGUID(-1181129590); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_Dash = new PrefabGUID(2025995166); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_AbilityGroup = new PrefabGUID(-547251580); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_Cast = new PrefabGUID(-2125542371); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_PreTravel = new PrefabGUID(-491232670); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_Ranged_Travel = new PrefabGUID(-440418931); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_Ranged_TravelEnd = new PrefabGUID(1600795056); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_AbilityGroup = new PrefabGUID(-1756717462); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Cast = new PrefabGUID(2076261215); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Hit = new PrefabGUID(-1389269121); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Land = new PrefabGUID(900197226); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Travel = new PrefabGUID(-343236951); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_AbilityGroup = new PrefabGUID(-725828654); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_Buff = new PrefabGUID(212835226); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_Cast = new PrefabGUID(1014635843); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_Throw = new PrefabGUID(653704530); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_AbilityGroup = new PrefabGUID(2136656017); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_Cast = new PrefabGUID(361266273); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_Phase01 = new PrefabGUID(788333614); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_PostTravelBuff02 = new PrefabGUID(1206736661); public static readonly PrefabGUID AB_Undead_ArenaChampion_PlayerBuff = new PrefabGUID(932732549); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Left_AbilityGroup = new PrefabGUID(-1253650402); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Left_Cast = new PrefabGUID(-600654654); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Right_AbilityGroup = new PrefabGUID(-887581044); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Right_Cast = new PrefabGUID(1856358525); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_AbilityGroup = new PrefabGUID(821808685); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_Cast = new PrefabGUID(1095176071); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_Hit = new PrefabGUID(-1432718998); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_LaunchBuff = new PrefabGUID(-845142947); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_Melee = new PrefabGUID(-2057366094); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_AbilityGroup = new PrefabGUID(-1781725233); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast01 = new PrefabGUID(-1728701394); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast02 = new PrefabGUID(1349704579); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast03 = new PrefabGUID(-1235067969); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast04 = new PrefabGUID(1655403100); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit01 = new PrefabGUID(1226048800); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit02 = new PrefabGUID(-408974816); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit03 = new PrefabGUID(-459060299); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit04 = new PrefabGUID(-1690667121); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Stab_Cast = new PrefabGUID(499002625); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Stab_Hit = new PrefabGUID(-1984415470); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_AbilityGroup = new PrefabGUID(1322698651); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Cast = new PrefabGUID(-215946678); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Projectile = new PrefabGUID(660830020); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_SpellObject = new PrefabGUID(-1244341833); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Throw = new PrefabGUID(599983966); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Trigger = new PrefabGUID(1647360591); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_AbilityGroup = new PrefabGUID(-2023636973); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Cast01 = new PrefabGUID(1582186993); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Cast02 = new PrefabGUID(591085978); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Projectile = new PrefabGUID(3634326); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Projectile02 = new PrefabGUID(-1799332178); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_AbilityGroup = new PrefabGUID(1805214524); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Cast01 = new PrefabGUID(1074159953); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Cast02 = new PrefabGUID(-1708353334); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Cast03 = new PrefabGUID(1857753465); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Channel01 = new PrefabGUID(-2113264422); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Channel02 = new PrefabGUID(487314059); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Hit01 = new PrefabGUID(1669883558); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Hit02 = new PrefabGUID(-1127583591); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrikeFollowUp_AbilityGroup = new PrefabGUID(-1553594984); public static readonly PrefabGUID AB_Undead_Assassin_HeavyAttack_AbilityGroup = new PrefabGUID(561623729); public static readonly PrefabGUID AB_Undead_Assassin_HeavyAttack_Cast = new PrefabGUID(-42396763); public static readonly PrefabGUID AB_Undead_Assassin_HeavyAttack_Hit = new PrefabGUID(-1844549124); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackward_AbilityGroup = new PrefabGUID(-1651089042); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackWard_Buff = new PrefabGUID(793107455); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackward_Cast = new PrefabGUID(1497956578); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackWard_Dash = new PrefabGUID(306606332); public static readonly PrefabGUID AB_Undead_Assassin_JumpForward_AbilityGroup = new PrefabGUID(-163679409); public static readonly PrefabGUID AB_Undead_Assassin_JumpForward_Dash = new PrefabGUID(-924298294); public static readonly PrefabGUID AB_Undead_Assassin_Rush_AbilityGroup = new PrefabGUID(-776694525); public static readonly PrefabGUID AB_Undead_Assassin_Rush_Buff = new PrefabGUID(721541922); public static readonly PrefabGUID AB_Undead_Assassin_Rush_Cast = new PrefabGUID(-2118332423); public static readonly PrefabGUID AB_Undead_Asssasin_JumpForward_Cast = new PrefabGUID(176028199); public static readonly PrefabGUID AB_Undead_Banshee_HeavyAttack_Cast = new PrefabGUID(-854430750); public static readonly PrefabGUID AB_Undead_Banshee_HeavyAttack_Group = new PrefabGUID(-1160883278); public static readonly PrefabGUID AB_Undead_Banshee_HeavyAttack_Hit = new PrefabGUID(1909458050); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_AbilityGroup = new PrefabGUID(-1966260928); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_Cast = new PrefabGUID(2056013475); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_EffectBuff = new PrefabGUID(-151527278); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_Phase = new PrefabGUID(1296363096); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Strike_AbilityGroup = new PrefabGUID(-1942495608); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Strike_Cast = new PrefabGUID(986265684); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Strike_Hit = new PrefabGUID(-1679146272); public static readonly PrefabGUID AB_Undead_Banshee_Projectile = new PrefabGUID(-826410298); public static readonly PrefabGUID AB_Undead_Banshee_Projectile_Cast = new PrefabGUID(109620751); public static readonly PrefabGUID AB_Undead_Banshee_Projectile_Group = new PrefabGUID(-930815588); public static readonly PrefabGUID AB_Undead_Banshee_Shriek_Cast = new PrefabGUID(321771995); public static readonly PrefabGUID AB_Undead_Banshee_Shriek_Group = new PrefabGUID(633696135); public static readonly PrefabGUID AB_Undead_Banshee_Shriek_Hit = new PrefabGUID(2136091756); public static readonly PrefabGUID AB_Undead_Banshee_Teleport_Cast = new PrefabGUID(2049375272); public static readonly PrefabGUID AB_Undead_Banshee_Teleport_End = new PrefabGUID(1866065983); public static readonly PrefabGUID AB_Undead_Banshee_Teleport_Group = new PrefabGUID(-1398375841); public static readonly PrefabGUID AB_Undead_Banshee_TravelPhase = new PrefabGUID(1523180455); public static readonly PrefabGUID AB_Undead_BishopOfDeath_ChainBolt_Hard_AbilityGroup = new PrefabGUID(-323939446); public static readonly PrefabGUID AB_Undead_BishopOfDeath_ChainBolt_Hard_Cast = new PrefabGUID(-264576486); public static readonly PrefabGUID AB_Undead_BishopOfDeath_ChainBolt_Hard_Projectile = new PrefabGUID(2109917921); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_AbilityGroup = new PrefabGUID(-1272200774); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Area = new PrefabGUID(233655281); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Cast = new PrefabGUID(281036889); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_AbilityGroup = new PrefabGUID(1971375367); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_Cast = new PrefabGUID(-1611591504); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_SubThrow = new PrefabGUID(-151750616); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_Throw = new PrefabGUID(-1961790068); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Throw = new PrefabGUID(1048039556); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_AbilityGroup = new PrefabGUID(622287046); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Cast = new PrefabGUID(974865294); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Channel_Buff = new PrefabGUID(-1911074016); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_AbilityGroup = new PrefabGUID(-184530068); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Area = new PrefabGUID(-1491675002); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Cast = new PrefabGUID(1508046494); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Channel_Buff = new PrefabGUID(631759396); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Throw = new PrefabGUID(1646976651); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Trigger = new PrefabGUID(-395577573); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Trigger = new PrefabGUID(225764635); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_CorpseExplosion_Throw = new PrefabGUID(-1465937654); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_CorpseExplosion_ThrowSecond = new PrefabGUID(1993088854); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_Travel_AbilityGroup = new PrefabGUID(2145809434); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_Travel_Cast = new PrefabGUID(1368776559); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_Travel_Phase = new PrefabGUID(-2135755764); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Poison_Debuff = new PrefabGUID(697763873); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Projectile = new PrefabGUID(1391965611); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Projectile_Cast01 = new PrefabGUID(-796653678); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Projectile_Group = new PrefabGUID(780432315); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_AbilityGroup = new PrefabGUID(852659329); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Area = new PrefabGUID(1808496158); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Cast01 = new PrefabGUID(-892321021); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Cast02 = new PrefabGUID(-839879196); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Cast03 = new PrefabGUID(354605938); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Throw = new PrefabGUID(-875784734); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Snare_Buff = new PrefabGUID(1011937658); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Unholy_Debuff = new PrefabGUID(-1856022521); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_AbilityGroup = new PrefabGUID(1583944483); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_BlindBuff = new PrefabGUID(-793401762); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_Cast = new PrefabGUID(986177340); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_End = new PrefabGUID(280945763); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_Phase = new PrefabGUID(-2020148245); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Idle_Buff = new PrefabGUID(-1782768874); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_AbilityGroup = new PrefabGUID(787702249); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Cast = new PrefabGUID(-1692167749); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_AbilityGroup = new PrefabGUID(651637774); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Cast = new PrefabGUID(1827884481); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Piercing01 = new PrefabGUID(1813631664); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Piercing02 = new PrefabGUID(1403025315); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Piercing03 = new PrefabGUID(278080905); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Piercing = new PrefabGUID(-966372518); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_AbilityGroup = new PrefabGUID(461701172); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_AggroBuff = new PrefabGUID(-138162557); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_Cast = new PrefabGUID(-1668853226); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_ChannelBuff = new PrefabGUID(1365773026); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_Summon = new PrefabGUID(-1721058902); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_AbilityGroup = new PrefabGUID(1325722355); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_Cast = new PrefabGUID(-196521795); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_End = new PrefabGUID(586391433); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_Phase = new PrefabGUID(450546330); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_AbilityGroup = new PrefabGUID(-1795148379); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Area = new PrefabGUID(470162216); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Cast = new PrefabGUID(-868543514); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Centre = new PrefabGUID(1132277864); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Left = new PrefabGUID(159545095); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Right = new PrefabGUID(743487414); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Trigger = new PrefabGUID(-1057483318); public static readonly PrefabGUID AB_Undead_CursedSmith_CircleBuff = new PrefabGUID(614926231); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_AbilityGroup = new PrefabGUID(1835500377); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_Cast = new PrefabGUID(566534594); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_Projectile01 = new PrefabGUID(190656604); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_Projectile02 = new PrefabGUID(-429163663); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_AbilityGroup = new PrefabGUID(-1713640367); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_Cast = new PrefabGUID(252483460); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_End = new PrefabGUID(872008839); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_Phase = new PrefabGUID(-679671022); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_PostTravelBuff = new PrefabGUID(-563149215); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_AbilityGroup = new PrefabGUID(558343424); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Cast01 = new PrefabGUID(-931463264); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Cast02 = new PrefabGUID(1683346429); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Cast03 = new PrefabGUID(686317089); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Hit = new PrefabGUID(1717667700); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Hit03 = new PrefabGUID(880812842); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_AbilityGroup = new PrefabGUID(-544864084); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast01 = new PrefabGUID(1968008713); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast02 = new PrefabGUID(-1449706522); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast03 = new PrefabGUID(1165014121); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast04 = new PrefabGUID(1425163377); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Hit = new PrefabGUID(477231707); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_PhaseIn = new PrefabGUID(-741948962); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_PhaseOut = new PrefabGUID(124431425); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_PostDash = new PrefabGUID(-364273826); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_AbilityGroup = new PrefabGUID(793860757); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Cast01 = new PrefabGUID(-1915455709); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Cast02 = new PrefabGUID(-697013354); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Cast03 = new PrefabGUID(-326267943); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Hit = new PrefabGUID(292942779); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Hit03 = new PrefabGUID(1712010348); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_SpearThrust_AbilityGroup = new PrefabGUID(1166337981); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_SpearThrust_Cast = new PrefabGUID(-885632624); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_DashAttack_AbilityGroup = new PrefabGUID(-1058201566); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_DashAttack_Cast = new PrefabGUID(547781512); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_DashAttack_Hit = new PrefabGUID(399471754); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_AbilityGroup = new PrefabGUID(1323999965); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Cast01 = new PrefabGUID(1375405525); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Cast02 = new PrefabGUID(1895383260); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Cast03 = new PrefabGUID(1502716109); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Hit = new PrefabGUID(-537242798); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Hit03 = new PrefabGUID(1100059704); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerBuff = new PrefabGUID(1238601516); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_AbilityGroup = new PrefabGUID(-1502523453); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_Cast = new PrefabGUID(-846010733); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_End = new PrefabGUID(-421364587); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_Phase = new PrefabGUID(1400962626); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_PostTravelBuff = new PrefabGUID(1480234387); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_Projectile = new PrefabGUID(1814297050); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_AbilityGroup = new PrefabGUID(1700777111); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast01 = new PrefabGUID(-453439341); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast02 = new PrefabGUID(-1079010741); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast03 = new PrefabGUID(1885835242); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast04 = new PrefabGUID(-2025301200); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Hit = new PrefabGUID(1493201006); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_PhaseIn = new PrefabGUID(1491771145); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_PhaseOut = new PrefabGUID(-1451233113); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_PostDash = new PrefabGUID(-55469760); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_AbilityGroup = new PrefabGUID(-329078808); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Buff = new PrefabGUID(-1023923222); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Cast = new PrefabGUID(141486446); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Charge_AbilityGroup = new PrefabGUID(340003308); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Charge_Cast = new PrefabGUID(-639624682); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Charge_Phase = new PrefabGUID(-1767716643); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_End = new PrefabGUID(-125540588); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Trigger = new PrefabGUID(-211091947); public static readonly PrefabGUID AB_Undead_CursedSmith_SlashersBuff = new PrefabGUID(834835214); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearBuff = new PrefabGUID(1926914760); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearThrust_AbilityGroup = new PrefabGUID(-943061757); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearThrust_Cast = new PrefabGUID(2005022536); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearThrust_Projectile = new PrefabGUID(-420853520); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_AbilityGroup = new PrefabGUID(-809284772); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_AggroBuff = new PrefabGUID(-652017630); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_Cast = new PrefabGUID(432667231); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_SpawnBuff = new PrefabGUID(881201696); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_Trigger = new PrefabGUID(1884566141); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_AbilityGroup = new PrefabGUID(847476786); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_Cast = new PrefabGUID(-1775531172); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_Channel = new PrefabGUID(29874824); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_PerPlayer_Trigger = new PrefabGUID(560362268); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_Trigger = new PrefabGUID(-476764537); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAxe_AbilityGroup = new PrefabGUID(-1889094547); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAxe_Cast = new PrefabGUID(-1019895922); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAxe_Trigger = new PrefabGUID(-1270010004); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponMace_AbilityGroup = new PrefabGUID(546685538); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponMace_Cast = new PrefabGUID(1213813956); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponMace_Trigger = new PrefabGUID(-1487130754); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSlashers_AbilityGroup = new PrefabGUID(151173850); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSlashers_Cast = new PrefabGUID(640660691); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSlashers_Trigger = new PrefabGUID(618637519); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSpear_AbilityGroup = new PrefabGUID(1162725480); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSpear_Cast = new PrefabGUID(-785427492); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSpear_Trigger = new PrefabGUID(-1721868281); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSword_AbilityGroup = new PrefabGUID(-332863103); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSword_Cast = new PrefabGUID(-1234541542); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSword_Trigger = new PrefabGUID(856838433); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_AbilityGroup = new PrefabGUID(-668888775); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_Buff = new PrefabGUID(321665990); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_Cast = new PrefabGUID(1554742526); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_Hit = new PrefabGUID(2126017567); public static readonly PrefabGUID AB_Undead_FlyingSkull_Approach_AbilityGroup = new PrefabGUID(381103028); public static readonly PrefabGUID AB_Undead_FlyingSkull_Approach_ApproachBuff = new PrefabGUID(1277984216); public static readonly PrefabGUID AB_Undead_FlyingSkull_Approach_Cast = new PrefabGUID(-695641187); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_AbilityGroup = new PrefabGUID(304835919); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_AggroBuff = new PrefabGUID(2057963226); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_Area = new PrefabGUID(1812451074); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_Cast = new PrefabGUID(1371509529); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_Fuse = new PrefabGUID(-514685097); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_AbilityGroup = new PrefabGUID(575048784); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Cast01 = new PrefabGUID(1779066530); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Cast02 = new PrefabGUID(-976765967); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Cast03 = new PrefabGUID(493823580); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Channel01 = new PrefabGUID(1349328654); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Channel02 = new PrefabGUID(-1075520220); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Hit01 = new PrefabGUID(1191680975); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Hit02 = new PrefabGUID(-1610497794); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrikeFollowUp_AbilityGroup = new PrefabGUID(57588514); public static readonly PrefabGUID AB_Undead_GhostAssassin_HeavyAttack_AbilityGroup = new PrefabGUID(1791635791); public static readonly PrefabGUID AB_Undead_GhostAssassin_HeavyAttack_Cast = new PrefabGUID(118469802); public static readonly PrefabGUID AB_Undead_GhostAssassin_HeavyAttack_Hit = new PrefabGUID(-190897854); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackward_AbilityGroup = new PrefabGUID(236831977); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackWard_Buff = new PrefabGUID(170780167); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackward_Cast = new PrefabGUID(-13961186); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackWard_Dash = new PrefabGUID(-2139753444); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpForward_AbilityGroup = new PrefabGUID(-923762386); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpForward_Dash = new PrefabGUID(831313324); public static readonly PrefabGUID AB_Undead_GhostAssassin_Rush_AbilityGroup = new PrefabGUID(1365714615); public static readonly PrefabGUID AB_Undead_GhostAssassin_Rush_Buff = new PrefabGUID(-1284071447); public static readonly PrefabGUID AB_Undead_GhostAssassin_Rush_Cast = new PrefabGUID(948135877); public static readonly PrefabGUID AB_Undead_GhostAsssasin_JumpForward_Cast = new PrefabGUID(-375760032); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Cast_Over = new PrefabGUID(144066311); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Cast_Right = new PrefabGUID(566726913); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Down_Stun = new PrefabGUID(-615283734); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Group = new PrefabGUID(-2092537748); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Hit = new PrefabGUID(611800697); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Hit_Narrow = new PrefabGUID(-950932560); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_AbilityGroup = new PrefabGUID(948504723); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_Area = new PrefabGUID(-1821037450); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_Buff = new PrefabGUID(-371204788); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_Cast = new PrefabGUID(1200888291); public static readonly PrefabGUID AB_Undead_GhostGuardian_BlockBuff_Buff = new PrefabGUID(-2071441247); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_AbilityGroup = new PrefabGUID(955484879); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_Cast = new PrefabGUID(-1992093070); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_Dash = new PrefabGUID(285986372); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_PostDashBuff = new PrefabGUID(963672441); public static readonly PrefabGUID AB_Undead_GhostGuardian_ChargeFollowUp_AbilityGroup = new PrefabGUID(1059734295); public static readonly PrefabGUID AB_Undead_GhostGuardian_ChargeFollowUp_Cast = new PrefabGUID(-2023682111); public static readonly PrefabGUID AB_Undead_GhostGuardian_ChargeFollowUp_Hit = new PrefabGUID(-553204750); public static readonly PrefabGUID AB_Undead_GhostMilitia_Crossbow_Cast = new PrefabGUID(-184099139); public static readonly PrefabGUID AB_Undead_GhostMilitia_Crossbow_Group = new PrefabGUID(-932485064); public static readonly PrefabGUID AB_Undead_GhostMilitia_Crossbow_Projectile = new PrefabGUID(-202201979); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Cast01 = new PrefabGUID(251770776); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Cast02 = new PrefabGUID(559126206); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Group = new PrefabGUID(-1967657578); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Hit = new PrefabGUID(-180866207); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Cast01 = new PrefabGUID(-521296718); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Cast02 = new PrefabGUID(-373955606); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Group = new PrefabGUID(1382585346); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Hit = new PrefabGUID(-1878119365); public static readonly PrefabGUID AB_Undead_Ghoul_RiseAgain_Death_Buff = new PrefabGUID(-765776365); public static readonly PrefabGUID AB_Undead_Ghoul_RiseAgain_Vulnerable = new PrefabGUID(1480809923); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Cast_Over = new PrefabGUID(1886395231); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Cast_Right = new PrefabGUID(2142724750); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Down_Stun = new PrefabGUID(-1715674365); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Group = new PrefabGUID(1254118139); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Hit = new PrefabGUID(-1064856246); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Hit_Narrow = new PrefabGUID(-237598679); public static readonly PrefabGUID AB_Undead_Guardian_Block_AbilityGroup = new PrefabGUID(-313746247); public static readonly PrefabGUID AB_Undead_Guardian_Block_Area = new PrefabGUID(34437260); public static readonly PrefabGUID AB_Undead_Guardian_Block_Buff = new PrefabGUID(-237299190); public static readonly PrefabGUID AB_Undead_Guardian_Block_Cast = new PrefabGUID(-1021521834); public static readonly PrefabGUID AB_Undead_Guardian_BlockBuff_Buff = new PrefabGUID(513131292); public static readonly PrefabGUID AB_Undead_Guardian_Charge_AbilityGroup = new PrefabGUID(-955554663); public static readonly PrefabGUID AB_Undead_Guardian_Charge_Cast = new PrefabGUID(65263502); public static readonly PrefabGUID AB_Undead_Guardian_Charge_Dash = new PrefabGUID(429409035); public static readonly PrefabGUID AB_Undead_Guardian_Charge_PostDashBuff = new PrefabGUID(604228851); public static readonly PrefabGUID AB_Undead_Guardian_ChargeFollowUp_AbilityGroup = new PrefabGUID(124368471); public static readonly PrefabGUID AB_Undead_Guardian_ChargeFollowUp_Cast = new PrefabGUID(-87608358); public static readonly PrefabGUID AB_Undead_Guardian_ChargeFollowUp_Hit = new PrefabGUID(521320642); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_AbilityGroup = new PrefabGUID(1294567037); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Cast_01 = new PrefabGUID(-1725903770); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Cast_02 = new PrefabGUID(1238527663); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Down_Stun = new PrefabGUID(-1682757195); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Hit_01 = new PrefabGUID(-1511573035); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Hit_02 = new PrefabGUID(2083581110); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_AbilityGroup = new PrefabGUID(-265915268); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_Cast = new PrefabGUID(799157671); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_Phase = new PrefabGUID(1315022747); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_PostWarpBuff = new PrefabGUID(1497959076); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AbilityGroup = new PrefabGUID(-1532726733); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AggroImageBuff = new PrefabGUID(1771020451); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AggroOwnerBuff = new PrefabGUID(-229821029); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AttackBuff = new PrefabGUID(-1558669174); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_Cast = new PrefabGUID(-286856064); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_Dash = new PrefabGUID(1412957994); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_MinionSpawnTrigger = new PrefabGUID(1176947186); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_AbilityGroup = new PrefabGUID(1986068244); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_BlindBuff = new PrefabGUID(978837924); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_Cast = new PrefabGUID(1760437256); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_HideBuff = new PrefabGUID(975893192); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_HideTrigger = new PrefabGUID(-743759578); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_HintOnCastBuff = new PrefabGUID(-607238178); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_InitBuff = new PrefabGUID(958910942); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_MinionShapeshiftBuff = new PrefabGUID(1959991342); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_RevealBuff = new PrefabGUID(1595061330); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_SpawnMinions = new PrefabGUID(-653733169); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_AbilityGroup = new PrefabGUID(1456136938); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Cast01 = new PrefabGUID(-1001056735); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Cast02 = new PrefabGUID(790730804); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Channel01 = new PrefabGUID(180385648); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Channel02 = new PrefabGUID(-1141170119); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Hit01 = new PrefabGUID(291851938); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Hit02 = new PrefabGUID(1505223849); public static readonly PrefabGUID AB_Undead_Infiltrator_HeavyAttack_AbilityGroup = new PrefabGUID(-1422240708); public static readonly PrefabGUID AB_Undead_Infiltrator_HeavyAttack_Cast = new PrefabGUID(-574437319); public static readonly PrefabGUID AB_Undead_Infiltrator_HeavyAttack_Hit = new PrefabGUID(-1988679474); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_AbilityGroup = new PrefabGUID(1621601748); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Cast01 = new PrefabGUID(763407667); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Cast02 = new PrefabGUID(-1637124404); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Cast03 = new PrefabGUID(589619310); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_AbilityGroup = new PrefabGUID(-39228843); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Cast01 = new PrefabGUID(1461447134); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Cast02 = new PrefabGUID(-1664437676); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Cast03 = new PrefabGUID(899460111); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Projectile = new PrefabGUID(1816287673); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Projectile = new PrefabGUID(1784514861); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_AbilityGroup = new PrefabGUID(-1108274345); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_BlindBuff = new PrefabGUID(343928276); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_Cast = new PrefabGUID(2070389139); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_HideBuff = new PrefabGUID(1400277524); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_HideTrigger = new PrefabGUID(357961330); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_HintBuff = new PrefabGUID(-1887712500); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_InitBuff = new PrefabGUID(1493773465); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_MinionSpawnBuff = new PrefabGUID(1732611570); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_MinionTimer = new PrefabGUID(-1972412497); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_RevealBuff = new PrefabGUID(-1117012711); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_SpawnMinions = new PrefabGUID(1091940216); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowFlurry_AbilityGroup = new PrefabGUID(94933870); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowFlurry_Cast = new PrefabGUID(1717054384); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowFlurry_Hit = new PrefabGUID(258177675); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_AbilityGroup = new PrefabGUID(-664569083); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_AggroBuff = new PrefabGUID(1800200320); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_BleedBuff = new PrefabGUID(-1199207940); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_Cast = new PrefabGUID(1524824733); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_TargetedBuff = new PrefabGUID(-1411423820); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_Travel = new PrefabGUID(-181608834); public static readonly PrefabGUID AB_Undead_Leader_AreaAttack_Cast = new PrefabGUID(-1169320466); public static readonly PrefabGUID AB_Undead_Leader_AreaAttack_Group = new PrefabGUID(211628325); public static readonly PrefabGUID AB_Undead_Leader_AreaAttack_Hit = new PrefabGUID(-801963153); public static readonly PrefabGUID AB_Undead_Leader_ChainHookProjectile = new PrefabGUID(1297172439); public static readonly PrefabGUID AB_Undead_Leader_ChainHookProjectile_Cast = new PrefabGUID(247831371); public static readonly PrefabGUID AB_Undead_Leader_ChainHookProjectile_Group = new PrefabGUID(234226418); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Cast01 = new PrefabGUID(-835805149); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Cast02 = new PrefabGUID(1895747735); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Group = new PrefabGUID(346834991); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Hit = new PrefabGUID(434502419); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_Cast = new PrefabGUID(-157443148); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_Dash = new PrefabGUID(1753922607); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_Group = new PrefabGUID(948587795); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_PostCastBuff = new PrefabGUID(1745713079); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_SkeletonBomb = new PrefabGUID(2026476464); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_SkeletonImpact = new PrefabGUID(550777088); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_AbilityGroup = new PrefabGUID(-1504629350); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_Buff = new PrefabGUID(-690832324); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_Cast = new PrefabGUID(-2018651670); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_SkeletonSpawnBuff = new PrefabGUID(243240214); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_SkeletonSpawner = new PrefabGUID(804082239); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_SkeletonSpawner_Solo = new PrefabGUID(-1753627847); public static readonly PrefabGUID AB_Undead_Necromancer_Projectile = new PrefabGUID(2025050692); public static readonly PrefabGUID AB_Undead_Necromancer_Projectile_AbilityGroup = new PrefabGUID(2021815703); public static readonly PrefabGUID AB_Undead_Necromancer_Projectile_Cast = new PrefabGUID(1193324531); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_AbilityGroup = new PrefabGUID(1687310776); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_Cast = new PrefabGUID(-1872240360); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_MinionSpawn = new PrefabGUID(-733298249); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_SpawnBuff = new PrefabGUID(1010121838); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_AbilityGroup = new PrefabGUID(-1800699406); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_Cast = new PrefabGUID(-731368054); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_Channel = new PrefabGUID(431798349); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_MinionSpawn = new PrefabGUID(2064604230); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_SpawnBuff = new PrefabGUID(-1456149655); public static readonly PrefabGUID AB_Undead_Priest_Elite_Emote_Aggro_AbilityGroup = new PrefabGUID(-1153380978); public static readonly PrefabGUID AB_Undead_Priest_Elite_Emote_Aggro_Buff = new PrefabGUID(-1361905907); public static readonly PrefabGUID AB_Undead_Priest_Elite_Emote_Aggro_Cast = new PrefabGUID(-1659518459); public static readonly PrefabGUID AB_Undead_Priest_Elite_Idle_AbilityGroup = new PrefabGUID(1338374909); public static readonly PrefabGUID AB_Undead_Priest_Elite_Idle_Buff = new PrefabGUID(1967430300); public static readonly PrefabGUID AB_Undead_Priest_Elite_Idle_Cast = new PrefabGUID(737822429); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile = new PrefabGUID(1537896026); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Area = new PrefabGUID(-478817853); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Cast = new PrefabGUID(1410692395); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Group = new PrefabGUID(14728131); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Hard_Cast = new PrefabGUID(672449650); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Hard_Group = new PrefabGUID(1837385563); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_AbilityGroup = new PrefabGUID(1988754598); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Cast = new PrefabGUID(-1220602184); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_ChannelBuff = new PrefabGUID(-1001091278); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_AbilityGroup = new PrefabGUID(1619461812); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_Cast = new PrefabGUID(-1446844488); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_ChannelBuff = new PrefabGUID(-461513750); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_Projectile = new PrefabGUID(-1865623176); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_ProxySpawner = new PrefabGUID(-1435808132); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Projectile = new PrefabGUID(-766139646); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_ProxySpawner = new PrefabGUID(1249580491); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_AbilityGroup = new PrefabGUID(-2034290170); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Cast = new PrefabGUID(295510185); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_ChannelBuff = new PrefabGUID(-611324031); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Minion_Buff = new PrefabGUID(883066423); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Summon_Melee = new PrefabGUID(1907343961); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Summon_Ranged = new PrefabGUID(626506163); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_AbilityGroup = new PrefabGUID(1414167161); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_Cast = new PrefabGUID(576497231); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_ChannelBuff = new PrefabGUID(850006028); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_Minion_Buff = new PrefabGUID(1258181143); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_AbilityGroup = new PrefabGUID(-1125894381); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_Cast = new PrefabGUID(-1136805245); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_End = new PrefabGUID(493463494); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_Phase = new PrefabGUID(-1350548205); public static readonly PrefabGUID AB_Undead_Priest_Projectile = new PrefabGUID(1230811096); public static readonly PrefabGUID AB_Undead_Priest_Projectile_Cast = new PrefabGUID(-1526931129); public static readonly PrefabGUID AB_Undead_Priest_Projectile_Group = new PrefabGUID(-1047491293); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_AbilityGroup = new PrefabGUID(-1742500275); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_Cast = new PrefabGUID(145839750); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_Minion_Buff = new PrefabGUID(-603286810); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_Summon = new PrefabGUID(26213905); public static readonly PrefabGUID AB_Undead_RottingGhoul_MeleeAttack_Cast01 = new PrefabGUID(-1282137109); public static readonly PrefabGUID AB_Undead_RottingGhoul_MeleeAttack_Group = new PrefabGUID(32629003); public static readonly PrefabGUID AB_Undead_RottingGhoul_MeleeAttack_Hit = new PrefabGUID(1842470984); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_AbilityGroup = new PrefabGUID(-22490832); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_Cast = new PrefabGUID(1323803401); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_End = new PrefabGUID(73337284); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_Phase = new PrefabGUID(-2041535242); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Dash_AbilityGroup = new PrefabGUID(-200440242); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Dash_Cast = new PrefabGUID(-513494231); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Dash_Phase = new PrefabGUID(-1716963543); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_AbilityGroup = new PrefabGUID(-660542965); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_Cast = new PrefabGUID(778738728); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_FadeOut = new PrefabGUID(-869896396); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_Hit = new PrefabGUID(-871881847); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Dash_AbilityGroup = new PrefabGUID(1478784055); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Dash_Cast = new PrefabGUID(1242763786); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Dash_Phase = new PrefabGUID(1593933247); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_AbilityGroup = new PrefabGUID(1435233272); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_Cast = new PrefabGUID(1295102358); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_FadeOut = new PrefabGUID(972047308); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_Hit = new PrefabGUID(1909934951); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile = new PrefabGUID(-855217913); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile_AbilityGroup = new PrefabGUID(-818533945); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile_Cast_01 = new PrefabGUID(-1135675071); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile_Cast_02 = new PrefabGUID(779413087); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile = new PrefabGUID(-2097764830); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile_AbilityGroup = new PrefabGUID(-20539715); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile_Cast_01 = new PrefabGUID(1159669581); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile_Cast_02 = new PrefabGUID(986775615); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_AbilityGroup = new PrefabGUID(2095802125); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_Cast = new PrefabGUID(454659105); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_TailBuff = new PrefabGUID(892457475); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_UndergroudBuff = new PrefabGUID(580160506); public static readonly PrefabGUID AB_Undead_SkeletonGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-1104043123); public static readonly PrefabGUID AB_Undead_SkeletonGolem_MeleeAttack_Cast = new PrefabGUID(-1433098728); public static readonly PrefabGUID AB_Undead_SkeletonGolem_MeleeAttack_Hit = new PrefabGUID(-153445066); public static readonly PrefabGUID AB_Undead_SkeletonGolem_SpawnMinionThrow = new PrefabGUID(-53762695); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_AbilityGroup = new PrefabGUID(-386396572); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_Cast = new PrefabGUID(-1927128094); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_LaunchBuff = new PrefabGUID(522109406); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_StunBuff = new PrefabGUID(209011126); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_AbilityGroup = new PrefabGUID(937561987); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_Cast = new PrefabGUID(-2000416863); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_End = new PrefabGUID(-1794709849); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_HasSwallowedBuff = new PrefabGUID(1303687336); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_Hit = new PrefabGUID(-886600453); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_OnHitTravel = new PrefabGUID(-1014729642); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_Phase = new PrefabGUID(-1865259954); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_TargetSwallowedBuff = new PrefabGUID(-743287512); public static readonly PrefabGUID AB_Undead_SkeletonMage_Projectile = new PrefabGUID(-1904253502); public static readonly PrefabGUID AB_Undead_SkeletonMage_Projectile_Cast = new PrefabGUID(-141328123); public static readonly PrefabGUID AB_Undead_SkeletonMage_Projectile_Group = new PrefabGUID(822633768); public static readonly PrefabGUID AB_Undead_SkeletonMage_UnholyBlast_Cast = new PrefabGUID(1921140887); public static readonly PrefabGUID AB_Undead_SkeletonMage_UnholyBlast_Group = new PrefabGUID(379001645); public static readonly PrefabGUID AB_Undead_SkeletonMage_UnholyBlast_Throw = new PrefabGUID(-161666976); public static readonly PrefabGUID AB_Undead_ZealousCultist_Emote_OnAggro_Buff = new PrefabGUID(1906937031); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_AbilityGroup = new PrefabGUID(-281508142); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_Cast = new PrefabGUID(-1974474964); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_ChannelBuff = new PrefabGUID(-1801060736); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_PreTravel = new PrefabGUID(-1715817194); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_Travel = new PrefabGUID(3129866); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_TravelEnd = new PrefabGUID(1621595488); public static readonly PrefabGUID AB_Undead_ZealousCultist_Ghost_Possess_AbilityGroup = new PrefabGUID(-1912093062); public static readonly PrefabGUID AB_Undead_ZealousCultist_Ghost_Possess_Cast = new PrefabGUID(-645536843); public static readonly PrefabGUID AB_Undead_ZealousCultist_Ghost_Possess_Dash = new PrefabGUID(172238210); public static readonly PrefabGUID AB_Undead_ZealousCultist_RaiseDead_AbilityGroup = new PrefabGUID(-552245952); public static readonly PrefabGUID AB_Undead_ZealousCultist_RaiseDead_Cast = new PrefabGUID(380712186); public static readonly PrefabGUID AB_Undead_ZealousCultist_RaiseDead_Summon = new PrefabGUID(1648548457); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_AbilityGroup = new PrefabGUID(-1441325084); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_AggroBuff = new PrefabGUID(-1143388187); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Cast = new PrefabGUID(-1995728238); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_HideBuff = new PrefabGUID(-528898382); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Melee_AbilityGroup = new PrefabGUID(-597391921); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Melee_Cast = new PrefabGUID(-1243095926); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Melee_Hit = new PrefabGUID(573381998); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_MeleeBuff = new PrefabGUID(1723269933); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_AbilityGroup_01 = new PrefabGUID(-116587794); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_AbilityGroup_02 = new PrefabGUID(-280574043); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_Cast_01 = new PrefabGUID(1324777714); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_Cast_02 = new PrefabGUID(1524438019); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_Hit = new PrefabGUID(-803538080); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_AbilityGroup = new PrefabGUID(-1784566500); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_Cast = new PrefabGUID(-670440939); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_ChannelBuff = new PrefabGUID(1711575556); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_SpawnBuff = new PrefabGUID(-1680355490); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_Summon = new PrefabGUID(-539714775); public static readonly PrefabGUID AB_Unholy_ArmyOfTheDead_AbilityGroup = new PrefabGUID(-1781779733); public static readonly PrefabGUID AB_Unholy_ArmyOfTheDead_Buff = new PrefabGUID(-1203200208); public static readonly PrefabGUID AB_Unholy_ArmyOfTheDead_Cast = new PrefabGUID(-1960130324); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_AbilityGroup = new PrefabGUID(-1845982676); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Cast = new PrefabGUID(-1188505466); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Channeling = new PrefabGUID(-417269477); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Channeling_Target_Debuff = new PrefabGUID(1561792386); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Projectile = new PrefabGUID(-662134544); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_01 = new PrefabGUID(-713055068); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_02 = new PrefabGUID(-1571744103); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_03 = new PrefabGUID(1152657814); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_04 = new PrefabGUID(-193504257); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Spellmod_Area = new PrefabGUID(-488038318); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Spellmod_BoneSpirit = new PrefabGUID(-1579738354); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_SpellMod_SkullNova_HitBuff = new PrefabGUID(-291699925); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_SpellMod_SkullNova_Projectile = new PrefabGUID(876172074); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_AbilityGroup = new PrefabGUID(481411985); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_Cast = new PrefabGUID(1649739922); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_SpellMod_DoubleImpact = new PrefabGUID(-313908726); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_SpellMod_SkullNova_HitBuff = new PrefabGUID(1028432996); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_SpellMod_SkullNova_Projectile = new PrefabGUID(-2113851031); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_Throw = new PrefabGUID(57182092); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_AbilityGroup = new PrefabGUID(-1204819086); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Cast = new PrefabGUID(-1763499516); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Projectile = new PrefabGUID(917769627); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Projectile_Wave01 = new PrefabGUID(608176448); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Projectile_Wave02 = new PrefabGUID(422968059); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_SpellMod_BoneSpirit = new PrefabGUID(-2065732462); public static readonly PrefabGUID AB_Unholy_CorruptedSKull_Spellmod_BoneSpirit_HitBuff = new PrefabGUID(162731987); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_SpellMod_DetonateSkeleton = new PrefabGUID(-244917388); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_SpellMod_LesserProjectile = new PrefabGUID(761171323); public static readonly PrefabGUID AB_Unholy_DeathKnight_AbilityGroup = new PrefabGUID(1961570821); public static readonly PrefabGUID AB_Unholy_DeathKnight_Cast_Target = new PrefabGUID(-438571790); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Cast01 = new PrefabGUID(-432062352); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Cast02 = new PrefabGUID(-2132500072); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Group = new PrefabGUID(684476797); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Hit = new PrefabGUID(2108430385); public static readonly PrefabGUID AB_Unholy_DeathKnight_Summon = new PrefabGUID(959030936); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_AbilityGroup = new PrefabGUID(483769006); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_AggroBuff = new PrefabGUID(55497949); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_Cast = new PrefabGUID(1506843814); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_FadeOut = new PrefabGUID(-2075711030); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_Hit = new PrefabGUID(1553964211); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_HitBuff = new PrefabGUID(-618414655); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_AbilityGroup = new PrefabGUID(-1643450845); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_Cast = new PrefabGUID(1210009422); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_Phase = new PrefabGUID(792307863); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_Post = new PrefabGUID(1159092890); public static readonly PrefabGUID AB_Unholy_FallenAngel_DeSpawnBuff = new PrefabGUID(1476380301); public static readonly PrefabGUID AB_Unholy_FallenAngel_InitAggroTrigger = new PrefabGUID(-613468346); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_AbilityGroup = new PrefabGUID(-1629569043); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_Cast01 = new PrefabGUID(-980937315); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_Cast02 = new PrefabGUID(-1475031143); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_Cast03 = new PrefabGUID(326756215); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_StabHit01 = new PrefabGUID(-1020775974); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_StabHit02 = new PrefabGUID(1175550711); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_StabHit03 = new PrefabGUID(1441770361); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_SwingHit = new PrefabGUID(222273439); public static readonly PrefabGUID AB_Unholy_FallenAngel_SpawnBuff = new PrefabGUID(902904590); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_AbilityGroup = new PrefabGUID(-1336700473); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_AggroBuff = new PrefabGUID(-231483197); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Area = new PrefabGUID(-1040884098); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Cast = new PrefabGUID(972637370); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Channel = new PrefabGUID(-1875510860); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Projectile = new PrefabGUID(1610096131); public static readonly PrefabGUID AB_Unholy_Shared_DeathKnightSpawner = new PrefabGUID(-364717473); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner = new PrefabGUID(-552454696); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Death_Buff = new PrefabGUID(-1195183882); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Mage = new PrefabGUID(1319537394); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Mage_DeathKnightJewel = new PrefabGUID(1654690407); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Mage_VeilOfBones = new PrefabGUID(1530861782); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Owner = new PrefabGUID(-908862643); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_VeilOfBones = new PrefabGUID(48347502); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_WardOfTheDamned = new PrefabGUID(1317719472); public static readonly PrefabGUID AB_Unholy_Shared_SpellMod_SkeletonBomb_Buff = new PrefabGUID(-1089313032); public static readonly PrefabGUID AB_Unholy_Shared_SpellMod_SkeletonBomb_Impact = new PrefabGUID(1158201163); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile = new PrefabGUID(681373599); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile_AbilityGroup = new PrefabGUID(604882732); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile_Cast_01 = new PrefabGUID(314501028); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile_Cast_02 = new PrefabGUID(-1319556135); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Cast01 = new PrefabGUID(898935418); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Cast02 = new PrefabGUID(724168605); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Group = new PrefabGUID(537620937); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Hit = new PrefabGUID(-1566545914); public static readonly PrefabGUID AB_Unholy_Soulburn_AbilityGroup = new PrefabGUID(2138402840); public static readonly PrefabGUID AB_Unholy_Soulburn_Area = new PrefabGUID(81992938); public static readonly PrefabGUID AB_Unholy_Soulburn_Cast = new PrefabGUID(-2054271807); public static readonly PrefabGUID AB_Unholy_Soulburn_Silence_Buff = new PrefabGUID(1387118598); public static readonly PrefabGUID AB_Unholy_Soulburn_SpellBlock_Buff = new PrefabGUID(1552904661); public static readonly PrefabGUID AB_Unholy_Soulburn_SpellMod_ConsumeSkeletonEmpowerBuff = new PrefabGUID(732037554); public static readonly PrefabGUID AB_Unholy_Soulburn_SpellMod_Shield = new PrefabGUID(981624853); public static readonly PrefabGUID AB_Unholy_SummonFallenAngel_AbilityGroup = new PrefabGUID(1297311521); public static readonly PrefabGUID AB_Unholy_SummonFallenAngel_Cast = new PrefabGUID(1313802242); public static readonly PrefabGUID AB_Unholy_SummonFallenAngel_Throw = new PrefabGUID(-1965470202); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_AbilityGroup = new PrefabGUID(-859352730); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Cast = new PrefabGUID(421353201); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Recast_AbilityGroup = new PrefabGUID(1351498027); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Recast_Cast = new PrefabGUID(-274736833); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_RecastBuff = new PrefabGUID(-1397728677); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Throw = new PrefabGUID(-1042746138); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Throw_Small = new PrefabGUID(-847797984); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_AbilityGroup = new PrefabGUID(-1356470853); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Cast = new PrefabGUID(-793767988); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Hit = new PrefabGUID(1712440972); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Small_AbilityGroup = new PrefabGUID(-1031367685); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Small_Cast = new PrefabGUID(824239749); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Small_Hit = new PrefabGUID(-728541516); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_AbilityGroup = new PrefabGUID(-1136860480); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Buff = new PrefabGUID(463497101); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Cast = new PrefabGUID(685461747); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_FirstTriggerBuff = new PrefabGUID(72182581); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Recast_AbilityGroup = new PrefabGUID(318813926); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Recast_Cast = new PrefabGUID(-771833529); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Recast_Cone = new PrefabGUID(1957872578); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_SpellMod_Minion_EmpowerBuff = new PrefabGUID(345491926); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_SpellMod_Minion_ShieldBuff = new PrefabGUID(1378825977); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_AbilityGroup = new PrefabGUID(-1968364229); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_Cast = new PrefabGUID(1671733210); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_FrenzyBuff = new PrefabGUID(-1256137731); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_Hit = new PrefabGUID(706730253); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(1691491221); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Cast01 = new PrefabGUID(1215815401); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Cast02 = new PrefabGUID(1039072868); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Cast03 = new PrefabGUID(1822540594); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Hit01 = new PrefabGUID(-1733898626); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Hit02 = new PrefabGUID(-1192587580); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Hit03 = new PrefabGUID(-1064937884); public static readonly PrefabGUID AB_Vampire_Axe_Primary_Mounted_AbilityGroup = new PrefabGUID(-1439531953); public static readonly PrefabGUID AB_Vampire_Axe_Primary_Mounted_Cast = new PrefabGUID(1716063258); public static readonly PrefabGUID AB_Vampire_Axe_Primary_Mounted_Hit = new PrefabGUID(1213681232); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_AbilityGroup = new PrefabGUID(-898001858); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Cast = new PrefabGUID(624673924); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile01 = new PrefabGUID(705543074); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile02 = new PrefabGUID(1784649791); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile03 = new PrefabGUID(-1124999751); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile04 = new PrefabGUID(1047934472); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_AbilityGroup = new PrefabGUID(992015964); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Cast01 = new PrefabGUID(-2344669); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Cast02 = new PrefabGUID(-1134746195); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Hit01 = new PrefabGUID(2106390755); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Hit02 = new PrefabGUID(-1041603452); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_AbilityGroup = new PrefabGUID(401668748); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_Cast = new PrefabGUID(1031815021); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_CombatMovementBuff = new PrefabGUID(897969539); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_Phase = new PrefabGUID(-875532241); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_PostPhase = new PrefabGUID(-848293685); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_AbilityGroup = new PrefabGUID(-1730693034); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_Cast = new PrefabGUID(-254668694); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_SpawnerProjectile01 = new PrefabGUID(1547370336); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_SpawnerProjectile02 = new PrefabGUID(1946755159); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_Throw = new PrefabGUID(2081880481); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_Abilitygroup = new PrefabGUID(-1638937811); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_Cast = new PrefabGUID(594111286); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_CrimsonMaidenBuff = new PrefabGUID(-2099628778); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_Hit = new PrefabGUID(1708523254); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_LaunchBuff = new PrefabGUID(-96387732); public static readonly PrefabGUID AB_Vampire_BloodKnight_HookingSpear_Abilitygroup = new PrefabGUID(1199769322); public static readonly PrefabGUID AB_Vampire_BloodKnight_HookingSpear_Cast = new PrefabGUID(558205308); public static readonly PrefabGUID AB_Vampire_BloodKnight_HookingSpear_Projectile = new PrefabGUID(-556541412); public static readonly PrefabGUID AB_Vampire_BloodKnight_LineupDash_AbilityGroup = new PrefabGUID(-1069881409); public static readonly PrefabGUID AB_Vampire_BloodKnight_LineupDash_CastDash = new PrefabGUID(1412376136); public static readonly PrefabGUID AB_Vampire_BloodKnight_LineupDash_DashBuff = new PrefabGUID(-1832753737); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_AbilityGroup = new PrefabGUID(-503137581); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_Cast = new PrefabGUID(-1576352821); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_InterruptBuff = new PrefabGUID(493436999); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_PostWalkToPosBuff = new PrefabGUID(1899384474); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_WalkToPosBuff = new PrefabGUID(-128520871); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_WalkToPosBuffSetupBuff = new PrefabGUID(-833047222); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_AbilityGroup = new PrefabGUID(1826128809); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_AreaImpact = new PrefabGUID(633578107); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Cast = new PrefabGUID(-517090394); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Disengage_AbilityGroup = new PrefabGUID(-1759227484); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Disengage_Cast = new PrefabGUID(2091608169); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Disengage_Phase = new PrefabGUID(-230111348); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Phase = new PrefabGUID(-694017822); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_PostTravelBuff = new PrefabGUID(635641795); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_AbilityGroup = new PrefabGUID(1730729556); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Buff01 = new PrefabGUID(5431060); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Buff02 = new PrefabGUID(1702060331); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Cast = new PrefabGUID(1317898066); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Hit01 = new PrefabGUID(-263350064); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Hit02 = new PrefabGUID(-32218914); public static readonly PrefabGUID AB_Vampire_BloodKnight_SummonCrimsonMaiden_AbilityGroup = new PrefabGUID(-1920828971); public static readonly PrefabGUID AB_Vampire_BloodKnight_SummonCrimsonMaiden_Cast = new PrefabGUID(899997993); public static readonly PrefabGUID AB_Vampire_BloodKnight_SummonCrimsonMaiden_Throw = new PrefabGUID(8381436); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_AbilityGroup = new PrefabGUID(1295370119); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_Cast = new PrefabGUID(1694522036); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_Channel = new PrefabGUID(-2011991325); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_DashBuff = new PrefabGUID(647429443); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_Hit = new PrefabGUID(-42667970); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_PostCastBuff = new PrefabGUID(-1843888919); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(1180130515); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Cast01 = new PrefabGUID(1637102198); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Cast02 = new PrefabGUID(-1149064542); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Cast03 = new PrefabGUID(1935839696); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Hit01 = new PrefabGUID(658608536); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Hit02 = new PrefabGUID(1985792911); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Hit03 = new PrefabGUID(1707080361); public static readonly PrefabGUID AB_Vampire_Claws_Primary_Mounted_AbilityGroup = new PrefabGUID(-2092012453); public static readonly PrefabGUID AB_Vampire_Claws_Primary_Mounted_Cast = new PrefabGUID(1355391975); public static readonly PrefabGUID AB_Vampire_Claws_Primary_Mounted_Hit = new PrefabGUID(1199194441); public static readonly PrefabGUID AB_Vampire_Claws_Puncture_Area = new PrefabGUID(-1955235420); public static readonly PrefabGUID AB_Vampire_Claws_Puncture_Buff = new PrefabGUID(588248053); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_AbilityGroup = new PrefabGUID(-621324159); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_AimIndicatorProxyObject = new PrefabGUID(556774969); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_Cast = new PrefabGUID(1336763530); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_HitBox_Buff = new PrefabGUID(-1170057875); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_Phase01 = new PrefabGUID(868920885); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_Phase02 = new PrefabGUID(1815234050); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_PostTravelBuff01 = new PrefabGUID(-1993803337); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_PostTravelBuff02 = new PrefabGUID(1167489575); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_PostTravelBuff03 = new PrefabGUID(2127770250); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_AbilityGroup = new PrefabGUID(-496335760); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_Cast = new PrefabGUID(401022955); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_Hit = new PrefabGUID(-207925621); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_RotationSnapBuff = new PrefabGUID(-172040706); public static readonly PrefabGUID AB_Vampire_Coating_Blood_Area = new PrefabGUID(736377251); public static readonly PrefabGUID AB_Vampire_Coating_Blood_Buff = new PrefabGUID(632067678); public static readonly PrefabGUID AB_Vampire_Coating_Chaos_Area = new PrefabGUID(-336999259); public static readonly PrefabGUID AB_Vampire_Coating_Chaos_Buff = new PrefabGUID(450980464); public static readonly PrefabGUID AB_Vampire_Coating_Frost_Area = new PrefabGUID(827863063); public static readonly PrefabGUID AB_Vampire_Coating_Frost_Buff = new PrefabGUID(-2035309587); public static readonly PrefabGUID AB_Vampire_Coating_Frost_Stagger_Buff = new PrefabGUID(479199152); public static readonly PrefabGUID AB_Vampire_Coating_Illusion_Area = new PrefabGUID(-1373223213); public static readonly PrefabGUID AB_Vampire_Coating_Illusion_Buff = new PrefabGUID(-2040918753); public static readonly PrefabGUID AB_Vampire_Coating_Storm_Buff = new PrefabGUID(1711652978); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_Area = new PrefabGUID(1697228430); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_BoneSpirit = new PrefabGUID(2106369097); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_BoneSpirit_HitBuff = new PrefabGUID(350089103); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_Buff = new PrefabGUID(-650951987); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_CrimsonVoid_Abilitygroup = new PrefabGUID(-1221546136); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_CrimsonVoid_AreaHit = new PrefabGUID(1006832677); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_CrimsonVoid_Cast = new PrefabGUID(-743522369); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_DistanceChecker_Abilitygroup = new PrefabGUID(560207432); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_DistanceChecker_Buff = new PrefabGUID(1269197489); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_DistanceChecker_Cast = new PrefabGUID(8451661); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_AbilityGroup = new PrefabGUID(1636251764); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_Cast = new PrefabGUID(-1113824862); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_HasEntombedBuff = new PrefabGUID(-1083189016); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_Hit = new PrefabGUID(1487093447); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_PostCastBuff = new PrefabGUID(999810922); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_TargetEntombedBuff = new PrefabGUID(-1906344151); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_AbilityGroup = new PrefabGUID(444781406); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_Cast = new PrefabGUID(1261360934); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_LaunchBuff = new PrefabGUID(-382462124); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_StunBuff = new PrefabGUID(1491083796); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_LineupBuff_Abilitygroup = new PrefabGUID(-885902431); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_LineupBuff_Buff = new PrefabGUID(-1071317519); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_LineupBuff_Cast = new PrefabGUID(-95638559); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_PullingChains_Abilitygroup = new PrefabGUID(566224334); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_PullingChains_Cast = new PrefabGUID(442071706); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_PullingChains_Projectile = new PrefabGUID(-449426218); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Cast = new PrefabGUID(-65317548); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Channel = new PrefabGUID(-2125640842); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_ForEachEnemy_Trigger = new PrefabGUID(-1841404307); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Group = new PrefabGUID(-1454951943); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Throw = new PrefabGUID(-159317484); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Throw_Center = new PrefabGUID(-1261736876); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Trigger = new PrefabGUID(1955734498); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Cast = new PrefabGUID(1510865601); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_ForEachVampire_Trigger = new PrefabGUID(931551669); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Group = new PrefabGUID(765386506); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Throw = new PrefabGUID(929259830); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Throw_Center = new PrefabGUID(1016234872); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Trigger = new PrefabGUID(1565806677); public static readonly PrefabGUID AB_Vampire_Crossbow_Mark = new PrefabGUID(-1436075291); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_AttackSpeed_Buff = new PrefabGUID(-1606174818); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Buff_CritMark = new PrefabGUID(-228214637); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Cast = new PrefabGUID(1081050588); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Group = new PrefabGUID(1070827786); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Mounted_Cast = new PrefabGUID(1398193255); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Mounted_Group = new PrefabGUID(-187744612); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Mounted_Projectile = new PrefabGUID(-1686893077); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Projectile = new PrefabGUID(1092920137); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfBlood_Projectile = new PrefabGUID(-795744068); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfBones_Projectile = new PrefabGUID(751971862); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfChaos_Projectile = new PrefabGUID(-1106345283); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfFrost_Projectile = new PrefabGUID(1942490597); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfIllusion_Projectile = new PrefabGUID(-1150254713); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfShadow_Projectile = new PrefabGUID(543568841); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfStorm_Projectile = new PrefabGUID(251549069); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Cast = new PrefabGUID(-753601678); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Group = new PrefabGUID(-1760359784); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Throw = new PrefabGUID(-239491085); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Throw_Center = new PrefabGUID(1037852406); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Trigger = new PrefabGUID(198834678); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Cast = new PrefabGUID(1364925842); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_ForkHitBuff = new PrefabGUID(2000646101); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Group = new PrefabGUID(477749225); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Projectile = new PrefabGUID(200910268); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Projectile_Fork = new PrefabGUID(969385611); public static readonly PrefabGUID AB_Vampire_Cultist_BloodCrystal_AbilityGroup = new PrefabGUID(-501371757); public static readonly PrefabGUID AB_Vampire_Cultist_BloodCrystal_Buff = new PrefabGUID(316007177); public static readonly PrefabGUID AB_Vampire_Cultist_BloodCrystal_Cast = new PrefabGUID(-276102992); public static readonly PrefabGUID AB_Vampire_Cultist_Channel_AbilityGroup = new PrefabGUID(1983112426); public static readonly PrefabGUID AB_Vampire_Cultist_Channel_Buff = new PrefabGUID(-746515094); public static readonly PrefabGUID AB_Vampire_Cultist_Channel_Cast = new PrefabGUID(-1817569442); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_AbilityGroup = new PrefabGUID(-839386508); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_Cast01 = new PrefabGUID(1155933423); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_Cast02 = new PrefabGUID(2083659510); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_Hit01 = new PrefabGUID(1469217514); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_01_AbilityGroup = new PrefabGUID(-2059612596); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_01_Buff = new PrefabGUID(-346428912); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_01_Cast = new PrefabGUID(-1417216684); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_02_AbilityGroup = new PrefabGUID(657450547); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_02_Buff = new PrefabGUID(-1400873341); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_02_Cast = new PrefabGUID(282678310); public static readonly PrefabGUID AB_Vampire_Cultist_StopChannel_AbilityGroup = new PrefabGUID(1210884829); public static readonly PrefabGUID AB_Vampire_Cultist_StopChannel_Cast = new PrefabGUID(139302722); public static readonly PrefabGUID AB_Vampire_Cultist_StopChannel_RemoveBuff = new PrefabGUID(-214584331); public static readonly PrefabGUID AB_Vampire_Cultist_Whittling_AbilityGroup = new PrefabGUID(1814959003); public static readonly PrefabGUID AB_Vampire_Cultist_Whittling_Buff = new PrefabGUID(-1362537318); public static readonly PrefabGUID AB_Vampire_Cultist_Whittling_Cast = new PrefabGUID(1587317588); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_AbilityGroup = new PrefabGUID(1398187000); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Buff = new PrefabGUID(-1879665573); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Cast = new PrefabGUID(1394178657); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Trigger_NoSlow = new PrefabGUID(1029797703); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Trigger_SlowEnemy = new PrefabGUID(1791596661); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_AbilityGroup = new PrefabGUID(1239800293); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff01 = new PrefabGUID(799431121); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff02 = new PrefabGUID(-28696696); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff03 = new PrefabGUID(1093907667); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff04 = new PrefabGUID(-554581022); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Cast = new PrefabGUID(-385762093); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Mounted_Cast = new PrefabGUID(113706722); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Mounted_Group = new PrefabGUID(873699859); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Mounted_Projectile = new PrefabGUID(-778919424); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Projectile = new PrefabGUID(1497337843); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Throw = new PrefabGUID(-984872860); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Throw_Structure = new PrefabGUID(145651033); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfBlood_Projectile = new PrefabGUID(502934076); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfBones_Projectile = new PrefabGUID(2514746); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfChaos_Projectile = new PrefabGUID(-1283706164); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfFrost_Projectile = new PrefabGUID(473446457); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfIllusion_Projectile = new PrefabGUID(-2024930355); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfShadow_Projectile = new PrefabGUID(-1616757199); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfStorm_Projectile = new PrefabGUID(-386729745); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Cast = new PrefabGUID(579933189); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Group = new PrefabGUID(149514079); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Throw = new PrefabGUID(-1363813666); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Travel_End = new PrefabGUID(-1327716241); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Travel_Phase = new PrefabGUID(-1088240681); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Trigger = new PrefabGUID(-527896013); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_Homing = new PrefabGUID(1727095320); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_Object = new PrefabGUID(-835687485); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_Primary = new PrefabGUID(684421644); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_RainOfDaggers = new PrefabGUID(267996256); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_ReturnBuff = new PrefabGUID(-1593656477); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_WeaponDagger_Stack_Buff = new PrefabGUID(747589337); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_AbilityGroup = new PrefabGUID(797450963); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamDamageLeftBuff = new PrefabGUID(-1354784972); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamDamageRightBuff = new PrefabGUID(-1418922545); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamInitBuff = new PrefabGUID(-1965379385); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamTrigger = new PrefabGUID(1615225381); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_Cast = new PrefabGUID(371463026); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_ChannelBuff = new PrefabGUID(136816739); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_DummyBuff = new PrefabGUID(826236700); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_DummyBuffDeadZone = new PrefabGUID(-843864531); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_HomingTarget = new PrefabGUID(1144556881); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_PostChannelBuff = new PrefabGUID(2062960578); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_Projectile = new PrefabGUID(-996124127); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_ProjectileDeadZone = new PrefabGUID(-1816716930); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_ProjectileHitSlow = new PrefabGUID(-30993134); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_Trigger = new PrefabGUID(832491730); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_TriggerDeadZonePunish = new PrefabGUID(-622814018); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_AbilityGroup = new PrefabGUID(-1765846328); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_Cast_01 = new PrefabGUID(762545500); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_HitBuff = new PrefabGUID(1924484849); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_MainProjectile_01 = new PrefabGUID(1275775420); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_MainProjectile_02 = new PrefabGUID(252394770); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_ProjectileDelay_01 = new PrefabGUID(-1434239243); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_ProjectileDelay_02 = new PrefabGUID(10125806); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_SmallProjectile_01 = new PrefabGUID(1339264909); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_SmallProjectile_02 = new PrefabGUID(-972904724); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_CenterSpinner01 = new PrefabGUID(-1269656471); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_CenterSpinner02 = new PrefabGUID(-1295590777); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff01 = new PrefabGUID(-1846650583); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff02 = new PrefabGUID(-309411834); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff03 = new PrefabGUID(-458630521); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff04 = new PrefabGUID(483865158); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Setup_AbilityGroup = new PrefabGUID(-377463117); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Setup_Cast = new PrefabGUID(1992185760); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_AbilityGroup = new PrefabGUID(2121218473); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_AttachBuff = new PrefabGUID(1650638150); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_Cast = new PrefabGUID(-1008274109); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_CooldownBuff = new PrefabGUID(1289037283); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_CooldownBuffReducer = new PrefabGUID(1857901614); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_OccupiedBuff = new PrefabGUID(-1977076036); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_SummoningBuff = new PrefabGUID(-503359065); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_SummonTrigger = new PrefabGUID(-435574400); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_AggroBuff = new PrefabGUID(1193639264); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_CombatMovementBuff = new PrefabGUID(190708244); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_AbilityGroup = new PrefabGUID(-412600077); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_Cast = new PrefabGUID(-1924539818); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_Phase = new PrefabGUID(2121160730); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_PostPhase = new PrefabGUID(-1662029695); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_AbilityGroup = new PrefabGUID(411852610); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_Cast = new PrefabGUID(-263391580); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_Phase = new PrefabGUID(54404163); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_PostPhase = new PrefabGUID(943085785); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_Abilitygroup = new PrefabGUID(-986547656); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_Cast = new PrefabGUID(1753038398); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_Hit = new PrefabGUID(291587872); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_StartCastBuff = new PrefabGUID(2099264257); public static readonly PrefabGUID AB_Vampire_Dracula_DestroyPillars_AbilityGroup = new PrefabGUID(-1978007923); public static readonly PrefabGUID AB_Vampire_Dracula_DestroyPillars_Cast = new PrefabGUID(-925172731); public static readonly PrefabGUID AB_Vampire_Dracula_DestroyPillars_Trigger = new PrefabGUID(-2130424267); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Abilitygroup = new PrefabGUID(-459642635); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Cast = new PrefabGUID(-2126708738); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Hit = new PrefabGUID(-365065671); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Projectile = new PrefabGUID(339536929); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Abilitygroup = new PrefabGUID(841757706); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Area01 = new PrefabGUID(7991096); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Area02 = new PrefabGUID(-1971708264); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Cast = new PrefabGUID(-1348641880); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_HitBuff = new PrefabGUID(-1105534112); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Projectile01 = new PrefabGUID(-2064725845); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Abilitygroup = new PrefabGUID(-1161896955); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Cast = new PrefabGUID(-1872782764); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Homing = new PrefabGUID(-2022961306); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_TargetBuff = new PrefabGUID(1805805508); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Throw = new PrefabGUID(-633202440); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_AbilityGroup = new PrefabGUID(-2005193286); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_Cast = new PrefabGUID(-870659793); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_EndTravel = new PrefabGUID(-1936103127); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_Phase = new PrefabGUID(-1762276771); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_PostBuff = new PrefabGUID(-270468457); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_SetupTrigger = new PrefabGUID(-451706721); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_Travel = new PrefabGUID(627336618); public static readonly PrefabGUID AB_Vampire_Dracula_EvolveComplete_Abilitygroup = new PrefabGUID(27585400); public static readonly PrefabGUID AB_Vampire_Dracula_EvolveComplete_Cast = new PrefabGUID(-133668674); public static readonly PrefabGUID AB_Vampire_Dracula_EvolveComplete_Trigger = new PrefabGUID(-2068529254); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_AbilityGroup = new PrefabGUID(1128466169); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_BlindBuff = new PrefabGUID(707131139); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_Cast = new PrefabGUID(996991048); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_HiddenBuff = new PrefabGUID(-1285880026); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_MinionForceCastBuff = new PrefabGUID(-546995600); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_PrimaryTargetBuff = new PrefabGUID(-334553503); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_ShadowBatSwarmTrigger = new PrefabGUID(1948009013); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_Trigger = new PrefabGUID(-1476040775); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_Abilitygroup = new PrefabGUID(403738972); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_Cast = new PrefabGUID(22198923); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_HasGrabedBuff = new PrefabGUID(295991134); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_Hit = new PrefabGUID(1626864909); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_InterruptedBuff = new PrefabGUID(-1842497689); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_LaunchBuff = new PrefabGUID(1548355736); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_PostChannelBuff = new PrefabGUID(-828110894); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_StartCastBuff = new PrefabGUID(-702018449); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_StunBuff = new PrefabGUID(-1162871510); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_TargetGrabedBuff = new PrefabGUID(123709251); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_FinalPhaseTrigger = new PrefabGUID(1051184823); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_MainProjectile_01 = new PrefabGUID(-107896611); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_MainProjectile_02 = new PrefabGUID(725398701); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_ProjectileDelay_01 = new PrefabGUID(73593071); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_ProjectileDelay_02 = new PrefabGUID(1269535310); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_SmallProjectile_01 = new PrefabGUID(307254327); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_SmallProjectile_02 = new PrefabGUID(415335099); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_AbilityGroup = new PrefabGUID(-1940289109); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_Cast = new PrefabGUID(-1517569155); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_End = new PrefabGUID(2034239168); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_Phase = new PrefabGUID(-863790332); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_AbilityGroup = new PrefabGUID(-1589312992); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_Cast = new PrefabGUID(-1046423796); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_End = new PrefabGUID(-1296104556); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_Phase = new PrefabGUID(2084797443); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_SetupTrigger = new PrefabGUID(-1730068169); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_AbilityGroup = new PrefabGUID(-703291679); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_Cast = new PrefabGUID(10737980); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_End = new PrefabGUID(-1065579429); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_Phase = new PrefabGUID(1567283220); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_SetupTrigger = new PrefabGUID(-947584873); public static readonly PrefabGUID AB_Vampire_Dracula_ReconstructPillars_AbilityGroup = new PrefabGUID(641943079); public static readonly PrefabGUID AB_Vampire_Dracula_ReconstructPillars_Cast = new PrefabGUID(-1418780847); public static readonly PrefabGUID AB_Vampire_Dracula_ReconstructPillars_Trigger = new PrefabGUID(2103593738); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_AbilityGroup = new PrefabGUID(-7407393); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_Cast = new PrefabGUID(-404686552); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_ChannelBuff = new PrefabGUID(-339999587); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_EndGroundImpact = new PrefabGUID(1035629642); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_ImprisonBuff = new PrefabGUID(1257496824); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_PostChannelBuff = new PrefabGUID(791291028); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_RingArea = new PrefabGUID(417050911); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_Spinner = new PrefabGUID(-513506791); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_SpinnerProjectile = new PrefabGUID(-360806952); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_StunBuff = new PrefabGUID(-1485064023); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_AbilityGroup = new PrefabGUID(-1473399128); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast01 = new PrefabGUID(-772809527); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast02 = new PrefabGUID(952288992); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast03 = new PrefabGUID(-1340137049); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast04 = new PrefabGUID(1767267996); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_InAir = new PrefabGUID(2123856902); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile01 = new PrefabGUID(-830721072); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile02 = new PrefabGUID(-1403556180); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile03 = new PrefabGUID(-1245622953); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile04 = new PrefabGUID(1008897779); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_AbilityGroup = new PrefabGUID(364141768); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Cast01 = new PrefabGUID(-1572309340); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Cast02 = new PrefabGUID(1987705092); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_InAir = new PrefabGUID(906909424); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Projectile01 = new PrefabGUID(-907403588); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Projectile02 = new PrefabGUID(403331843); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_AggroBuff = new PrefabGUID(99830162); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_CombatMovementBuff = new PrefabGUID(400581127); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Followup_Abilitygroup = new PrefabGUID(727824809); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Followup_Cast = new PrefabGUID(-1006124756); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Followup_Hit = new PrefabGUID(84430215); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_AbilityGroup = new PrefabGUID(-618038480); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_Cast = new PrefabGUID(-1387598678); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_Phase = new PrefabGUID(1092547531); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_PostPhase = new PrefabGUID(-335283857); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_AbilityGroup = new PrefabGUID(1915068828); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_Cast = new PrefabGUID(515420798); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_Phase = new PrefabGUID(1198173410); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_PostPhase = new PrefabGUID(-798188767); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_AggroBuff = new PrefabGUID(-1999529584); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_CombatMovementBuff = new PrefabGUID(16354075); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Followup_Abilitygroup = new PrefabGUID(-2146217789); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Followup_Cast = new PrefabGUID(1003887738); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Followup_Hit = new PrefabGUID(2041239910); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_AbilityGroup = new PrefabGUID(543365747); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_Cast = new PrefabGUID(1951405256); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_Phase = new PrefabGUID(468280254); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_PostPhase = new PrefabGUID(307101973); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_AbilityGroup = new PrefabGUID(-130280994); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_Cast = new PrefabGUID(1025339629); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_Phase = new PrefabGUID(1189361914); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_PostPhase = new PrefabGUID(1318900902); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_AbilityGroup = new PrefabGUID(-847327302); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_Cast01 = new PrefabGUID(915257143); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_Cast02 = new PrefabGUID(954350044); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_Hit = new PrefabGUID(-1120685650); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Abilitygroup = new PrefabGUID(-1406000418); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Cast = new PrefabGUID(-1436464617); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_SummoningSwarm = new PrefabGUID(1879323023); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Travel = new PrefabGUID(-1267898815); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_TravelEnd = new PrefabGUID(1006279065); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Trigger = new PrefabGUID(1634717069); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_Abilitygroup = new PrefabGUID(532210332); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_Cast = new PrefabGUID(-1644704383); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_DummyBuff = new PrefabGUID(-291952229); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HitBuff = new PrefabGUID(371074497); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingProjectile = new PrefabGUID(1366853978); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingProjectile02 = new PrefabGUID(-157119103); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingTarget = new PrefabGUID(-1780882317); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingTarget02 = new PrefabGUID(-865552207); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_AbilityGroup = new PrefabGUID(-1031474651); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_Cast = new PrefabGUID(-2134015139); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_End = new PrefabGUID(-565115945); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_Phase = new PrefabGUID(-1599353392); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_SetupTrigger = new PrefabGUID(211431499); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_AbilityGroup = new PrefabGUID(1270706044); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_AggroBuff = new PrefabGUID(450953547); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_ApproachBuff = new PrefabGUID(647447233); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_Buff = new PrefabGUID(81888713); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_CircleBuff = new PrefabGUID(-1942308089); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_DashCast = new PrefabGUID(-1042911203); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_Hit = new PrefabGUID(-139059229); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PostCast = new PrefabGUID(1488947799); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PreAbilityGroup = new PrefabGUID(-2036664505); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PreCast = new PrefabGUID(-55837364); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PreTrigger = new PrefabGUID(-1951743028); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_Abilitygroup = new PrefabGUID(1888098383); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_Cast = new PrefabGUID(-1271478385); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_Hit = new PrefabGUID(29118071); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_StartCastBuff = new PrefabGUID(1681410652); public static readonly PrefabGUID AB_Vampire_Dracula_WolfFollowup_Right_AbilityGroup = new PrefabGUID(-1362190512); public static readonly PrefabGUID AB_Vampire_Dracula_WolfFollowup_Right_Cast = new PrefabGUID(-837517070); public static readonly PrefabGUID AB_Vampire_Dracula_WolfFollowup_Right_Hit = new PrefabGUID(-660546912); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterStationary_Abilitygroup = new PrefabGUID(-1287837541); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterStationary_Cast = new PrefabGUID(907728329); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterStationary_PostBuff = new PrefabGUID(-665366708); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_AbilityGroup = new PrefabGUID(837193552); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_AggroBuff = new PrefabGUID(1833168673); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_Cast = new PrefabGUID(-440680556); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_CircleBuff = new PrefabGUID(-292477174); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_End = new PrefabGUID(-1776356861); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_Phase = new PrefabGUID(-1502888862); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_AbilityGroup = new PrefabGUID(-2103202975); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_Cast = new PrefabGUID(1663904542); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_End = new PrefabGUID(-327872693); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_Phase = new PrefabGUID(1136264320); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ShapeshiftBuff = new PrefabGUID(-29962731); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_SummonWolfTrigger01 = new PrefabGUID(979371542); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_SummonWolfTrigger02 = new PrefabGUID(-2061647637); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_WolfEffectBuff = new PrefabGUID(-93395631); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_WolfSummonBuff = new PrefabGUID(-198450587); public static readonly PrefabGUID AB_Vampire_DualHammers_EmpowerBuff = new PrefabGUID(-1039306458); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(367876187); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast01 = new PrefabGUID(-1934102152); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast02 = new PrefabGUID(-457211897); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast03 = new PrefabGUID(14944627); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast04 = new PrefabGUID(-2120084100); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit01 = new PrefabGUID(-783943694); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit02 = new PrefabGUID(1172981822); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit03 = new PrefabGUID(-1101600490); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit04 = new PrefabGUID(-1672681234); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_AbilityGroup = new PrefabGUID(-1612983976); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_Cast = new PrefabGUID(1739523711); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_EmpoweredHit = new PrefabGUID(-1399611708); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_KnockbackWallTrigger = new PrefabGUID(794780413); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_Projectile = new PrefabGUID(888158106); public static readonly PrefabGUID AB_Vampire_GreatSword_Mounted_AbilityGroup = new PrefabGUID(174655882); public static readonly PrefabGUID AB_Vampire_GreatSword_Mounted_Cast = new PrefabGUID(-1816524352); public static readonly PrefabGUID AB_Vampire_GreatSword_Mounted_Hit = new PrefabGUID(2134250054); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_AbilityGroup = new PrefabGUID(-1428882023); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Cast01 = new PrefabGUID(-514059081); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Cast02 = new PrefabGUID(-1388765782); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Cast03 = new PrefabGUID(294272314); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Hit01 = new PrefabGUID(-1394062631); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Hit02 = new PrefabGUID(-1035287075); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Hit03 = new PrefabGUID(-1026527015); public static readonly PrefabGUID AB_Vampire_Horse_Decoy_Buff = new PrefabGUID(525798474); public static readonly PrefabGUID AB_Vampire_Horse_Severance_Buff = new PrefabGUID(-735669130); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_AoE = new PrefabGUID(-554354803); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Buff = new PrefabGUID(-1577668019); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_ConfuseDummy = new PrefabGUID(-1427049295); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_DashCast = new PrefabGUID(-123221568); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Group = new PrefabGUID(-354379679); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Immaterial = new PrefabGUID(-1465627289); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Shield = new PrefabGUID(-826786590); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_TriggerBonusEffects = new PrefabGUID(441557111); public static readonly PrefabGUID AB_Vampire_Longbow_Focus_Buff = new PrefabGUID(785836517); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_AbilityGroup = new PrefabGUID(-149514613); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Cast = new PrefabGUID(-1622040119); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_HitBuff = new PrefabGUID(-269316428); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile = new PrefabGUID(-1787042058); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Focus01 = new PrefabGUID(-1702600161); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Focus02 = new PrefabGUID(-1403289118); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Focus03 = new PrefabGUID(1353137204); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return = new PrefabGUID(-2072236829); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return_Focus01 = new PrefabGUID(997082051); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return_Focus02 = new PrefabGUID(735119696); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return_Focus03 = new PrefabGUID(1861428621); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_AbilityGroup = new PrefabGUID(-8479990); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Cast = new PrefabGUID(-31853298); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Mounted_Cast = new PrefabGUID(601335909); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Mounted_Group = new PrefabGUID(815729526); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Mounted_Projectile = new PrefabGUID(112701587); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Projectile = new PrefabGUID(-159061575); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfBlood_Projectile = new PrefabGUID(1016941798); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfBones_Projectile = new PrefabGUID(2034847596); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfChaos_Projectile = new PrefabGUID(-1326271119); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfFrost_Projectile = new PrefabGUID(749602528); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfIllusion_Projectile = new PrefabGUID(903216103); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfShadow_Projectile = new PrefabGUID(-222712050); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfStorm_Projectile = new PrefabGUID(-411541178); public static readonly PrefabGUID AB_Vampire_Mace_CrushingBlow_Slam_AbilityGroup = new PrefabGUID(1262003451); public static readonly PrefabGUID AB_Vampire_Mace_CrushingBlow_Slam_Cast = new PrefabGUID(1650339556); public static readonly PrefabGUID AB_Vampire_Mace_CrushingBlow_Slam_Hit = new PrefabGUID(-815273645); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(722599012); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Cast01 = new PrefabGUID(2094451872); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Cast02 = new PrefabGUID(-492074341); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Cast03 = new PrefabGUID(1014770566); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Hit01 = new PrefabGUID(2088529393); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Hit02 = new PrefabGUID(-1082055433); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Hit03 = new PrefabGUID(-978853222); public static readonly PrefabGUID AB_Vampire_Mace_Primary_Mounted_AbilityGroup = new PrefabGUID(-1874296899); public static readonly PrefabGUID AB_Vampire_Mace_Primary_Mounted_Cast = new PrefabGUID(-693048327); public static readonly PrefabGUID AB_Vampire_Mace_Primary_Mounted_Hit = new PrefabGUID(-43419376); public static readonly PrefabGUID AB_Vampire_Mace_Smack_AbilityGroup = new PrefabGUID(1121958763); public static readonly PrefabGUID AB_Vampire_Mace_Smack_Cast = new PrefabGUID(-856181990); public static readonly PrefabGUID AB_Vampire_Mace_Smack_Hit = new PrefabGUID(-759027559); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_AbilityGroup = new PrefabGUID(131953285); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Cast = new PrefabGUID(1922346691); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Dash_AbilityGroup = new PrefabGUID(-1209038175); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Dash_Cast = new PrefabGUID(-1137527927); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Dash_Immaterial = new PrefabGUID(1092807604); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Hit = new PrefabGUID(1635063712); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_AbilityGroup = new PrefabGUID(-655343218); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Cast01 = new PrefabGUID(329689845); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Cast02 = new PrefabGUID(586569691); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Cast03 = new PrefabGUID(-1990822209); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Hit01 = new PrefabGUID(673494934); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_AbilityGroup = new PrefabGUID(578807372); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Buff = new PrefabGUID(400969473); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Cast = new PrefabGUID(62714130); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Hit = new PrefabGUID(-107199836); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Recast_AbilityGroup = new PrefabGUID(-768614933); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Recast_Cast = new PrefabGUID(-1370960512); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Recast_Hit = new PrefabGUID(1174236120); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Trigger = new PrefabGUID(13393243); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_AbilityGroup = new PrefabGUID(1461754263); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_Cast = new PrefabGUID(-316825244); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_Hit = new PrefabGUID(1518578059); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_Projectile = new PrefabGUID(109680761); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(784360484); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Cast01 = new PrefabGUID(1176579852); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Cast02 = new PrefabGUID(363287836); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Cast03 = new PrefabGUID(-131396040); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Hit01 = new PrefabGUID(-1766314654); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Hit02 = new PrefabGUID(-323855182); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Hit03 = new PrefabGUID(-318138984); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_Mounted_AbilityGroup = new PrefabGUID(-1360812741); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_Mounted_Cast = new PrefabGUID(666559714); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_Mounted_Hit = new PrefabGUID(395001170); public static readonly PrefabGUID AB_Vampire_Reaper_TendonSwing_Twist_AbilityGroup = new PrefabGUID(-345652149); public static readonly PrefabGUID AB_Vampire_Reaper_TendonSwing_Twist_Cast = new PrefabGUID(344610321); public static readonly PrefabGUID AB_Vampire_Reaper_TendonSwing_Twist_Hit = new PrefabGUID(-1991287544); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Main_AbilityGroup = new PrefabGUID(1438305657); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Main_Buff = new PrefabGUID(252363754); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Main_Cast = new PrefabGUID(-2092408386); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Secondary_AbilityGroup = new PrefabGUID(-13231823); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Secondary_Cast = new PrefabGUID(576817260); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Secondary_Hit = new PrefabGUID(-1816671929); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_BloodFountain_Impact = new PrefabGUID(1782350385); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_BloodFountain_Init = new PrefabGUID(-37753615); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_AbilityGroup = new PrefabGUID(-1545438316); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_Cast = new PrefabGUID(-1731625958); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_PhaseIn = new PrefabGUID(-376195107); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_PhaseOut = new PrefabGUID(1109256146); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_PhaseOut_TripleDash = new PrefabGUID(789837952); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(1470213751); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Cast01 = new PrefabGUID(2138997168); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Cast02 = new PrefabGUID(-538471976); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Cast03 = new PrefabGUID(-553275783); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Hit01 = new PrefabGUID(575476860); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Hit02 = new PrefabGUID(-916190530); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Hit03 = new PrefabGUID(-130408903); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_Mounted_AbilityGroup = new PrefabGUID(-1315478418); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_Mounted_Cast = new PrefabGUID(-799656850); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_Mounted_Hit = new PrefabGUID(-1642831673); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_AbilityGroup = new PrefabGUID(830123499); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_Cast = new PrefabGUID(414243770); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_Projectile = new PrefabGUID(1649391651); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_StabBuff = new PrefabGUID(-932162694); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Cast01 = new PrefabGUID(-765309196); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Cast02 = new PrefabGUID(-69267758); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Cast03 = new PrefabGUID(-1238015847); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Group = new PrefabGUID(-208121356); public static readonly PrefabGUID AB_Vampire_Spear_Primary_MeleeAttack_Hit01 = new PrefabGUID(-440626857); public static readonly PrefabGUID AB_Vampire_Spear_Primary_MeleeAttack_Hit02 = new PrefabGUID(-738567452); public static readonly PrefabGUID AB_Vampire_Spear_Primary_MeleeAttack_Hit03 = new PrefabGUID(776418067); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Mounted_AbilityGroup = new PrefabGUID(409165231); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Mounted_Cast = new PrefabGUID(-717860665); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Mounted_Hit = new PrefabGUID(977915645); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(-2097352908); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Cast01 = new PrefabGUID(-2110227527); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Cast02 = new PrefabGUID(1894476748); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Cast03 = new PrefabGUID(-371304967); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Hit01 = new PrefabGUID(-259301272); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Hit02 = new PrefabGUID(149968785); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Hit03 = new PrefabGUID(95826761); public static readonly PrefabGUID AB_Vampire_Sword_Primary_Mounted_AbilityGroup = new PrefabGUID(1612184116); public static readonly PrefabGUID AB_Vampire_Sword_Primary_Mounted_Cast = new PrefabGUID(-892210814); public static readonly PrefabGUID AB_Vampire_Sword_Primary_Mounted_Hit = new PrefabGUID(2109532896); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_AbilityGroup = new PrefabGUID(1335008684); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_Cast = new PrefabGUID(804759750); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_InAir = new PrefabGUID(-1665295489); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_Projectile = new PrefabGUID(1283973178); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_AbilityGroup = new PrefabGUID(993583640); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_Buff = new PrefabGUID(1662716694); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_Cast = new PrefabGUID(1541111960); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_Hit_Trigger = new PrefabGUID(1175625395); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_ImmaterialBuff = new PrefabGUID(998177393); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_ReturnTravelBuff = new PrefabGUID(-1141440849); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_ReturnTriggerBuff = new PrefabGUID(864593896); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelEnd = new PrefabGUID(821686839); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelToTargetFirstStrike = new PrefabGUID(-438334309); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelToTargetSecondStrike = new PrefabGUID(1473518847); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelToTargetThirdStrike = new PrefabGUID(633623772); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_AbilityGroup = new PrefabGUID(-2029046970); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_Cast = new PrefabGUID(955988738); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_Channel = new PrefabGUID(-947984689); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_Hit = new PrefabGUID(-791524843); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_LastHit = new PrefabGUID(1800681949); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_AbilityGroup = new PrefabGUID(89236731); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Cast = new PrefabGUID(713894552); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_DashTriggeredBuff = new PrefabGUID(-687991518); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Projectile = new PrefabGUID(-513489536); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Recast_AbilityGroup = new PrefabGUID(210529811); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Recast_Cast = new PrefabGUID(2023216160); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Recast_Dash = new PrefabGUID(469216240); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_RecastBuff = new PrefabGUID(-1193660016); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_SpellObject = new PrefabGUID(-1623070578); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Throw = new PrefabGUID(1080492267); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(298784800); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Cast01 = new PrefabGUID(-2034127456); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Cast02 = new PrefabGUID(1999458981); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Cast03 = new PrefabGUID(1603604088); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Hit01 = new PrefabGUID(-1718994272); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Hit02 = new PrefabGUID(-2005740545); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Hit03 = new PrefabGUID(293630107); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_Mounted_AbilityGroup = new PrefabGUID(1364381862); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_Mounted_Cast = new PrefabGUID(-753800108); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_Mounted_Hit = new PrefabGUID(1428493082); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_AbilityGroup = new PrefabGUID(-1238817965); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_Cast = new PrefabGUID(-1474711270); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_Hit = new PrefabGUID(2001009132); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_LaunchBuff = new PrefabGUID(-507579629); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_Melee = new PrefabGUID(438453495); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(-1772111618); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Cast01 = new PrefabGUID(-985639880); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Cast02 = new PrefabGUID(227980469); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Cast03 = new PrefabGUID(1497264832); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Hit01 = new PrefabGUID(-32506688); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Hit02 = new PrefabGUID(1087398180); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Hit03 = new PrefabGUID(-598419400); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_Mounted_AbilityGroup = new PrefabGUID(-57462538); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_Mounted_Cast = new PrefabGUID(864166726); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_Mounted_Hit = new PrefabGUID(-1259927969); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_BloodNova = new PrefabGUID(1037148608); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_Buff = new PrefabGUID(-2061378836); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_ConfuseDummy = new PrefabGUID(2006478777); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_DashCast = new PrefabGUID(1541401917); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_Group = new PrefabGUID(305230608); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_Immaterial = new PrefabGUID(-1125708792); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_SpellMod_DashInflictLeechBuff = new PrefabGUID(1768402746); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_SpellMod_Empower = new PrefabGUID(934106816); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_TriggerBonusEffects = new PrefabGUID(2135363194); public static readonly PrefabGUID AB_Vampire_VeilOfBones_AbilityGroup = new PrefabGUID(-498302954); public static readonly PrefabGUID AB_Vampire_VeilOfBones_BounceProjectile = new PrefabGUID(-2002550777); public static readonly PrefabGUID AB_Vampire_VeilOfBones_Buff = new PrefabGUID(204986774); public static readonly PrefabGUID AB_Vampire_VeilOfBones_ConfuseDummy = new PrefabGUID(878323192); public static readonly PrefabGUID AB_Vampire_VeilOfBones_DashCast = new PrefabGUID(-1075372945); public static readonly PrefabGUID AB_Vampire_VeilOfBones_Immaterial = new PrefabGUID(-817973910); public static readonly PrefabGUID AB_Vampire_VeilOfBones_SpellMod_DashHealMinions = new PrefabGUID(-604851435); public static readonly PrefabGUID AB_Vampire_VeilOfBones_SpellMod_DashInflictCondemnBuff = new PrefabGUID(-1699048443); public static readonly PrefabGUID AB_Vampire_VeilOfBones_TriggerBonusEffects = new PrefabGUID(208290788); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Bomb = new PrefabGUID(-1459089948); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Buff = new PrefabGUID(-2127493953); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_ConfuseDummy = new PrefabGUID(-891664509); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_DashCast = new PrefabGUID(967656807); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Group = new PrefabGUID(711231628); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Immaterial = new PrefabGUID(411590503); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_Buff = new PrefabGUID(-2045383141); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_DashCast = new PrefabGUID(-1775525208); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_Group = new PrefabGUID(1711943933); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_Init_Buff = new PrefabGUID(-1206989621); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_SpellMod_BonusDummy = new PrefabGUID(-1237883041); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_SpellMod_BonusDummy_Bomb = new PrefabGUID(1640449463); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_TriggerBonusEffects = new PrefabGUID(506605802); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_AoE = new PrefabGUID(569397628); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Buff = new PrefabGUID(-879243806); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_ConfuseDummy = new PrefabGUID(-1896673986); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_DashCast = new PrefabGUID(-1869058934); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Group = new PrefabGUID(1709284795); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Immaterial = new PrefabGUID(-969825650); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Shield = new PrefabGUID(1539416513); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_SpellMod_IllusionFrostBlast = new PrefabGUID(1629413464); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_TriggerBonusEffects = new PrefabGUID(-1688602321); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_AbilityGroup = new PrefabGUID(-935015750); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_BlockRaidItemPickup = new PrefabGUID(-1800912008); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Buff = new PrefabGUID(-413662282); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_ConfuseDummy = new PrefabGUID(-2051088546); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_DashCast = new PrefabGUID(-1854440738); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Immaterial = new PrefabGUID(540041484); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_AbilityGroup = new PrefabGUID(1994950191); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_Buff = new PrefabGUID(1426492570); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_Cast = new PrefabGUID(1141652368); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_TravelToTargetPhase = new PrefabGUID(247596840); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_SpellMod_RecastDetonate = new PrefabGUID(890255276); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_TriggerBonusEffects = new PrefabGUID(-733228440); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_Buff = new PrefabGUID(924979264); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_ConfuseDummy = new PrefabGUID(-1064609230); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_DashCast = new PrefabGUID(1414033551); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_Group = new PrefabGUID(-433204738); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_Immaterial = new PrefabGUID(-834088508); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_TriggerBonusEffects = new PrefabGUID(741904882); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Buff = new PrefabGUID(-612610448); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Buff_AttackSpeed = new PrefabGUID(-1515928707); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_ConfuseDummy = new PrefabGUID(1782955054); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_DashCast = new PrefabGUID(-865260859); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Group = new PrefabGUID(-84816111); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Immaterial = new PrefabGUID(-204994091); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_LightningTriggerBuff = new PrefabGUID(812851792); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_SpellMod_SparklingIllusion = new PrefabGUID(529399706); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_TriggerBonusEffects = new PrefabGUID(-1726441616); public static readonly PrefabGUID AB_Vampire_Whip_Dash_AbilityGroup = new PrefabGUID(1420346034); public static readonly PrefabGUID AB_Vampire_Whip_Dash_Cast = new PrefabGUID(1057163055); public static readonly PrefabGUID AB_Vampire_Whip_Dash_Hit = new PrefabGUID(-1875588905); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_AbilityGroup = new PrefabGUID(-313732628); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_Buff = new PrefabGUID(991780070); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_Cast = new PrefabGUID(1976086857); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_FlameWhip_LineOfSight_Dummy = new PrefabGUID(1182093078); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_Hit = new PrefabGUID(458881440); public static readonly PrefabGUID AB_Vampire_Whip_Primary_AbilityGroup = new PrefabGUID(1752758196); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Cast01 = new PrefabGUID(-492732364); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Cast02 = new PrefabGUID(-840134858); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Cast03 = new PrefabGUID(-773581209); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Hit01 = new PrefabGUID(481928282); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Hit03 = new PrefabGUID(74248651); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Mounted_AbilityGroup = new PrefabGUID(128007572); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Mounted_Cast01 = new PrefabGUID(991446464); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Mounted_Hit01 = new PrefabGUID(-222893222); public static readonly PrefabGUID AB_Vampire_Withered_SlowAttack_Cast = new PrefabGUID(1914334096); public static readonly PrefabGUID AB_Vampire_Withered_SlowAttack_Group = new PrefabGUID(-593875444); public static readonly PrefabGUID AB_Vampire_Withered_SlowAttack_Hit = new PrefabGUID(-1101950367); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_AbilityGroup = new PrefabGUID(-999342671); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_Cast = new PrefabGUID(-76116894); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_End = new PrefabGUID(-1924122124); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_Phase = new PrefabGUID(-640440786); public static readonly PrefabGUID AB_VampireLeap_Travel_AbilityGroup = new PrefabGUID(1675917968); public static readonly PrefabGUID AB_VampireLeap_Travel_Cast = new PrefabGUID(-884934339); public static readonly PrefabGUID AB_VampireLeap_Travel_End = new PrefabGUID(1844838431); public static readonly PrefabGUID AB_VampireLeap_Travel_Phase = new PrefabGUID(2041070074); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_AbilityGroup = new PrefabGUID(-127510613); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_Buff = new PrefabGUID(-1039310273); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_Cast = new PrefabGUID(-625986880); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_End = new PrefabGUID(-1370220384); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_Phase_01 = new PrefabGUID(-2105307253); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_AbilityGroup = new PrefabGUID(859877682); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_Cast = new PrefabGUID(-934939229); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_End = new PrefabGUID(30114315); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_Phase = new PrefabGUID(-839172841); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_AbilityGroup = new PrefabGUID(986693563); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_Cast = new PrefabGUID(674195926); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_End = new PrefabGUID(-1991455007); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_Phase_01 = new PrefabGUID(506053449); public static readonly PrefabGUID AB_VampireMountLeap_Travel_AbilityGroup = new PrefabGUID(472850370); public static readonly PrefabGUID AB_VampireMountLeap_Travel_Cast = new PrefabGUID(1600351239); public static readonly PrefabGUID AB_VampireMountLeap_Travel_End = new PrefabGUID(-944919011); public static readonly PrefabGUID AB_VampireMountLeap_Travel_Phase_01 = new PrefabGUID(-1905167211); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_AbilityGroup = new PrefabGUID(-1770479364); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Aggrobuff = new PrefabGUID(-747767123); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Cast = new PrefabGUID(485437428); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Followup_AbilityGroup = new PrefabGUID(-336633586); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Followup_Cast = new PrefabGUID(-986524867); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Projectile = new PrefabGUID(299756620); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_VeilOfFrost_Projectile = new PrefabGUID(-2127070360); public static readonly PrefabGUID AB_Vermin_DireRat_Gnaw_AbilityGroup = new PrefabGUID(-1199198217); public static readonly PrefabGUID AB_Vermin_DireRat_Gnaw_Cast = new PrefabGUID(625581193); public static readonly PrefabGUID AB_Vermin_DireRat_Gnaw_Hit = new PrefabGUID(-1930371229); public static readonly PrefabGUID AB_Vermin_DireRat_Hard_Passive_AreaImpact = new PrefabGUID(-1878584557); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_AbilityGroup = new PrefabGUID(-70575944); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_Buff = new PrefabGUID(933825031); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_Cast = new PrefabGUID(-994660028); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_Hit = new PrefabGUID(-2090130701); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnawBuff_AbilityGroup = new PrefabGUID(1450204157); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnawBuff_Cast = new PrefabGUID(457440035); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_AbilityGroup = new PrefabGUID(-1024883556); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_AreaImpact = new PrefabGUID(-992332880); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_Buff = new PrefabGUID(-682459935); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_Cast = new PrefabGUID(-340764003); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_AbilityGroup = new PrefabGUID(830495620); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_Cast = new PrefabGUID(-2089228057); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_ChannelBuff = new PrefabGUID(-382242631); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_Minion_Buff = new PrefabGUID(847278072); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_Minion_DeSpawnBuff = new PrefabGUID(-23099846); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_TravelEnd_Buff = new PrefabGUID(180994592); public static readonly PrefabGUID AB_Vermin_Rat_MeleeAttack_AbilityGroup = new PrefabGUID(-1007898441); public static readonly PrefabGUID AB_Vermin_Rat_MeleeAttack_Cast = new PrefabGUID(-913776607); public static readonly PrefabGUID AB_Vermin_Rat_MeleeAttack_Hit = new PrefabGUID(-654479095); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_DaggerThrow_AbilityGroup = new PrefabGUID(1945392759); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_DaggerThrow_Cast = new PrefabGUID(-1401585282); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_Dodge_AbilityGroup = new PrefabGUID(8807466); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_Dodge_Cast = new PrefabGUID(1005535051); public static readonly PrefabGUID AB_VHunter_CastleMan_ChaseTargetBuff_AbilityGroup = new PrefabGUID(-1068854418); public static readonly PrefabGUID AB_VHunter_CastleMan_ChaseTargetBuff_Cast = new PrefabGUID(1574024896); public static readonly PrefabGUID AB_VHunter_CastleMan_ChaseTargetBuff_RageBuff = new PrefabGUID(1035183129); public static readonly PrefabGUID AB_VHunter_CastleMan_DaggerThrow_AbilityGroup = new PrefabGUID(1771330790); public static readonly PrefabGUID AB_VHunter_CastleMan_DaggerThrow_Cast = new PrefabGUID(-1627940826); public static readonly PrefabGUID AB_VHunter_CastleMan_DaggerThrow_StrafeBuff = new PrefabGUID(643283588); public static readonly PrefabGUID AB_VHunter_CastleMan_FirePhase_FireStageBuff = new PrefabGUID(-2078096439); public static readonly PrefabGUID AB_VHunter_CastleMan_FirePhase_PostBuff = new PrefabGUID(-1812878201); public static readonly PrefabGUID AB_VHunter_CastleMan_Jump_EndPhase = new PrefabGUID(516378582); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_AbilityGroup = new PrefabGUID(207057426); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_Cast = new PrefabGUID(390014348); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_FakeProjectileLeft = new PrefabGUID(1950248830); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_FakeProjectileRight = new PrefabGUID(-1855836071); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_FakeTarget = new PrefabGUID(-1053349943); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpRight_AbilityGroup = new PrefabGUID(1122774146); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpRight_Cast = new PrefabGUID(-42888467); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpRight_Phase = new PrefabGUID(-1192684574); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_AbilityGroup = new PrefabGUID(-64218175); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Area = new PrefabGUID(-1137365939); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Cast = new PrefabGUID(-108711746); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Fire_AbilityGroup = new PrefabGUID(504586218); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Fire_Area = new PrefabGUID(-416419693); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Fire_Cast = new PrefabGUID(1771926858); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_LaunchBuff = new PrefabGUID(371476376); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_AbilityGroup = new PrefabGUID(109607953); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Area = new PrefabGUID(1719711838); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Area_IgniteHolyWater = new PrefabGUID(-1594176811); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Cast = new PrefabGUID(482129992); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_LaunchBuff = new PrefabGUID(2059862714); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Throw = new PrefabGUID(1523629716); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Bomb = new PrefabGUID(2107447145); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Cast = new PrefabGUID(1226383020); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Group = new PrefabGUID(76767983); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Phase = new PrefabGUID(-1323982261); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_PostTravel = new PrefabGUID(884889284); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_PreTravel = new PrefabGUID(1378150073); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Cast = new PrefabGUID(-1292054981); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Group = new PrefabGUID(-1294182358); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Hard_Cast = new PrefabGUID(-781534465); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Hard_Group = new PrefabGUID(1372353064); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Hard_Throw = new PrefabGUID(-878288024); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Object = new PrefabGUID(-623045384); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Throw = new PrefabGUID(118919744); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Trigger = new PrefabGUID(-493871943); public static readonly PrefabGUID AB_VHunter_Jade_DisablingShot_Cast = new PrefabGUID(-991602260); public static readonly PrefabGUID AB_VHunter_Jade_DisablingShot_Group = new PrefabGUID(-526118698); public static readonly PrefabGUID AB_VHunter_Jade_DisablingShot_Projectile = new PrefabGUID(-1939067546); public static readonly PrefabGUID AB_VHunter_Jade_Emote_OnAggro_Buff = new PrefabGUID(1848994424); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Area = new PrefabGUID(-2069490191); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Cast = new PrefabGUID(10056680); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Channel_Buff = new PrefabGUID(160242883); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Group = new PrefabGUID(-453760177); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Projectile = new PrefabGUID(-1585899792); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Cast = new PrefabGUID(-83678623); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Cast2 = new PrefabGUID(1715360639); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Group = new PrefabGUID(-1783782358); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Projectile = new PrefabGUID(-2023066837); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Cast = new PrefabGUID(-489813362); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Cast2 = new PrefabGUID(-199320411); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Cast3 = new PrefabGUID(-71294147); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Group = new PrefabGUID(-2013216961); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Cast = new PrefabGUID(-1789599308); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Cast2 = new PrefabGUID(-7302535); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Cast3 = new PrefabGUID(917052083); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Group = new PrefabGUID(1196517991); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Cast1 = new PrefabGUID(124731264); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Cast2 = new PrefabGUID(2117557264); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Cast3 = new PrefabGUID(1887484149); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Group = new PrefabGUID(688350142); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Cast = new PrefabGUID(-1376420702); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Group = new PrefabGUID(-1884688827); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Hard_Cast = new PrefabGUID(-2072416237); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Hard_Group = new PrefabGUID(-1030552412); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Hard_Projectile = new PrefabGUID(1879712937); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Projectile = new PrefabGUID(231957557); public static readonly PrefabGUID AB_VHunter_Jade_Stealth_Buff = new PrefabGUID(1534254267); public static readonly PrefabGUID AB_VHunter_Jade_Stealth_Cast = new PrefabGUID(-371809082); public static readonly PrefabGUID AB_VHunter_Jade_Stealth_Group = new PrefabGUID(501615608); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Cast = new PrefabGUID(2070052426); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Cast_Fast = new PrefabGUID(676568621); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Cast_Hard = new PrefabGUID(871086568); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Group = new PrefabGUID(-737556373); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Group_Fast = new PrefabGUID(-23281706); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Group_Hard = new PrefabGUID(-1330984343); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Projectile = new PrefabGUID(-1228092954); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Area = new PrefabGUID(-1765460971); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Buff = new PrefabGUID(338236052); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Cast = new PrefabGUID(-915237435); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_ClusterThrow = new PrefabGUID(-412946831); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Group = new PrefabGUID(985201241); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Throw = new PrefabGUID(-492541970); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_Cast = new PrefabGUID(1477496524); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_Group = new PrefabGUID(1501188283); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_Travel = new PrefabGUID(-306152951); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_TravelEnd = new PrefabGUID(549083834); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Cast = new PrefabGUID(-1641038434); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Group = new PrefabGUID(1552780633); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Hard_Cast = new PrefabGUID(1193298493); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Hard_Group = new PrefabGUID(-1417141477); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Hit = new PrefabGUID(1349892586); public static readonly PrefabGUID AB_VHunter_Leader_MeleeMode_Buff = new PrefabGUID(-948863305); public static readonly PrefabGUID AB_VHunter_Leader_MeleeStraight_Cast = new PrefabGUID(-481834109); public static readonly PrefabGUID AB_VHunter_Leader_MeleeStraight_Group = new PrefabGUID(224496996); public static readonly PrefabGUID AB_VHunter_Leader_MeleeStraight_Hit = new PrefabGUID(-1852750495); public static readonly PrefabGUID AB_VHunter_Leader_RangeMode_Buff = new PrefabGUID(368216447); public static readonly PrefabGUID AB_VHunter_Leader_Roll_AggroBuff = new PrefabGUID(1618100427); public static readonly PrefabGUID AB_VHunter_Leader_Roll_Cast = new PrefabGUID(-890518608); public static readonly PrefabGUID AB_VHunter_Leader_Roll_Group = new PrefabGUID(-175257190); public static readonly PrefabGUID AB_VHunter_Leader_Roll_Hit = new PrefabGUID(-98505041); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_AbilityGroup = new PrefabGUID(-1503146131); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Cast = new PrefabGUID(1928757879); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Channel = new PrefabGUID(2114888655); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Hit = new PrefabGUID(-915885442); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Init_AbilityGroup = new PrefabGUID(-343320686); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Init_Cast = new PrefabGUID(-525856624); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Init_Trigger = new PrefabGUID(1286426228); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_SelfKnockback = new PrefabGUID(1093848642); public static readonly PrefabGUID AB_Villager_Female_MeleeAttack_Cast01 = new PrefabGUID(-85786150); public static readonly PrefabGUID AB_Villager_Female_MeleeAttack_Group = new PrefabGUID(1397338806); public static readonly PrefabGUID AB_Villager_Female_MeleeAttack_Hit = new PrefabGUID(-1162225115); public static readonly PrefabGUID AB_Villager_Male_MeleeAttack_Cast01 = new PrefabGUID(-821915155); public static readonly PrefabGUID AB_Villager_Male_MeleeAttack_Group = new PrefabGUID(-1617717290); public static readonly PrefabGUID AB_Villager_Male_MeleeAttack_Hit = new PrefabGUID(-1760952364); public static readonly PrefabGUID AB_Voltage_ElectricRod_AbilityGroup = new PrefabGUID(-1548349308); public static readonly PrefabGUID AB_Voltage_ElectricRod_Cast = new PrefabGUID(-916278453); public static readonly PrefabGUID AB_Voltage_ElectricRod_ChannelBuff = new PrefabGUID(826536755); public static readonly PrefabGUID AB_Voltage_ElectricRod_HitBuff_HARD = new PrefabGUID(1716523710); public static readonly PrefabGUID AB_Voltage_ElectricRod_Travel_HARD = new PrefabGUID(516588505); public static readonly PrefabGUID AB_Voltage_ElectricSprint_AbilityGroup = new PrefabGUID(-177268000); public static readonly PrefabGUID AB_Voltage_ElectricSprint_Cast = new PrefabGUID(1654319550); public static readonly PrefabGUID AB_Voltage_ElectricSprint_DurationManager = new PrefabGUID(926845843); public static readonly PrefabGUID AB_Voltage_ElectricSprint_SprintBuff = new PrefabGUID(1207609590); public static readonly PrefabGUID AB_Voltage_ElectricSprint_TargetBuff = new PrefabGUID(-972644408); public static readonly PrefabGUID AB_Voltage_ElectricSprint_Trigger = new PrefabGUID(279957344); public static readonly PrefabGUID AB_Voltage_KickCombo_AbilityGroup = new PrefabGUID(1878838878); public static readonly PrefabGUID AB_Voltage_KickCombo_Cast01 = new PrefabGUID(16406835); public static readonly PrefabGUID AB_Voltage_KickCombo_Cast02 = new PrefabGUID(-844027985); public static readonly PrefabGUID AB_Voltage_KickCombo_Cast03 = new PrefabGUID(1946665361); public static readonly PrefabGUID AB_Voltage_KickCombo_Final_AbilityGroup = new PrefabGUID(1851411882); public static readonly PrefabGUID AB_Voltage_KickCombo_Hit = new PrefabGUID(-2129623112); public static readonly PrefabGUID AB_Voltage_KickCombo_Hit03 = new PrefabGUID(1259554051); public static readonly PrefabGUID AB_Voltage_KickCombo_ProjectileTrigger = new PrefabGUID(1777953131); public static readonly PrefabGUID AB_Voltage_KickCombo_ProjectileTrigger_HARD = new PrefabGUID(1475185297); public static readonly PrefabGUID AB_Voltage_LeapAttack_AbilityGroup = new PrefabGUID(2016544872); public static readonly PrefabGUID AB_Voltage_LeapAttack_Cast = new PrefabGUID(-323026864); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_AbilityGroup = new PrefabGUID(-1853889696); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_Cast = new PrefabGUID(-100185026); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_Travel = new PrefabGUID(1948007032); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_TravelEnd = new PrefabGUID(-1457043201); public static readonly PrefabGUID AB_Voltage_LeapAttack_Travel = new PrefabGUID(-403532031); public static readonly PrefabGUID AB_Voltage_LeapAttack_TravelEnd = new PrefabGUID(-396619857); public static readonly PrefabGUID AB_Voltage_LeapAttack_TravelHit = new PrefabGUID(-1252014574); public static readonly PrefabGUID AB_Voltage_SprintKick_AbilityGroup = new PrefabGUID(788963695); public static readonly PrefabGUID AB_Voltage_SprintKick_AggroBuff = new PrefabGUID(97349349); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_AbilityGroup = new PrefabGUID(-1143650386); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_Cast = new PrefabGUID(-1801875745); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_RelocateImpair = new PrefabGUID(-351960871); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_Trigger = new PrefabGUID(13762758); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_TriggerAggroRemove = new PrefabGUID(1029687104); public static readonly PrefabGUID AB_Voltage_SprintKick_Buff = new PrefabGUID(-914991069); public static readonly PrefabGUID AB_Voltage_SprintKick_CastDash = new PrefabGUID(1855354556); public static readonly PrefabGUID AB_Voltage_SprintKick_PostDash = new PrefabGUID(235226103); public static readonly PrefabGUID AB_Voltage_SprintKick_StunBuff = new PrefabGUID(-313485627); public static readonly PrefabGUID AB_Voltage_Stage2_LightningRay_Projectile = new PrefabGUID(1785222437); public static readonly PrefabGUID AB_Voltage_Stage2_LightningRay_ScatterProjectile = new PrefabGUID(-993623022); public static readonly PrefabGUID AB_Voltage_Stage2_MoteOfLightning_Projectile = new PrefabGUID(-1728032237); public static readonly PrefabGUID AB_Voltage_Stage2_MoteOfLightning_WhirlwindProjectile = new PrefabGUID(468345692); public static readonly PrefabGUID AB_Voltage_Swap_AbilityGroup = new PrefabGUID(-1372140488); public static readonly PrefabGUID AB_Voltage_Swap_AoE = new PrefabGUID(-1378206778); public static readonly PrefabGUID AB_Voltage_Swap_Cast = new PrefabGUID(-1173121313); public static readonly PrefabGUID AB_Voltage_Swap_Hit = new PrefabGUID(-1757691609); public static readonly PrefabGUID AB_Voltage_Swap_HitBuff = new PrefabGUID(-514100745); public static readonly PrefabGUID AB_Voltage_Swap_OwnerHitBuff = new PrefabGUID(-178329434); public static readonly PrefabGUID AB_Voltage_Swap_Travel = new PrefabGUID(1107291914); public static readonly PrefabGUID AB_Voltage_Whip_AbilityGroup = new PrefabGUID(1191517048); public static readonly PrefabGUID AB_Voltage_Whip_Cast = new PrefabGUID(-542904245); public static readonly PrefabGUID AB_Voltage_Whip_Hit1 = new PrefabGUID(2058671022); public static readonly PrefabGUID AB_Voltage_Whip_Hit2 = new PrefabGUID(-179012073); public static readonly PrefabGUID AB_Voltage_Whip_HitBuff = new PrefabGUID(1584261104); public static readonly PrefabGUID AB_Voltage_Whirlwind_AbilityGroup = new PrefabGUID(-1243386667); public static readonly PrefabGUID AB_Voltage_Whirlwind_Cast = new PrefabGUID(1867705645); public static readonly PrefabGUID AB_Voltage_Whirlwind_Channel = new PrefabGUID(-1584250382); public static readonly PrefabGUID AB_Voltage_Whirlwind_Channel_HARD = new PrefabGUID(-1527520550); public static readonly PrefabGUID AB_Voltage_Whirlwind_Hit = new PrefabGUID(381916168); public static readonly PrefabGUID AB_Voltage_Whirlwind_PostTravel = new PrefabGUID(-505126158); public static readonly PrefabGUID AB_Voltage_Whirlwind_SpeedBuff = new PrefabGUID(236263098); public static readonly PrefabGUID AB_Voltage_Whirlwind_Travel = new PrefabGUID(-1416300207); public static readonly PrefabGUID AB_Wendigo_FrostNova_AbilityGroup = new PrefabGUID(1238313774); public static readonly PrefabGUID AB_Wendigo_FrostNova_Cast = new PrefabGUID(1881810296); public static readonly PrefabGUID AB_Wendigo_FrostNova_MoveBehaviourBuff = new PrefabGUID(325147096); public static readonly PrefabGUID AB_Wendigo_FrostNova_RingArea = new PrefabGUID(-1227952025); public static readonly PrefabGUID AB_Wendigo_IceBeam_AggroBuff = new PrefabGUID(1038174719); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_AbilityGroup = new PrefabGUID(495259674); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_Cast = new PrefabGUID(-31256703); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_Channel = new PrefabGUID(182403559); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_PostChannelBuff = new PrefabGUID(-391924431); public static readonly PrefabGUID AB_Wendigo_IceBeam_HitBuff = new PrefabGUID(-1265982946); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_AbilityGroup = new PrefabGUID(1390611238); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_Cast = new PrefabGUID(1834593836); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_Channel = new PrefabGUID(617598110); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_PostChannelBuff = new PrefabGUID(908203715); public static readonly PrefabGUID AB_Wendigo_IceBeam_TargetedBuff = new PrefabGUID(668297145); public static readonly PrefabGUID AB_Wendigo_IceDash_EmpowerBuff = new PrefabGUID(-1991229776); public static readonly PrefabGUID AB_Wendigo_IceDash_Init_AbilityGroup = new PrefabGUID(54541608); public static readonly PrefabGUID AB_Wendigo_IceDash_Init_Cast = new PrefabGUID(-1639900640); public static readonly PrefabGUID AB_Wendigo_IceDash_Init_MoveBehaviourBuff = new PrefabGUID(-81468142); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_AbilityGroup = new PrefabGUID(203761859); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Cast = new PrefabGUID(1588496367); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hard_AbilityGroup = new PrefabGUID(929369353); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hard_Cast = new PrefabGUID(715646522); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hard_Hit = new PrefabGUID(-1340519546); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hit = new PrefabGUID(177876428); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_AbilityGroup = new PrefabGUID(-496233120); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_AggroBuff = new PrefabGUID(312861120); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Cast = new PrefabGUID(955349764); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_DashBuff = new PrefabGUID(1854395476); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Hard_AbilityGroup = new PrefabGUID(-2029387940); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Hard_Cast = new PrefabGUID(-470780429); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Hard_DashBuff = new PrefabGUID(641607771); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_AbilityGroup = new PrefabGUID(-1683730497); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_AggroBuff = new PrefabGUID(2129114841); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_AoE = new PrefabGUID(1957392507); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Cast01 = new PrefabGUID(134028684); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Cast02 = new PrefabGUID(2115290037); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Cast03 = new PrefabGUID(190216402); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Projectile01 = new PrefabGUID(1412298771); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Projectile02 = new PrefabGUID(-1012427758); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_TargetedBuff = new PrefabGUID(397468784); public static readonly PrefabGUID AB_Wendigo_LeapAttack_AbilityGroup = new PrefabGUID(-1986179833); public static readonly PrefabGUID AB_Wendigo_LeapAttack_Cast = new PrefabGUID(-1381113180); public static readonly PrefabGUID AB_Wendigo_LeapAttack_Travel = new PrefabGUID(1511899753); public static readonly PrefabGUID AB_Wendigo_LeapAttack_TravelEnd = new PrefabGUID(1658674762); public static readonly PrefabGUID AB_Wendigo_LeapAttack_TravelHit = new PrefabGUID(-1576210748); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_AbilityGroup = new PrefabGUID(1568904735); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Cast01 = new PrefabGUID(459293600); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Cast02 = new PrefabGUID(-1639870083); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Cast03 = new PrefabGUID(656956232); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Hit = new PrefabGUID(-519846948); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Hit03 = new PrefabGUID(2090007752); public static readonly PrefabGUID AB_Wendigo_SnowStorm_AbilityGroup = new PrefabGUID(-2090815764); public static readonly PrefabGUID AB_Wendigo_SnowStorm_AtmosphereBuff = new PrefabGUID(1367878559); public static readonly PrefabGUID AB_Wendigo_SnowStorm_BlindBuff = new PrefabGUID(828978508); public static readonly PrefabGUID AB_Wendigo_SnowStorm_Cast = new PrefabGUID(806537037); public static readonly PrefabGUID AB_Wendigo_SnowStorm_IcicleThrow = new PrefabGUID(-1993499959); public static readonly PrefabGUID AB_Wendigo_SnowStorm_MoveBehaviourBuff = new PrefabGUID(-1834009970); public static readonly PrefabGUID AB_Wendigo_SnowStorm_TargetedBuff = new PrefabGUID(486057639); public static readonly PrefabGUID AB_Werewolf_Bite_AbilityGroup = new PrefabGUID(-1789525825); public static readonly PrefabGUID AB_Werewolf_Bite_BleedBuff = new PrefabGUID(1313262093); public static readonly PrefabGUID AB_Werewolf_Bite_Cast = new PrefabGUID(1523382598); public static readonly PrefabGUID AB_Werewolf_Bite_Hit = new PrefabGUID(-315731882); public static readonly PrefabGUID AB_Werewolf_Dash_AbilityGroup = new PrefabGUID(1063690361); public static readonly PrefabGUID AB_Werewolf_Dash_Cast = new PrefabGUID(-1132487567); public static readonly PrefabGUID AB_Werewolf_Dash_Phase = new PrefabGUID(763403604); public static readonly PrefabGUID AB_Werewolf_Dash_PostDashBuff = new PrefabGUID(760869714); public static readonly PrefabGUID AB_Werewolf_Howl_Area = new PrefabGUID(890202634); public static readonly PrefabGUID AB_Werewolf_Howl_Buff = new PrefabGUID(2108271173); public static readonly PrefabGUID AB_Werewolf_Howl_Cast = new PrefabGUID(351786732); public static readonly PrefabGUID AB_Werewolf_Howl_Group = new PrefabGUID(797495975); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Cast01 = new PrefabGUID(1169435335); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Cast02 = new PrefabGUID(-1236290481); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Group = new PrefabGUID(-831562637); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Hit01 = new PrefabGUID(846576438); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_HitBuff = new PrefabGUID(-2031749171); public static readonly PrefabGUID AB_WerewolfCheiftain_ShadowDash_MaterialBuff = new PrefabGUID(-570236147); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_AbilityGroup = new PrefabGUID(1113171592); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_Cast = new PrefabGUID(1255462149); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_Hit = new PrefabGUID(-1565884485); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_PickupBuff = new PrefabGUID(-1755694069); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_AbilityGroup = new PrefabGUID(1001804923); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_Cast = new PrefabGUID(-456022310); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_OwnerBuff = new PrefabGUID(990425601); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_PostAttackBuff = new PrefabGUID(-1817888527); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_TargetBuff = new PrefabGUID(504866176); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Cast01 = new PrefabGUID(908422456); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Cast02 = new PrefabGUID(1415503492); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Group = new PrefabGUID(1916767891); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Hit = new PrefabGUID(1786730683); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_AbilityGroup = new PrefabGUID(1445822330); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_AttackBuff = new PrefabGUID(-317372843); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_Cast = new PrefabGUID(924263813); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_Phase = new PrefabGUID(192608447); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_PostAttackBuff = new PrefabGUID(431294100); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_StunBuff = new PrefabGUID(1499693831); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_AbilityGroup = new PrefabGUID(-988264305); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Buff01 = new PrefabGUID(1746560076); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Cast01 = new PrefabGUID(567351054); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Cast02 = new PrefabGUID(-2083676350); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Hit01 = new PrefabGUID(141148511); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Hit02 = new PrefabGUID(-516402833); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_AbilityGroup = new PrefabGUID(-174926399); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_BleedBuff = new PrefabGUID(-1515424879); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast = new PrefabGUID(-943262623); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast01 = new PrefabGUID(941701222); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast02 = new PrefabGUID(-1975235915); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast03 = new PrefabGUID(-805017956); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Hit = new PrefabGUID(-2017510904); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_RemoveHardModeBuffTrigger = new PrefabGUID(1712419107); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_AbilityGroup = new PrefabGUID(-67893977); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Buff = new PrefabGUID(-646349605); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Cast = new PrefabGUID(-2059726287); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_AbilityGroup = new PrefabGUID(149010586); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_Buff = new PrefabGUID(55890943); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_Cast = new PrefabGUID(-742947136); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_PostAttackBuff = new PrefabGUID(-1212213169); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_PostAttackBuff = new PrefabGUID(-237255587); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_AbilityGroup = new PrefabGUID(2030404176); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_CagesOpenedBuff = new PrefabGUID(339344687); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_Cast = new PrefabGUID(1717394077); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_MinionBuff = new PrefabGUID(794010503); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_MinionSpawn = new PrefabGUID(-1182023331); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_Trigger = new PrefabGUID(562613644); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_AbilityGroup = new PrefabGUID(-566065717); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Cast = new PrefabGUID(-1790525694); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Clone_AbilityGroup = new PrefabGUID(2096535189); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Clone_Cast = new PrefabGUID(-295839337); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Clone_Phase = new PrefabGUID(-2055451559); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Debuff = new PrefabGUID(-986692305); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Phase = new PrefabGUID(221191680); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_PostDashBuff = new PrefabGUID(1796203093); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_AbilityGroup = new PrefabGUID(-192549213); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_AggroBuff = new PrefabGUID(-2126683831); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Cast = new PrefabGUID(753956361); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Hard_WolfBuff = new PrefabGUID(829204234); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Hard_WolfSummonBuff = new PrefabGUID(-579442885); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Hard_WolfTrigger = new PrefabGUID(-678055927); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_MinionSpawn = new PrefabGUID(136657534); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_StealthBuff = new PrefabGUID(1308277597); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_AbilityGroup = new PrefabGUID(1205896854); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Cast = new PrefabGUID(-691639859); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_1 = new PrefabGUID(177328272); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_2 = new PrefabGUID(-110826033); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_3 = new PrefabGUID(-1342245494); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_4 = new PrefabGUID(-341502928); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Hard_AbilityGroup = new PrefabGUID(-1568811754); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Hard_Cast = new PrefabGUID(1196223482); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Hard_Phase = new PrefabGUID(1497209227); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Phase = new PrefabGUID(-1562442841); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_PostTravelBuff = new PrefabGUID(1574481581); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_AbilityGroup = new PrefabGUID(151283351); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Cast = new PrefabGUID(-1702842945); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_AbilityGroup_01 = new PrefabGUID(1387986806); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_AbilityGroup_02 = new PrefabGUID(-1839296163); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_Cast_01 = new PrefabGUID(1509375736); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_Cast_02 = new PrefabGUID(-1522902732); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_HomingProjectile = new PrefabGUID(1291337690); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Projectile = new PrefabGUID(2019083657); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_AbilityGroup = new PrefabGUID(-544868559); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_Cast = new PrefabGUID(800610886); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_Channel_Buff = new PrefabGUID(-843763086); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_IcicleDrop_AoE = new PrefabGUID(1635667276); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_IcicleDrop_Throw = new PrefabGUID(-1120391332); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_MeleeHit = new PrefabGUID(975558618); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_StunBuff = new PrefabGUID(-984733544); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_Trigger = new PrefabGUID(-1525275791); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_AggroBuff = new PrefabGUID(-1615043980); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_DirectBuff_AbilityGroup = new PrefabGUID(691162066); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_DirectBuff_Cast = new PrefabGUID(-75166181); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_RageBuff = new PrefabGUID(-1712484990); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Scream = new PrefabGUID(-238625203); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_ScreamEffectDebuff = new PrefabGUID(-813581577); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_AbilityGroup = new PrefabGUID(-252663641); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_Cast = new PrefabGUID(-2062435908); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_End = new PrefabGUID(-1489941049); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_Phase = new PrefabGUID(-1233356526); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_AbilityGroup = new PrefabGUID(-1321161639); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_Cast = new PrefabGUID(-550770599); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_Phase = new PrefabGUID(-1115511574); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_PostAttackBuff = new PrefabGUID(-379849675); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_AbilityGroup = new PrefabGUID(1253708985); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_AbilityGroup = new PrefabGUID(430166804); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_AggroBuff = new PrefabGUID(-2108440890); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_Cast = new PrefabGUID(-402136945); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_SelfBuff = new PrefabGUID(1112756085); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Cast = new PrefabGUID(-58631054); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Hard_AbilityGroup = new PrefabGUID(-1126887871); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Hard_Cast = new PrefabGUID(1614720198); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Hit = new PrefabGUID(2133990995); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Roar_AbilityGroup = new PrefabGUID(320434570); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Roar_Cast = new PrefabGUID(538778201); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Roar_Hit = new PrefabGUID(1361032873); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_AbilityGroup = new PrefabGUID(1910986910); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_AreaThrow = new PrefabGUID(-628920096); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_AreaThrow_Hard_Rumble = new PrefabGUID(282010982); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Cast = new PrefabGUID(-404128651); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_MeleeHit = new PrefabGUID(-286177331); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile = new PrefabGUID(989269783); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble01 = new PrefabGUID(-1882811101); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble02 = new PrefabGUID(1774233899); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble03 = new PrefabGUID(-139197974); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble04 = new PrefabGUID(-676099226); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble05 = new PrefabGUID(2102741843); public static readonly PrefabGUID AB_Winter_Yeti_IcicleGrab_HasIcicleBuff = new PrefabGUID(8345432); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_AbilityGroup = new PrefabGUID(-1571128781); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_Cast = new PrefabGUID(-1542949990); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_HitBuff = new PrefabGUID(-2075326244); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_Projectile = new PrefabGUID(742617911); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_StunBuff = new PrefabGUID(-1749597248); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_AbilityGroup = new PrefabGUID(-905574209); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Cast1 = new PrefabGUID(-1786572937); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Cast2 = new PrefabGUID(1065246268); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Cast3 = new PrefabGUID(638990515); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit1 = new PrefabGUID(2024131797); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit2 = new PrefabGUID(278359827); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit3 = new PrefabGUID(1417713273); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit3_2 = new PrefabGUID(-533512645); public static readonly PrefabGUID AB_WinterWolf_Alert_Buff = new PrefabGUID(2137293512); public static readonly PrefabGUID AB_WinterWolf_Howl_AbilityGroup = new PrefabGUID(-689229573); public static readonly PrefabGUID AB_WinterWolf_Howl_Buff = new PrefabGUID(-91451769); public static readonly PrefabGUID AB_WinterWolf_Howl_Cast = new PrefabGUID(1407172074); public static readonly PrefabGUID AB_WinterWolf_Howl_Hit = new PrefabGUID(-370769636); public static readonly PrefabGUID AB_WinterWolf_OnAggro_Buff = new PrefabGUID(464747940); public static readonly PrefabGUID AB_Wolf_Boss_Alert_Buff = new PrefabGUID(1218136028); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Cast = new PrefabGUID(1199074158); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Enraged_Cast = new PrefabGUID(305221904); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Enraged_Group = new PrefabGUID(1558429115); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Group = new PrefabGUID(-1654954396); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Hit = new PrefabGUID(1147355783); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack = new PrefabGUID(81963686); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Double_AbilityGroup = new PrefabGUID(280173050); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Final = new PrefabGUID(-2129505691); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Final_Cast = new PrefabGUID(-1029129774); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_First_Cast = new PrefabGUID(1616317869); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Second_Cast = new PrefabGUID(-1171511121); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Single_AbilityGroup = new PrefabGUID(920051497); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Single_Cast = new PrefabGUID(-1890193977); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Stagger_Debuff = new PrefabGUID(-645028648); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Stagger_Debuff_Hard = new PrefabGUID(-1331180824); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Tripple_AbilityGroup = new PrefabGUID(-1161539168); public static readonly PrefabGUID AB_Wolf_Boss_DoNothing_AbilityGroup = new PrefabGUID(330164959); public static readonly PrefabGUID AB_Wolf_Boss_DoNothing_Cast = new PrefabGUID(-2096699565); public static readonly PrefabGUID AB_Wolf_Boss_Howl_AbilityGroup = new PrefabGUID(247740796); public static readonly PrefabGUID AB_Wolf_Boss_Howl_Cast = new PrefabGUID(-1256537999); public static readonly PrefabGUID AB_Wolf_Boss_Howl_Hit = new PrefabGUID(-1227386286); public static readonly PrefabGUID AB_Wolf_Boss_Howl_Summon = new PrefabGUID(-768826619); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_AbilityGroup = new PrefabGUID(2145136774); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_Cast = new PrefabGUID(-793477044); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_ChannelBuff = new PrefabGUID(1353658961); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_HitBuff = new PrefabGUID(125116486); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_Phase = new PrefabGUID(1824803129); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_PostAttackBuff = new PrefabGUID(776216107); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_PostChannelBuff = new PrefabGUID(313749764); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_StunBuff = new PrefabGUID(501556075); public static readonly PrefabGUID AB_Wolf_Boss_OnAggro_AbilityGroup = new PrefabGUID(640068737); public static readonly PrefabGUID AB_Wolf_Boss_OnAggro_Buff = new PrefabGUID(-2048871880); public static readonly PrefabGUID AB_Wolf_Boss_OnAggro_Cast = new PrefabGUID(-12791531); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_AbilityGroup = new PrefabGUID(-821573025); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_Cast = new PrefabGUID(514972730); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_EndPhase = new PrefabGUID(295888298); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_Phase = new PrefabGUID(564871207); public static readonly PrefabGUID AB_Wolf_Boss_SpawnAdds_Debuff = new PrefabGUID(-87924839); public static readonly PrefabGUID AB_Wolf_Boss_SpawnAdds_SummonThrow = new PrefabGUID(-1568819619); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff = new PrefabGUID(-450550476); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff_AbilityGroup = new PrefabGUID(544754926); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff_Cast = new PrefabGUID(-1977765109); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff_Hard = new PrefabGUID(1407651571); public static readonly PrefabGUID AB_Wolf_Boss_StepBack_AbilityGroup = new PrefabGUID(1456629565); public static readonly PrefabGUID AB_Wolf_Boss_StepBack_Cast = new PrefabGUID(1740230705); public static readonly PrefabGUID AB_Wolf_Cursed_DashAttack = new PrefabGUID(-1989526747); public static readonly PrefabGUID AB_Wolf_Cursed_DashAttack_AbilityGroup = new PrefabGUID(-1317017789); public static readonly PrefabGUID AB_Wolf_Cursed_DashAttack_Cast = new PrefabGUID(1819720729); public static readonly PrefabGUID AB_Wolf_Cursed_Death_Hit = new PrefabGUID(-1739730840); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_AbilityGroup = new PrefabGUID(1910899893); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_Buff = new PrefabGUID(1425734039); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_Cast = new PrefabGUID(1340300893); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_Hit = new PrefabGUID(-954976377); public static readonly PrefabGUID AB_Wolf_Cursed_MeleeAttack_Cast = new PrefabGUID(-652955584); public static readonly PrefabGUID AB_Wolf_Cursed_MeleeAttack_Group = new PrefabGUID(-1601666166); public static readonly PrefabGUID AB_Wolf_Cursed_MeleeAttack_Hit = new PrefabGUID(1344919418); public static readonly PrefabGUID AB_Wolf_Mutant_ChangeState_Approach = new PrefabGUID(-729160892); public static readonly PrefabGUID AB_Wolf_Mutant_DashAttack = new PrefabGUID(1546884886); public static readonly PrefabGUID AB_Wolf_Mutant_DashAttack_AbilityGroup = new PrefabGUID(2000340068); public static readonly PrefabGUID AB_Wolf_Mutant_DashAttack_Cast = new PrefabGUID(-145867216); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_01 = new PrefabGUID(1693108850); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_02 = new PrefabGUID(-1303357680); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_03 = new PrefabGUID(-1813495704); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_04 = new PrefabGUID(-162063834); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Group = new PrefabGUID(-1869011274); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Hit = new PrefabGUID(-2049893612); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Hit_LastCombo = new PrefabGUID(124818454); public static readonly PrefabGUID AB_Wolf_Shared_DashAttack = new PrefabGUID(602160251); public static readonly PrefabGUID AB_Wolf_Shared_DashAttack_AbilityGroup = new PrefabGUID(-744145902); public static readonly PrefabGUID AB_Wolf_Shared_DashAttack_Cast = new PrefabGUID(-2002119334); public static readonly PrefabGUID AB_Wolf_Shared_MeleeAttack_Cast = new PrefabGUID(-1926918220); public static readonly PrefabGUID AB_Wolf_Shared_MeleeAttack_Group = new PrefabGUID(556902791); public static readonly PrefabGUID AB_Wolf_Shared_MeleeAttack_Hit = new PrefabGUID(-1916716580); public static readonly PrefabGUID AB_Wolf_Winter_DashAttack = new PrefabGUID(-1035394694); public static readonly PrefabGUID AB_Wolf_Winter_DashAttack_AbilityGroup = new PrefabGUID(-83187650); public static readonly PrefabGUID AB_Wolf_Winter_DashAttack_Cast = new PrefabGUID(380460126); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Cast_01 = new PrefabGUID(103922514); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Cast_02 = new PrefabGUID(118375292); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Group = new PrefabGUID(-1267641072); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Hit = new PrefabGUID(2033230283); public static readonly PrefabGUID AB_Woodcutter_Alert_Buff = new PrefabGUID(-1891893656); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Cast01 = new PrefabGUID(-779008659); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Cast02 = new PrefabGUID(-1467974095); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Group01 = new PrefabGUID(845410366); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Hit01 = new PrefabGUID(157854516); public static readonly PrefabGUID AB_Woodcutter_OnAggro_AbilityGroup = new PrefabGUID(1878649294); public static readonly PrefabGUID AB_Woodcutter_OnAggro_Buff = new PrefabGUID(-947722044); public static readonly PrefabGUID AB_Woodcutter_OnAggro_Cast = new PrefabGUID(250761309); public static readonly PrefabGUID AB_WormTerror_AcidPuke_AbilityGroup = new PrefabGUID(-1789897775); public static readonly PrefabGUID AB_WormTerror_AcidPuke_Area = new PrefabGUID(840723906); public static readonly PrefabGUID AB_WormTerror_AcidPuke_Cast = new PrefabGUID(-1004647373); public static readonly PrefabGUID AB_WormTerror_AcidPuke_PoisonDebuff = new PrefabGUID(-1896295256); public static readonly PrefabGUID AB_WormTerror_AcidPuke_Throw = new PrefabGUID(-118685252); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_AbilityGroup = new PrefabGUID(1938535864); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_Cast = new PrefabGUID(-1916989126); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_End = new PrefabGUID(1665154001); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_Phase = new PrefabGUID(1777711743); public static readonly PrefabGUID AB_WormTerror_Immaterial_Buff = new PrefabGUID(-1109086376); public static readonly PrefabGUID AB_WormTerror_MeleeAttack_AbilityGroup = new PrefabGUID(1105185654); public static readonly PrefabGUID AB_WormTerror_MeleeAttack_Cast = new PrefabGUID(-1494228034); public static readonly PrefabGUID AB_WormTerror_MeleeAttack_Hit = new PrefabGUID(-1630595705); public static readonly PrefabGUID Ability_EntanglingNet_Curve = new PrefabGUID(-2147018058); public static readonly PrefabGUID Ability_HarpyForwardMovement = new PrefabGUID(1029855610); public static readonly PrefabGUID Ability_HoundForwardMovement = new PrefabGUID(-1988207496); public static readonly PrefabGUID Ability_HoundSideMovement = new PrefabGUID(1485905762); public static readonly PrefabGUID Ability_MistStrike_Curve = new PrefabGUID(536065062); public static readonly PrefabGUID Ability_Roll_Curve = new PrefabGUID(-587238233); public static readonly PrefabGUID Ability_ShadowAssassin_Dash_Curve = new PrefabGUID(-318780647); public static readonly PrefabGUID Ability_ShadowDash_Curve = new PrefabGUID(2064867765); public static readonly PrefabGUID Ability_Step_Negative_Curve = new PrefabGUID(-233164722); public static readonly PrefabGUID Ability_Step_Positive_Curve = new PrefabGUID(-408652835); public static readonly PrefabGUID Ability_UndeadLeaderMovement = new PrefabGUID(145815111); public static readonly PrefabGUID Ability_UndeadLeaderMovement2 = new PrefabGUID(-1765048715); public static readonly PrefabGUID AbilityGroupSlot = new PrefabGUID(-633717863); public static readonly PrefabGUID AchievementDataPrefab = new PrefabGUID(1468584555); public static readonly PrefabGUID AdaptiveTriggerCollection = new PrefabGUID(-1786901006); public static readonly PrefabGUID Admin_Invulnerable_Buff = new PrefabGUID(-480024072); public static readonly PrefabGUID Admin_Observe_Ghost_Buff = new PrefabGUID(77473184); public static readonly PrefabGUID Admin_Observe_Invisible_Buff = new PrefabGUID(1880224358); public static readonly PrefabGUID AI_ArchMage_ArcaneMissile_Rotation_Curve = new PrefabGUID(-1188142516); public static readonly PrefabGUID AI_ArchMage_ArcaneMissile_Travel_Curve = new PrefabGUID(-2130655750); public static readonly PrefabGUID AI_Bandit_Thief_HeayAttack_Curve = new PrefabGUID(-1377083557); public static readonly PrefabGUID AI_BeastStep_Curve = new PrefabGUID(-64193657); public static readonly PrefabGUID AI_BeastStepSlow_Curve = new PrefabGUID(689433618); public static readonly PrefabGUID AI_BishopOfDunley_SummonPillar_Height_Curve = new PrefabGUID(-1473005341); public static readonly PrefabGUID AI_BishopOfShadow_Bolt_Hard_Curve01 = new PrefabGUID(1307462497); public static readonly PrefabGUID AI_Blackfang_CarverBoss_Whirlwind = new PrefabGUID(-1895143386); public static readonly PrefabGUID AI_BloodProphet_Projectile_Curve = new PrefabGUID(1066293021); public static readonly PrefabGUID AI_Cardinal_LightWave_Curve = new PrefabGUID(503790095); public static readonly PrefabGUID AI_Cardinal_LightWave_Curve_Backup = new PrefabGUID(-664773551); public static readonly PrefabGUID AI_Cardinal_Projectile_Curve = new PrefabGUID(1604063702); public static readonly PrefabGUID AI_CircleInRange_Curve = new PrefabGUID(2125671364); public static readonly PrefabGUID AI_CircleOutOfRange_Curve = new PrefabGUID(177153073); public static readonly PrefabGUID AI_CircleOutOfRange_Curve_MountedUnits = new PrefabGUID(924309848); public static readonly PrefabGUID AI_Circular_RiseAndFall_Curve = new PrefabGUID(1699506016); public static readonly PrefabGUID AI_Cursed_KingToad_DevourLeap_Curve = new PrefabGUID(216104832); public static readonly PrefabGUID AI_Cursed_MonsterToad_GrabCastRotation_Curve = new PrefabGUID(1925271266); public static readonly PrefabGUID AI_Cursed_MountainBeast_HornFlick_Curve = new PrefabGUID(-1047690885); public static readonly PrefabGUID AI_Cursed_MountainBeast_Leap_HeightCurve = new PrefabGUID(1262520881); public static readonly PrefabGUID AI_Cursed_MountainBeast_Leap_LengthCurve = new PrefabGUID(-1876846060); public static readonly PrefabGUID AI_Cursed_Toad_Leap_HeightCurve = new PrefabGUID(1705113667); public static readonly PrefabGUID AI_CursedSmith_ProjectileCurveX = new PrefabGUID(1345713271); public static readonly PrefabGUID AI_CursedSmith_ProjectileCurveZ = new PrefabGUID(-1829875614); public static readonly PrefabGUID AI_DireWolf_Bite_Cast = new PrefabGUID(748003037); public static readonly PrefabGUID AI_DireWolf_Dash_Cast = new PrefabGUID(-351012290); public static readonly PrefabGUID AI_DireWolf_SpeedCurve = new PrefabGUID(1353440498); public static readonly PrefabGUID AI_Dracula_EtherialSword_ThrowY_Curve = new PrefabGUID(-863705959); public static readonly PrefabGUID AI_Dracula_EtherialSword_ThrowZ_Curve = new PrefabGUID(1095346924); public static readonly PrefabGUID AI_Dracula_FinalEtherialSword_ThrowY_Curve = new PrefabGUID(-739786665); public static readonly PrefabGUID AI_Dracula_FinalEtherialSword_ThrowZ_Curve = new PrefabGUID(-1456320024); public static readonly PrefabGUID AI_Dreadhorn_TrampleMove_Curve = new PrefabGUID(-1944429868); public static readonly PrefabGUID AI_EaseIn_Heavy_Curve = new PrefabGUID(561559961); public static readonly PrefabGUID AI_EaseIn_Light_Curve = new PrefabGUID(1355113560); public static readonly PrefabGUID AI_EaseIn_Light_CurveAlt01 = new PrefabGUID(-156779734); public static readonly PrefabGUID AI_EaseIn_Light_CurveAlt02 = new PrefabGUID(2094897419); public static readonly PrefabGUID AI_EaseIn_Medium_Curve = new PrefabGUID(-301679235); public static readonly PrefabGUID AI_EaseIn_VeryHeavy_Curve = new PrefabGUID(1693808763); public static readonly PrefabGUID AI_EaseIn_VeryLight_Curve = new PrefabGUID(608040287); public static readonly PrefabGUID AI_EaseOut_Late_Curve = new PrefabGUID(414126052); public static readonly PrefabGUID AI_EaseOut_LateLight_Curve = new PrefabGUID(-924471505); public static readonly PrefabGUID AI_EaseOut_LateVeryLight_Curve = new PrefabGUID(-692374467); public static readonly PrefabGUID AI_EaseOut_Light_Curve = new PrefabGUID(848772822); public static readonly PrefabGUID AI_EaseOut_LightSharp_Curve = new PrefabGUID(-142248688); public static readonly PrefabGUID AI_EaseOut_Medium_Curve = new PrefabGUID(-362439120); public static readonly PrefabGUID AI_EaseOut_MediumSharp_Curve = new PrefabGUID(1195259041); public static readonly PrefabGUID AI_Farmlands_HoundMaster_VBlood_Ram_Curve = new PrefabGUID(2065896510); public static readonly PrefabGUID AI_FlyingSkull_RotationCurve = new PrefabGUID(2023649318); public static readonly PrefabGUID AI_Gargoyle_FlyAway_Curve = new PrefabGUID(-1558433107); public static readonly PrefabGUID AI_Gloomrot_Monster_SideStepTravel_Curve = new PrefabGUID(1940439665); public static readonly PrefabGUID AI_Gloomrot_TheProfessor_Lazer_Curve = new PrefabGUID(641519384); public static readonly PrefabGUID AI_Gloomrot_Voltage_Stage2Projectile_Oscillating_Curve = new PrefabGUID(658349860); public static readonly PrefabGUID AI_Guard_Melee_VBlood = new PrefabGUID(810959773); public static readonly PrefabGUID AI_Harpy_Dash_Curve = new PrefabGUID(-116941430); public static readonly PrefabGUID AI_Harpy_DiveLoop_Curve_Horizontal = new PrefabGUID(2145997701); public static readonly PrefabGUID AI_Harpy_DiveLoop_Curve_Vertical = new PrefabGUID(92406503); public static readonly PrefabGUID AI_Knight_2HChain_1st_Curve_BUPP = new PrefabGUID(-1197513669); public static readonly PrefabGUID AI_Knight_ChargeEnd_Curve_OLD = new PrefabGUID(-140176888); public static readonly PrefabGUID AI_Knight_NegativeDash_Curve = new PrefabGUID(-844174964); public static readonly PrefabGUID AI_Knight_PositiveDash_Curve = new PrefabGUID(1387222245); public static readonly PrefabGUID AI_Knight_StepAttack_Curve_OLD = new PrefabGUID(2006871092); public static readonly PrefabGUID AI_KnightLunge_Curve_OLD = new PrefabGUID(1841580312); public static readonly PrefabGUID AI_Manticore_BreathAttack_Rotation_Curve01 = new PrefabGUID(1772727951); public static readonly PrefabGUID AI_Manticore_ChargeProjectile_Curve = new PrefabGUID(1587442721); public static readonly PrefabGUID AI_Manticore_FlyStart_Height_Curve_BACKUP = new PrefabGUID(-1262574091); public static readonly PrefabGUID AI_Manticore_TailSpin_Rotation_Curve = new PrefabGUID(-1017451200); public static readonly PrefabGUID AI_Manticore_Turn180_HitboxRotation_Curve = new PrefabGUID(-107863745); public static readonly PrefabGUID AI_Manticore_Turn180_MoveX_Curve = new PrefabGUID(-1627468868); public static readonly PrefabGUID AI_Manticore_Turn180_MoveZ_Curve = new PrefabGUID(1458827362); public static readonly PrefabGUID AI_Manticore_Turn180_MoveZ_Curve1 = new PrefabGUID(1083043415); public static readonly PrefabGUID AI_Manticore_Turn180_Rotation_Curve = new PrefabGUID(-22162055); public static readonly PrefabGUID AI_Manticore_TurnSwipe_HitboxRotation_Curve = new PrefabGUID(1576233417); public static readonly PrefabGUID AI_Manticore_TurnSwipe_HitboxRotation_Curve_BUP = new PrefabGUID(1018645083); public static readonly PrefabGUID AI_Manticore_TurnSwipe_Movement_Curve = new PrefabGUID(1289957217); public static readonly PrefabGUID AI_Manticore_TurnSwipe_Rotation_Curve = new PrefabGUID(-1291969413); public static readonly PrefabGUID AI_Marksman_Melee_Curve = new PrefabGUID(-1421003243); public static readonly PrefabGUID AI_MeleeAttack_EaseIn = new PrefabGUID(-853573516); public static readonly PrefabGUID AI_MeleeAttack_EaseIn_Fast = new PrefabGUID(971450220); public static readonly PrefabGUID AI_MeleeAttack_EaseIn_Slow = new PrefabGUID(291942477); public static readonly PrefabGUID AI_MeleeAttack_Ghoul_Curve = new PrefabGUID(1540269545); public static readonly PrefabGUID AI_MeleeAttack_Sentinel = new PrefabGUID(-2112901029); public static readonly PrefabGUID AI_MeleeAttack_TightEnd_Curve = new PrefabGUID(-866740220); public static readonly PrefabGUID AI_Militia_Heavy_Ram_Curve = new PrefabGUID(-1204915080); public static readonly PrefabGUID AI_Militia_VBlood_Lunge_Curve = new PrefabGUID(-1684796015); public static readonly PrefabGUID AI_MilitiaCrossbow_BurstRotation = new PrefabGUID(147767616); public static readonly PrefabGUID AI_Monster_FinalProjectile_XCurve = new PrefabGUID(1169618948); public static readonly PrefabGUID AI_Monster_PierceShock_DashCurve = new PrefabGUID(590324233); public static readonly PrefabGUID AI_Monster_PierceShock_Swing_MoveCurve = new PrefabGUID(-1384720433); public static readonly PrefabGUID AI_MountainBeast_Leap_Distance = new PrefabGUID(-346863840); public static readonly PrefabGUID AI_MountainBeast_Leap_Height = new PrefabGUID(474609033); public static readonly PrefabGUID AI_MountainBeast_ProjectileCurveX = new PrefabGUID(181504325); public static readonly PrefabGUID AI_MountainBeast_ProjectileCurveZ = new PrefabGUID(889200342); public static readonly PrefabGUID AI_NightlurkerWendigo_HeavyAttackCurve = new PrefabGUID(403873499); public static readonly PrefabGUID AI_OrbitingCurveX = new PrefabGUID(-1910570157); public static readonly PrefabGUID AI_OrbitingCurveY = new PrefabGUID(1537194669); public static readonly PrefabGUID AI_Paladin_Dash_Gabriel = new PrefabGUID(1540738331); public static readonly PrefabGUID AI_Paladin_Predash = new PrefabGUID(1178910386); public static readonly PrefabGUID AI_Paladin_ProjectileCurveX = new PrefabGUID(-1436260943); public static readonly PrefabGUID AI_Paladin_ProjectileCurveZ = new PrefabGUID(-789808325); public static readonly PrefabGUID AI_Paladin_SpinnerProjectileCurveX = new PrefabGUID(-1241684347); public static readonly PrefabGUID AI_Paladin_SpinnerProjectileCurveZ = new PrefabGUID(1902495676); public static readonly PrefabGUID AI_Poloma_DeceleratingProjectile_Curve = new PrefabGUID(2068628546); public static readonly PrefabGUID AI_Raziel_ProjectileCurveX = new PrefabGUID(347640315); public static readonly PrefabGUID AI_Raziel_ProjectileCurveZ = new PrefabGUID(-1269556189); public static readonly PrefabGUID AI_ReappliedFadingBuff_Curve = new PrefabGUID(1936213046); public static readonly PrefabGUID AI_SpearLunge_Curve = new PrefabGUID(-120918319); public static readonly PrefabGUID AI_SpearRain_Rotation = new PrefabGUID(-655968432); public static readonly PrefabGUID AI_SpiderTank_StepHeight_Curve = new PrefabGUID(427150843); public static readonly PrefabGUID AI_SpiderTank_Suspension_Curve = new PrefabGUID(-72826230); public static readonly PrefabGUID AI_TwoStepSlowdown_Curve = new PrefabGUID(479434378); public static readonly PrefabGUID AI_Undead_ArenaChamp_ThrowY_Curve = new PrefabGUID(1433768951); public static readonly PrefabGUID AI_Undead_ArenaChamp_ThrowZ_Curve = new PrefabGUID(-2070870747); public static readonly PrefabGUID AI_Undead_CursedSmith_FloatingSword_DashRotation_Curve = new PrefabGUID(1381879666); public static readonly PrefabGUID AI_Undead_CursedSmith_HammerLeap_HeightCurve = new PrefabGUID(2099627221); public static readonly PrefabGUID AI_Undead_CursedSmith_SpearThrust_MoveCurve = new PrefabGUID(1445042696); public static readonly PrefabGUID AI_Undead_CursedSmith_SpearThrust_RotationCurve = new PrefabGUID(-1661193573); public static readonly PrefabGUID AI_UndeadGuardian_2HChain_1st_Curve = new PrefabGUID(-968239159); public static readonly PrefabGUID AI_Wendigo_IceBeamRotation_Curve = new PrefabGUID(567905634); public static readonly PrefabGUID AI_WerewolfCheiftain_MeleeAttack_Curve = new PrefabGUID(132821086); public static readonly PrefabGUID AI_Wildling_Bulwark_Ram_Curve = new PrefabGUID(-1546221575); public static readonly PrefabGUID AI_Winter_Yeti_Charge_Curve = new PrefabGUID(402879438); public static readonly PrefabGUID AimAssist_HardLock = new PrefabGUID(-2013813657); public static readonly PrefabGUID AimAssist_NoAssist = new PrefabGUID(-1448141185); public static readonly PrefabGUID AimAssist_SoftLock = new PrefabGUID(289787973); public static readonly PrefabGUID AimAssist_Sway = new PrefabGUID(-1949996541); public static readonly PrefabGUID AimAssistCurve_Base = new PrefabGUID(-1383375513); public static readonly PrefabGUID AimAssistCurve_HardLock = new PrefabGUID(-1367923906); public static readonly PrefabGUID AimAssistCurve_SoftLock = new PrefabGUID(-1371114609); public static readonly PrefabGUID AimAssistCurve_Sway = new PrefabGUID(-1470932594); public static readonly PrefabGUID AimDirectionPreview = new PrefabGUID(-989165409); public static readonly PrefabGUID AimPreview_Beam = new PrefabGUID(-861060961); public static readonly PrefabGUID AimPreview_Cone = new PrefabGUID(-2016093629); public static readonly PrefabGUID AimPreview_Cone_GreatswordLeapAttack = new PrefabGUID(615431526); public static readonly PrefabGUID AimPreview_Cone_old = new PrefabGUID(-134013452); public static readonly PrefabGUID AimPreview_Counter = new PrefabGUID(836540759); public static readonly PrefabGUID AimPreview_CrossProjectiles = new PrefabGUID(-759352593); public static readonly PrefabGUID AimPreview_CurvedThrow = new PrefabGUID(1970005454); public static readonly PrefabGUID AimPreview_Dash = new PrefabGUID(2012252022); public static readonly PrefabGUID AimPreview_Dash_General = new PrefabGUID(-643714821); public static readonly PrefabGUID AimPreview_DirectionalShield = new PrefabGUID(-1229861986); public static readonly PrefabGUID AimPreview_Gamepad_MeleeDash = new PrefabGUID(1969063642); public static readonly PrefabGUID AimPreview_Gamepad_Passive = new PrefabGUID(-290228763); public static readonly PrefabGUID AimPreview_Gamepad_TargetAoE = new PrefabGUID(-1968582502); public static readonly PrefabGUID AimPreview_Gamepad_TargetBuff = new PrefabGUID(-1032448993); public static readonly PrefabGUID AimPreview_LineAndCircle = new PrefabGUID(-1469898095); public static readonly PrefabGUID AimPreview_Melee = new PrefabGUID(-612553101); public static readonly PrefabGUID AimPreview_PlayerCenteredAoE = new PrefabGUID(2063523058); public static readonly PrefabGUID AimPreview_Projectile = new PrefabGUID(2134154679); public static readonly PrefabGUID AimPreview_Projectile_Narrow = new PrefabGUID(-1676376554); public static readonly PrefabGUID AimPreview_ProjectileCursor = new PrefabGUID(-90441294); public static readonly PrefabGUID AimPreview_ProjectileCursor_NoLine = new PrefabGUID(-680804649); public static readonly PrefabGUID AimPreview_ProjectileCursor_SpearArea = new PrefabGUID(1020278136); public static readonly PrefabGUID AimPreview_Quad = new PrefabGUID(-1274328037); public static readonly PrefabGUID AimPreview_Rectangle = new PrefabGUID(-429055392); public static readonly PrefabGUID AimPreview_TargetAoEWithArc = new PrefabGUID(-805970037); public static readonly PrefabGUID AimPreview_TargetAoEWithoutArc = new PrefabGUID(-283965562); public static readonly PrefabGUID AimPreview_TravelBuffWithArc = new PrefabGUID(-1492678634); public static readonly PrefabGUID AimPreview_TravelBuffWithoutArc = new PrefabGUID(1850729888); public static readonly PrefabGUID AimPreview_TravelBuffWithoutArc_NoCircle = new PrefabGUID(381941116); public static readonly PrefabGUID AimWorldTargetPreview = new PrefabGUID(457887924); public static readonly PrefabGUID AlchemyFloorBuildMenuGroup = new PrefabGUID(146476207); public static readonly PrefabGUID Alert_Quarter_Still_Rotation_Curve = new PrefabGUID(20734649); public static readonly PrefabGUID Alert_Quarter_Still_Rotation_Curve_Slower = new PrefabGUID(-1363989956); public static readonly PrefabGUID AllowJumpFromCliffsBuff = new PrefabGUID(-701914966); public static readonly PrefabGUID AmbushActivityTimer = new PrefabGUID(-1708066263); public static readonly PrefabGUID ArcticLeapMovementCurve = new PrefabGUID(-466420168); public static readonly PrefabGUID Arena_CountdownFlashCurve = new PrefabGUID(215421682); public static readonly PrefabGUID Arena01WallpaperBuildMenuGroup = new PrefabGUID(357750462); public static readonly PrefabGUID ArenaFlagBuildMenuGroup = new PrefabGUID(1595912695); public static readonly PrefabGUID AscendancyPassive_Blood_T01_BloodMend = new PrefabGUID(254413498); public static readonly PrefabGUID AscendancyPassive_Blood_T02_BloodDrain = new PrefabGUID(762152014); public static readonly PrefabGUID AscendancyPassive_Blood_T03_LeechMastery = new PrefabGUID(980613835); public static readonly PrefabGUID AscendancyPassive_Chaos_T01_VeilCooldown = new PrefabGUID(-1314793423); public static readonly PrefabGUID AscendancyPassive_Chaos_T02_UltimatePower = new PrefabGUID(-463084646); public static readonly PrefabGUID AscendancyPassive_Chaos_T03_ChaosMastery = new PrefabGUID(-974227542); public static readonly PrefabGUID AscendancyPassive_Frost_T01_ShieldEfficiency = new PrefabGUID(1401357351); public static readonly PrefabGUID AscendancyPassive_Frost_T02_AllResist = new PrefabGUID(1943795419); public static readonly PrefabGUID AscendancyPassive_Frost_T03_FrostMastery = new PrefabGUID(-1877359740); public static readonly PrefabGUID AscendancyPassive_Illusion_T01_SpellCooldown = new PrefabGUID(1380208342); public static readonly PrefabGUID AscendancyPassive_Illusion_T02_ShapeshiftSpeed = new PrefabGUID(-849582362); public static readonly PrefabGUID AscendancyPassive_Illusion_T03_IllusionMastery = new PrefabGUID(522943404); public static readonly PrefabGUID AscendancyPassive_Storm_T01_AttackSpeed = new PrefabGUID(1805361793); public static readonly PrefabGUID AscendancyPassive_Storm_T02_MountSpeed = new PrefabGUID(399289260); public static readonly PrefabGUID AscendancyPassive_Storm_T03_StormMastery = new PrefabGUID(-655574135); public static readonly PrefabGUID AscendancyPassive_Unholy_T01_HealthRegen = new PrefabGUID(-2030466757); public static readonly PrefabGUID AscendancyPassive_Unholy_T02_FeedCooldown = new PrefabGUID(1178142107); public static readonly PrefabGUID AscendancyPassive_Unholy_T03_SkeletonMastery = new PrefabGUID(-392743276); public static readonly PrefabGUID Bandit_Bomber_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1186138674); public static readonly PrefabGUID Bandit_Chaosarrow_VBlood_Emote_OnAggro_Buff = new PrefabGUID(540671624); public static readonly PrefabGUID Bandit_Deadeye_Frostarrow_VBlood_Emote_OnAggro_Buff = new PrefabGUID(390591357); public static readonly PrefabGUID Bandit_Fisherman_Emote_OnAggro_Buff = new PrefabGUID(-2142887777); public static readonly PrefabGUID Bandit_Foreman_VBlood_Emote_OnAggro_Buff = new PrefabGUID(268703743); public static readonly PrefabGUID Bandit_Leader_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1341944820); public static readonly PrefabGUID Bandit_StoneBreaker_VBlood_Emote_OnAggro_Buff = new PrefabGUID(957228194); public static readonly PrefabGUID Bandit_Tourok_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1321070902); public static readonly PrefabGUID Banshee_Dash_Cast_Curve = new PrefabGUID(-375088668); public static readonly PrefabGUID BasicColors01_DyeSwatch = new PrefabGUID(-997590759); public static readonly PrefabGUID BatVampire_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-974625709); public static readonly PrefabGUID Bear_Dash_Curve = new PrefabGUID(2035387223); public static readonly PrefabGUID Bear_DashCast_Curve = new PrefabGUID(-1469618868); public static readonly PrefabGUID BEH_AngryMoose = new PrefabGUID(1254029542); public static readonly PrefabGUID BEH_ArchMage = new PrefabGUID(1218517046); public static readonly PrefabGUID BEH_ArchMage_FlameSphere = new PrefabGUID(-1756104221); public static readonly PrefabGUID BEH_ArchMage_Summon = new PrefabGUID(-1003663330); public static readonly PrefabGUID BEH_Bandit_Bomber = new PrefabGUID(-894096647); public static readonly PrefabGUID BEH_Bandit_Bomber_Servant = new PrefabGUID(-1565845791); public static readonly PrefabGUID BEH_Bandit_Bomber_VBlood = new PrefabGUID(-2059538752); public static readonly PrefabGUID BEH_Bandit_Deadeye = new PrefabGUID(-869241655); public static readonly PrefabGUID BEH_Bandit_Deadeye_Chaosarrow_VBlood = new PrefabGUID(1068852483); public static readonly PrefabGUID BEH_Bandit_Deadeye_Servant = new PrefabGUID(1968787911); public static readonly PrefabGUID BEH_Bandit_Deadeye_VBlood = new PrefabGUID(-61349024); public static readonly PrefabGUID BEH_Bandit_Fisherman_VBlood = new PrefabGUID(-386860528); public static readonly PrefabGUID BEH_Bandit_Foreman_VBlood = new PrefabGUID(957382832); public static readonly PrefabGUID BEH_Bandit_Hunter = new PrefabGUID(155658532); public static readonly PrefabGUID BEH_Bandit_Hunter_Servant = new PrefabGUID(1688158802); public static readonly PrefabGUID BEH_Bandit_Leader_VBlood = new PrefabGUID(281269854); public static readonly PrefabGUID BEH_Bandit_Leader_Wolf_Summon = new PrefabGUID(-1528391757); public static readonly PrefabGUID BEH_Bandit_Mugger = new PrefabGUID(-1665557261); public static readonly PrefabGUID BEH_Bandit_Mugger_Servant = new PrefabGUID(729068729); public static readonly PrefabGUID BEH_Bandit_Rascal = new PrefabGUID(-334328856); public static readonly PrefabGUID BEH_Bandit_Rascal_Servant = new PrefabGUID(-312441508); public static readonly PrefabGUID BEH_Bandit_Scout = new PrefabGUID(1672858554); public static readonly PrefabGUID BEH_Bandit_Scout_Servant = new PrefabGUID(786843854); public static readonly PrefabGUID BEH_Bandit_Stalker = new PrefabGUID(1846970572); public static readonly PrefabGUID BEH_Bandit_Stalker_Servant = new PrefabGUID(-1056110581); public static readonly PrefabGUID BEH_Bandit_Stalker_VBlood = new PrefabGUID(1746008604); public static readonly PrefabGUID BEH_Bandit_StoneBreaker_VBlood = new PrefabGUID(-956340614); public static readonly PrefabGUID BEH_Bandit_Thief = new PrefabGUID(1829522622); public static readonly PrefabGUID BEH_Bandit_Thief_Servant = new PrefabGUID(1399382478); public static readonly PrefabGUID BEH_Bandit_Thief_VBlood = new PrefabGUID(-284458242); public static readonly PrefabGUID BEH_Bandit_Thug = new PrefabGUID(384073359); public static readonly PrefabGUID BEH_Bandit_Thug_Servant = new PrefabGUID(-1280225571); public static readonly PrefabGUID BEH_Bandit_Tourok_VBlood = new PrefabGUID(1952994226); public static readonly PrefabGUID BEH_Bandit_Tourok_VBlood_Shadow = new PrefabGUID(1752938626); public static readonly PrefabGUID BEH_Bandit_Trapper = new PrefabGUID(1313326300); public static readonly PrefabGUID BEH_Bandit_Trapper_Servant = new PrefabGUID(2009232273); public static readonly PrefabGUID BEH_Bandit_Wolf_Standard = new PrefabGUID(1966365985); public static readonly PrefabGUID BEH_Bandit_Woodcutter_Standard_Servant = new PrefabGUID(1476817867); public static readonly PrefabGUID BEH_Bandit_Worker_Gatherer = new PrefabGUID(17237159); public static readonly PrefabGUID BEH_Bandit_Worker_Gatherer_Servant = new PrefabGUID(-1025208190); public static readonly PrefabGUID BEH_Bandit_Worker_Miner = new PrefabGUID(-187589575); public static readonly PrefabGUID BEH_Bandit_Worker_Woodcutter = new PrefabGUID(1932014234); public static readonly PrefabGUID BEH_Base = new PrefabGUID(-2038160942); public static readonly PrefabGUID BEH_BatVampire_VBlood = new PrefabGUID(-1614230419); public static readonly PrefabGUID BEH_Bear_Spirit = new PrefabGUID(-1495349146); public static readonly PrefabGUID BEH_Bear_Standard = new PrefabGUID(-1527097873); public static readonly PrefabGUID BEH_Blackfang_Alchemist = new PrefabGUID(-1410909727); public static readonly PrefabGUID BEH_Blackfang_Alchemist_Servant = new PrefabGUID(707314935); public static readonly PrefabGUID BEH_Blackfang_CarverBoss_VBlood = new PrefabGUID(-1322551720); public static readonly PrefabGUID BEH_Blackfang_DartFlinger = new PrefabGUID(1972196370); public static readonly PrefabGUID BEH_Blackfang_DartFlinger_Servant = new PrefabGUID(211576358); public static readonly PrefabGUID BEH_Blackfang_Livith_VBlood = new PrefabGUID(-1473448723); public static readonly PrefabGUID BEH_Blackfang_Lucie_VBlood = new PrefabGUID(-1198955038); public static readonly PrefabGUID BEH_Blackfang_Lurker = new PrefabGUID(713347435); public static readonly PrefabGUID BEH_Blackfang_Lurker_Servant = new PrefabGUID(378518858); public static readonly PrefabGUID BEH_Blackfang_Morgana = new PrefabGUID(1593278515); public static readonly PrefabGUID BEH_Blackfang_Peon = new PrefabGUID(207507785); public static readonly PrefabGUID BEH_Blackfang_Peon_Servant = new PrefabGUID(236513769); public static readonly PrefabGUID BEH_Blackfang_PeonCarryingBarrel = new PrefabGUID(-1734299562); public static readonly PrefabGUID BEH_Blackfang_PeonLogCarryer = new PrefabGUID(-1672148294); public static readonly PrefabGUID BEH_Blackfang_Sentinel = new PrefabGUID(565364519); public static readonly PrefabGUID BEH_Blackfang_Sentinel_Servant = new PrefabGUID(1670002558); public static readonly PrefabGUID BEH_Blackfang_Striker = new PrefabGUID(470705829); public static readonly PrefabGUID BEH_Blackfang_Striker_Servant = new PrefabGUID(265120836); public static readonly PrefabGUID BEH_Blackfang_Valyr_VBlood = new PrefabGUID(1699999713); public static readonly PrefabGUID BEH_Blackfang_ValyrCauldron = new PrefabGUID(-701803855); public static readonly PrefabGUID BEH_Blackfang_Venomblade = new PrefabGUID(1363315280); public static readonly PrefabGUID BEH_Blackfang_Venomblade_Servant = new PrefabGUID(-443635394); public static readonly PrefabGUID BEH_Blackfang_Viper = new PrefabGUID(1297283248); public static readonly PrefabGUID BEH_Blackfang_Viper_Servant = new PrefabGUID(1235132042); public static readonly PrefabGUID BEH_Blackfang_WoodCarver = new PrefabGUID(-1729879936); public static readonly PrefabGUID BEH_Blackfang_WoodCarver_Servant = new PrefabGUID(1648366455); public static readonly PrefabGUID BEH_BloodBuff_Corrupted_Angel = new PrefabGUID(1739767381); public static readonly PrefabGUID BEH_BloodBuff_Corrupted_Harpy = new PrefabGUID(-108481737); public static readonly PrefabGUID BEH_CarriageHorse = new PrefabGUID(1462803292); public static readonly PrefabGUID BEH_ChurchOfLight_Archer = new PrefabGUID(-1379188375); public static readonly PrefabGUID BEH_ChurchOfLight_Archer_Servant = new PrefabGUID(-627498699); public static readonly PrefabGUID BEH_ChurchOfLight_Cardinal_VBlood = new PrefabGUID(-238211903); public static readonly PrefabGUID BEH_ChurchOfLight_CardinalAide = new PrefabGUID(-1805807245); public static readonly PrefabGUID BEH_ChurchOfLight_Cleric = new PrefabGUID(-922681709); public static readonly PrefabGUID BEH_ChurchOfLight_Cleric_Servant = new PrefabGUID(-1973165050); public static readonly PrefabGUID BEH_ChurchOfLight_EnchantedCross = new PrefabGUID(1885205310); public static readonly PrefabGUID BEH_ChurchOfLight_Footman_Servant = new PrefabGUID(1825095219); public static readonly PrefabGUID BEH_ChurchOfLight_Knight_2H = new PrefabGUID(-1069871786); public static readonly PrefabGUID BEH_ChurchOfLight_Knight_2H_Servant = new PrefabGUID(-1987574788); public static readonly PrefabGUID BEH_ChurchOfLight_Knight_Shield_Servant = new PrefabGUID(-1925940112); public static readonly PrefabGUID BEH_ChurchOfLight_Lightweaver = new PrefabGUID(162424158); public static readonly PrefabGUID BEH_ChurchOfLight_Lightweaver_Servant = new PrefabGUID(1762861569); public static readonly PrefabGUID BEH_ChurchOfLight_Miner_Standard_Servant = new PrefabGUID(1704020704); public static readonly PrefabGUID BEH_ChurchOfLight_Overseer = new PrefabGUID(612310328); public static readonly PrefabGUID BEH_ChurchOfLight_Paladin = new PrefabGUID(-1362021934); public static readonly PrefabGUID BEH_ChurchOfLight_Paladin_Servant = new PrefabGUID(-2136359319); public static readonly PrefabGUID BEH_ChurchOfLight_Paladin_VBlood = new PrefabGUID(433100409); public static readonly PrefabGUID BEH_ChurchOfLight_Priest_Servant = new PrefabGUID(-2080114153); public static readonly PrefabGUID BEH_ChurchOfLight_Priest_Standard = new PrefabGUID(-1793485570); public static readonly PrefabGUID BEH_ChurchOfLight_Rifleman = new PrefabGUID(-1267432392); public static readonly PrefabGUID BEH_ChurchOfLight_Rifleman_Servant = new PrefabGUID(639095704); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Enforcer = new PrefabGUID(1529648266); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Enforcer_Servant = new PrefabGUID(1262415316); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Sentry = new PrefabGUID(1345996693); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Sentry_Servant = new PrefabGUID(-109653865); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveRuffian = new PrefabGUID(71256154); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveRuffian_Servant = new PrefabGUID(-1623592371); public static readonly PrefabGUID BEH_ChurchOfLight_SmiteOrb = new PrefabGUID(-1017206735); public static readonly PrefabGUID BEH_ChurchOfLight_Sommelier = new PrefabGUID(1662698420); public static readonly PrefabGUID BEH_CopperGolem = new PrefabGUID(781969948); public static readonly PrefabGUID BEH_Corrupted_Bear_Standard = new PrefabGUID(1205593970); public static readonly PrefabGUID BEH_Corrupted_Wolf = new PrefabGUID(-59860023); public static readonly PrefabGUID BEH_Cow_Standard = new PrefabGUID(-1222424706); public static readonly PrefabGUID BEH_Critter_General = new PrefabGUID(-1694538601); public static readonly PrefabGUID BEH_Cultist_Pyromancer = new PrefabGUID(1545730227); public static readonly PrefabGUID BEH_Cultist_Shapeshifter = new PrefabGUID(151114939); public static readonly PrefabGUID BEH_Cultist_Slicer = new PrefabGUID(-1356728300); public static readonly PrefabGUID BEH_Cursed_Bear_Standard = new PrefabGUID(-1554281311); public static readonly PrefabGUID BEH_Cursed_MonsterToad = new PrefabGUID(-21189901); public static readonly PrefabGUID BEH_Cursed_Mosquito = new PrefabGUID(-889406876); public static readonly PrefabGUID BEH_Cursed_MountainBeast_SpiritDouble = new PrefabGUID(-175078664); public static readonly PrefabGUID BEH_Cursed_MountainBeast_VBlood = new PrefabGUID(444838754); public static readonly PrefabGUID BEH_Cursed_ToadKing_VBlood = new PrefabGUID(-1593130676); public static readonly PrefabGUID BEH_Cursed_ToadSpitter = new PrefabGUID(-1310611967); public static readonly PrefabGUID BEH_Cursed_Witch = new PrefabGUID(-542349260); public static readonly PrefabGUID BEH_Cursed_Witch_Servant = new PrefabGUID(1410331354); public static readonly PrefabGUID BEH_Cursed_Witch_VBlood = new PrefabGUID(987360205); public static readonly PrefabGUID BEH_Cursed_Wolf = new PrefabGUID(-1413219114); public static readonly PrefabGUID BEH_CursedWanderer_VBlood = new PrefabGUID(1644201647); public static readonly PrefabGUID BEH_Dracula_BloodSoul = new PrefabGUID(1414670325); public static readonly PrefabGUID BEH_Dracula_ShadowBatSwarm = new PrefabGUID(258244584); public static readonly PrefabGUID BEH_Dracula_SpellStone_Shared = new PrefabGUID(1416080810); public static readonly PrefabGUID BEH_EmeryElemental = new PrefabGUID(1670858012); public static readonly PrefabGUID BEH_EmeryGolem = new PrefabGUID(-72754274); public static readonly PrefabGUID BEH_Farmer_Servant = new PrefabGUID(1785909256); public static readonly PrefabGUID BEH_Farmer_Standard = new PrefabGUID(600464507); public static readonly PrefabGUID BEH_Farmlands_Animal_Standard = new PrefabGUID(-1918585836); public static readonly PrefabGUID BEH_Farmlands_Nun_Servant = new PrefabGUID(1736342550); public static readonly PrefabGUID BEH_Footman_Standard = new PrefabGUID(419567663); public static readonly PrefabGUID BEH_Forest_Bear_Dire_Vblood = new PrefabGUID(1159402146); public static readonly PrefabGUID BEH_Forest_Deer = new PrefabGUID(725817843); public static readonly PrefabGUID BEH_Forest_Deer_StayCloseToSpawn = new PrefabGUID(-171376262); public static readonly PrefabGUID BEH_Forest_Wolf = new PrefabGUID(186529454); public static readonly PrefabGUID BEH_Generic_Boss_Base = new PrefabGUID(-67084163); public static readonly PrefabGUID BEH_Generic_GateBoss_Base = new PrefabGUID(1016421790); public static readonly PrefabGUID BEH_Generic_GateBoss_Melee = new PrefabGUID(-1215716718); public static readonly PrefabGUID BEH_Geomancer_Golem_Guardian = new PrefabGUID(-829692401); public static readonly PrefabGUID BEH_Geomancer_Golem_VBlood = new PrefabGUID(100270019); public static readonly PrefabGUID BEH_Geomancer_Human_VBlood = new PrefabGUID(-1484629956); public static readonly PrefabGUID BEH_Gloomrot_AceIncinerator = new PrefabGUID(1379381847); public static readonly PrefabGUID BEH_Gloomrot_AceIncinerator_Servant = new PrefabGUID(-485884150); public static readonly PrefabGUID BEH_Gloomrot_Batoon = new PrefabGUID(-920246726); public static readonly PrefabGUID BEH_Gloomrot_Batoon_Servant = new PrefabGUID(-401860247); public static readonly PrefabGUID BEH_Gloomrot_Iva = new PrefabGUID(-1988492521); public static readonly PrefabGUID BEH_Gloomrot_Monster = new PrefabGUID(943567287); public static readonly PrefabGUID BEH_Gloomrot_Purifier = new PrefabGUID(-1902453123); public static readonly PrefabGUID BEH_Gloomrot_Pyro = new PrefabGUID(904078168); public static readonly PrefabGUID BEH_Gloomrot_Pyro_Servant = new PrefabGUID(-1164304327); public static readonly PrefabGUID BEH_Gloomrot_Railgunner = new PrefabGUID(1806688895); public static readonly PrefabGUID BEH_Gloomrot_Railgunner_Servant = new PrefabGUID(505746425); public static readonly PrefabGUID BEH_Gloomrot_RailgunSergeant = new PrefabGUID(-1612217012); public static readonly PrefabGUID BEH_Gloomrot_SentryOfficer = new PrefabGUID(-398535308); public static readonly PrefabGUID BEH_Gloomrot_SentryOfficer_Servant = new PrefabGUID(629455802); public static readonly PrefabGUID BEH_Gloomrot_SentryTurret = new PrefabGUID(610665701); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_Driller = new PrefabGUID(1655724144); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_Gattler = new PrefabGUID(1009428843); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_LightningRod = new PrefabGUID(2054858693); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_Zapper = new PrefabGUID(1006621956); public static readonly PrefabGUID BEH_Gloomrot_Tazer = new PrefabGUID(1124689756); public static readonly PrefabGUID BEH_Gloomrot_Tazer_Servant = new PrefabGUID(485292408); public static readonly PrefabGUID BEH_Gloomrot_Technician = new PrefabGUID(-84097633); public static readonly PrefabGUID BEH_Gloomrot_Technician_Servant = new PrefabGUID(205365360); public static readonly PrefabGUID BEH_Gloomrot_TheProfessor_VBlood = new PrefabGUID(-938648791); public static readonly PrefabGUID BEH_Gloomrot_TractorBeamer = new PrefabGUID(869795019); public static readonly PrefabGUID BEH_Gloomrot_TractorBeamer_Servant = new PrefabGUID(-1338477081); public static readonly PrefabGUID BEH_Gloomrot_Voltage = new PrefabGUID(816206535); public static readonly PrefabGUID BEH_GoldGolem = new PrefabGUID(435261072); public static readonly PrefabGUID BEH_Harpy_Dasher = new PrefabGUID(700854431); public static readonly PrefabGUID BEH_Harpy_Dasher_Servant = new PrefabGUID(1785649567); public static readonly PrefabGUID BEH_Harpy_FeatherDuster = new PrefabGUID(1565444532); public static readonly PrefabGUID BEH_Harpy_Matriarch_VBlood = new PrefabGUID(1778109938); public static readonly PrefabGUID BEH_Harpy_Scratcher = new PrefabGUID(526073827); public static readonly PrefabGUID BEH_Harpy_Scratcher_Servant = new PrefabGUID(676017498); public static readonly PrefabGUID BEH_Harpy_Sorceress = new PrefabGUID(-1716102506); public static readonly PrefabGUID BEH_Harpy_Sorceress_Servant = new PrefabGUID(1247259485); public static readonly PrefabGUID BEH_HostileVillager_Melee = new PrefabGUID(-183901268); public static readonly PrefabGUID BEH_HostileVillager_Thrower = new PrefabGUID(359947687); public static readonly PrefabGUID BEH_Illusion_Mosquito = new PrefabGUID(972923105); public static readonly PrefabGUID BEH_IronGolem = new PrefabGUID(-2144420103); public static readonly PrefabGUID BEH_Knight_Shield = new PrefabGUID(-1093204590); public static readonly PrefabGUID BEH_Legion_Assassin = new PrefabGUID(1140793879); public static readonly PrefabGUID BEH_Legion_Assassin_Servant = new PrefabGUID(-1318433314); public static readonly PrefabGUID BEH_Legion_BatSwarm = new PrefabGUID(-843205201); public static readonly PrefabGUID BEH_Legion_BloodProphet = new PrefabGUID(73854851); public static readonly PrefabGUID BEH_Legion_BloodProphet_Lesser_Servant = new PrefabGUID(1758577300); public static readonly PrefabGUID BEH_Legion_BloodProphet_Servant = new PrefabGUID(141170653); public static readonly PrefabGUID BEH_Legion_Dreadhorn = new PrefabGUID(-1065784703); public static readonly PrefabGUID BEH_Legion_Gargoyle = new PrefabGUID(-331559941); public static readonly PrefabGUID BEH_Legion_Gargoyle_StatueSpawn = new PrefabGUID(1122749186); public static readonly PrefabGUID BEH_Legion_Guardian = new PrefabGUID(-526796105); public static readonly PrefabGUID BEH_Legion_HighLord_GroundSword = new PrefabGUID(-1939066155); public static readonly PrefabGUID BEH_Legion_NightMaiden = new PrefabGUID(1961937986); public static readonly PrefabGUID BEH_Legion_NightMaiden_Lesser_Servant = new PrefabGUID(1881256503); public static readonly PrefabGUID BEH_Legion_NightMaiden_Servant = new PrefabGUID(-1193716956); public static readonly PrefabGUID BEH_Legion_Nightmare = new PrefabGUID(64373002); public static readonly PrefabGUID BEH_Legion_Nightmare_Lesser_Servant = new PrefabGUID(1716588731); public static readonly PrefabGUID BEH_Legion_Nightmare_Servant = new PrefabGUID(930383839); public static readonly PrefabGUID BEH_Legion_Shadowkin = new PrefabGUID(-806745151); public static readonly PrefabGUID BEH_Legion_Shadowkin_Lesser_Servant = new PrefabGUID(-1123904906); public static readonly PrefabGUID BEH_Legion_Shadowkin_Servant = new PrefabGUID(-103364056); public static readonly PrefabGUID BEH_Legion_Vargulf = new PrefabGUID(987389967); public static readonly PrefabGUID BEH_Legion_Vargulf_Lesser_Servant = new PrefabGUID(-1988606738); public static readonly PrefabGUID BEH_Legion_Vargulf_Servant = new PrefabGUID(1371780669); public static readonly PrefabGUID BEH_Manticore_Airborne = new PrefabGUID(1741096858); public static readonly PrefabGUID BEH_Manticore_Vblood = new PrefabGUID(397372511); public static readonly PrefabGUID BEH_ManTrap = new PrefabGUID(1147513069); public static readonly PrefabGUID BEH_ManTrap_Corrupted = new PrefabGUID(-1625324515); public static readonly PrefabGUID BEH_ManTrap_Dull = new PrefabGUID(-2017108869); public static readonly PrefabGUID BEH_Militia_BellRinger = new PrefabGUID(283809536); public static readonly PrefabGUID BEH_Militia_BellRinger_Servant = new PrefabGUID(978317394); public static readonly PrefabGUID BEH_Militia_BishopOfDunley_VBlood = new PrefabGUID(642363204); public static readonly PrefabGUID BEH_Militia_Bomber = new PrefabGUID(-2130812904); public static readonly PrefabGUID BEH_Militia_ConstrainingPole = new PrefabGUID(1505662121); public static readonly PrefabGUID BEH_Militia_Crossbow = new PrefabGUID(1019808072); public static readonly PrefabGUID BEH_Militia_Crossbow_Servant = new PrefabGUID(273085654); public static readonly PrefabGUID BEH_Militia_Devoted = new PrefabGUID(-1913859457); public static readonly PrefabGUID BEH_Militia_Devoted_Servant = new PrefabGUID(722171876); public static readonly PrefabGUID BEH_Militia_EyeOfGod = new PrefabGUID(336013749); public static readonly PrefabGUID BEH_Militia_Fabian = new PrefabGUID(-1156763706); public static readonly PrefabGUID BEH_Militia_FabiansSteed = new PrefabGUID(-2090924587); public static readonly PrefabGUID BEH_Militia_Glassblower = new PrefabGUID(-569551557); public static readonly PrefabGUID BEH_Militia_Guard = new PrefabGUID(-1787316651); public static readonly PrefabGUID BEH_Militia_Guard_VBlood = new PrefabGUID(1054288433); public static readonly PrefabGUID BEH_Militia_Heavy = new PrefabGUID(99969076); public static readonly PrefabGUID BEH_Militia_Heavy_Servant = new PrefabGUID(910088041); public static readonly PrefabGUID BEH_Militia_Horseman = new PrefabGUID(-2022421342); public static readonly PrefabGUID BEH_Militia_Horseman_Mount = new PrefabGUID(153897816); public static readonly PrefabGUID BEH_Militia_Hound = new PrefabGUID(-1952794513); public static readonly PrefabGUID BEH_Militia_Hound_VBlood = new PrefabGUID(448493800); public static readonly PrefabGUID BEH_Militia_HoundMaster_VBlood = new PrefabGUID(2128632339); public static readonly PrefabGUID BEH_Militia_InkCrawler = new PrefabGUID(-339074487); public static readonly PrefabGUID BEH_Militia_Leader = new PrefabGUID(-1176340520); public static readonly PrefabGUID BEH_Militia_Light = new PrefabGUID(1813972936); public static readonly PrefabGUID BEH_Militia_Longbowman = new PrefabGUID(-1581894867); public static readonly PrefabGUID BEH_Militia_Longbowman_LightArrow_Vblood = new PrefabGUID(-1091569483); public static readonly PrefabGUID BEH_Militia_Longbowman_Servant = new PrefabGUID(-1290208561); public static readonly PrefabGUID BEH_Militia_Nun = new PrefabGUID(-254620402); public static readonly PrefabGUID BEH_Militia_Nun_VBlood = new PrefabGUID(-584511429); public static readonly PrefabGUID BEH_Militia_Rider = new PrefabGUID(1605659023); public static readonly PrefabGUID BEH_Militia_Rider_Mount = new PrefabGUID(-1784056249); public static readonly PrefabGUID BEH_Militia_Scribe = new PrefabGUID(968212822); public static readonly PrefabGUID BEH_Militia_Standard = new PrefabGUID(-956235191); public static readonly PrefabGUID BEH_Militia_TorchBearer = new PrefabGUID(-1912571654); public static readonly PrefabGUID BEH_Militia_Torchbearer_Servant = new PrefabGUID(1220761582); public static readonly PrefabGUID BEH_Militia_Undead_Infiltrator = new PrefabGUID(1740240804); public static readonly PrefabGUID BEH_Militia_Worker_Miner = new PrefabGUID(651363695); public static readonly PrefabGUID BEH_Miner_Servant = new PrefabGUID(1748248643); public static readonly PrefabGUID BEH_Monster_LightningPillar = new PrefabGUID(1530883924); public static readonly PrefabGUID BEH_Moose_Standard = new PrefabGUID(405737090); public static readonly PrefabGUID BEH_Mount_Horse = new PrefabGUID(-1452830984); public static readonly PrefabGUID BEH_Mutant_Bear_Standard = new PrefabGUID(-1372447475); public static readonly PrefabGUID BEH_Mutant_FleshGolem = new PrefabGUID(663193340); public static readonly PrefabGUID BEH_Mutant_Rat = new PrefabGUID(-749320115); public static readonly PrefabGUID BEH_Mutant_Spitter = new PrefabGUID(-2121728120); public static readonly PrefabGUID BEH_Mutant_Spitter_Servant = new PrefabGUID(-842495020); public static readonly PrefabGUID BEH_Mutant_Wolf = new PrefabGUID(-74111559); public static readonly PrefabGUID BEH_Nightlurker = new PrefabGUID(-1457158903); public static readonly PrefabGUID BEH_Null = new PrefabGUID(-1677799948); public static readonly PrefabGUID BEH_Ocean_Blowfish = new PrefabGUID(1385481259); public static readonly PrefabGUID BEH_Ocean_Piranha = new PrefabGUID(1359616056); public static readonly PrefabGUID BEH_Paladin_DivineAngel = new PrefabGUID(1767142686); public static readonly PrefabGUID BEH_Paladin_FallenAngel = new PrefabGUID(-134491427); public static readonly PrefabGUID BEH_Pixie = new PrefabGUID(-80440015); public static readonly PrefabGUID BEH_Poloma_VBlood = new PrefabGUID(-1566350035); public static readonly PrefabGUID BEH_RockElemental = new PrefabGUID(900390403); public static readonly PrefabGUID BEH_Scarecrow = new PrefabGUID(-776127089); public static readonly PrefabGUID BEH_SeaSerpent = new PrefabGUID(-1132970980); public static readonly PrefabGUID BEH_Shared_Crow = new PrefabGUID(-1291775531); public static readonly PrefabGUID BEH_Sommelier_BarrelMinion_Standard = new PrefabGUID(1595167720); public static readonly PrefabGUID BEH_Spectral_Guardian = new PrefabGUID(94655816); public static readonly PrefabGUID BEH_Spectral_SpellSlinger = new PrefabGUID(1908024378); public static readonly PrefabGUID BEH_Spider_Baneling = new PrefabGUID(388805852); public static readonly PrefabGUID BEH_Spider_Broodmother = new PrefabGUID(1282440184); public static readonly PrefabGUID BEH_Spider_Forest = new PrefabGUID(-1523715971); public static readonly PrefabGUID BEH_Spider_Forestling = new PrefabGUID(-1243901457); public static readonly PrefabGUID BEH_Spider_Melee = new PrefabGUID(1858219527); public static readonly PrefabGUID BEH_Spider_Queen_Vblood = new PrefabGUID(1237930104); public static readonly PrefabGUID BEH_Spider_Range = new PrefabGUID(-554572792); public static readonly PrefabGUID BEH_Spider_Spiderling = new PrefabGUID(1227531048); public static readonly PrefabGUID BEH_StoneGolem = new PrefabGUID(948628999); public static readonly PrefabGUID BEH_SUMMON_Wolf = new PrefabGUID(958877923); public static readonly PrefabGUID BEH_Tailor_Gargoyle = new PrefabGUID(232160295); public static readonly PrefabGUID BEH_Tailor_VBlood = new PrefabGUID(-1029011269); public static readonly PrefabGUID BEH_Thief_Standard = new PrefabGUID(-1430673288); public static readonly PrefabGUID BEH_Trader_Dunley_T02 = new PrefabGUID(525003942); public static readonly PrefabGUID BEH_Trader_Epic_T04 = new PrefabGUID(395389493); public static readonly PrefabGUID BEH_Trader_Farbane_Stalker_T01 = new PrefabGUID(538182877); public static readonly PrefabGUID BEH_Trader_Farbane_Thief_T01 = new PrefabGUID(-1552655452); public static readonly PrefabGUID BEH_Trader_Noctem_Major = new PrefabGUID(-1999051184); public static readonly PrefabGUID BEH_Trader_Noctem_Minor = new PrefabGUID(-755685625); public static readonly PrefabGUID BEH_Trader_Silverlight_T03 = new PrefabGUID(-443324956); public static readonly PrefabGUID BEH_TrantMantrap_Corrupted = new PrefabGUID(1891425561); public static readonly PrefabGUID BEH_Treant = new PrefabGUID(1678548761); public static readonly PrefabGUID BEH_Treant_Corrupted = new PrefabGUID(-1633968667); public static readonly PrefabGUID BEH_Undead_ArenaChampion_VBlood = new PrefabGUID(-639872266); public static readonly PrefabGUID BEH_Undead_ArmoredSkeletonCrossbow_Dunley = new PrefabGUID(-863225659); public static readonly PrefabGUID BEH_Undead_ArmoredSkeletonCrossbow_Farbane = new PrefabGUID(-829484818); public static readonly PrefabGUID BEH_Undead_Assassin = new PrefabGUID(-1707757427); public static readonly PrefabGUID BEH_Undead_BishopOfDeath_VBlood = new PrefabGUID(-789777617); public static readonly PrefabGUID BEH_Undead_BishopOfShadows_GateBoss = new PrefabGUID(-859730817); public static readonly PrefabGUID BEH_Undead_BishopOfShadows_VBlood = new PrefabGUID(1521680311); public static readonly PrefabGUID BEH_Undead_CursedSmith_FloatingWeapon_Base = new PrefabGUID(-1408876099); public static readonly PrefabGUID BEH_Undead_CursedSmith_VBlood = new PrefabGUID(1590018798); public static readonly PrefabGUID BEH_Undead_FlyingSkull = new PrefabGUID(-910885763); public static readonly PrefabGUID BEH_Undead_GhostAssassin = new PrefabGUID(162797016); public static readonly PrefabGUID BEH_Undead_GhostBanshee = new PrefabGUID(-2023094598); public static readonly PrefabGUID BEH_Undead_GhostGuardian = new PrefabGUID(1142930594); public static readonly PrefabGUID BEH_Undead_GhostMilitia_Crossbow = new PrefabGUID(911962163); public static readonly PrefabGUID BEH_Undead_GhostMilitia_Light = new PrefabGUID(335836727); public static readonly PrefabGUID BEH_Undead_GhostMilitia_Standard = new PrefabGUID(-849758229); public static readonly PrefabGUID BEH_Undead_Ghoul = new PrefabGUID(-709027789); public static readonly PrefabGUID BEH_Undead_Ghoul_Unholy_Minion = new PrefabGUID(-1596534547); public static readonly PrefabGUID BEH_Undead_Guardian = new PrefabGUID(-2045826902); public static readonly PrefabGUID BEH_Undead_Infiltrator_AfterShadow = new PrefabGUID(1749462841); public static readonly PrefabGUID BEH_Undead_Infiltrator_VBlood = new PrefabGUID(96615775); public static readonly PrefabGUID BEH_Undead_Leader = new PrefabGUID(350688287); public static readonly PrefabGUID BEH_Undead_Necromancer = new PrefabGUID(586420597); public static readonly PrefabGUID BEH_Undead_Priest = new PrefabGUID(1373194052); public static readonly PrefabGUID BEH_Undead_Priest_VBlood = new PrefabGUID(-242661990); public static readonly PrefabGUID BEH_Undead_RottenGhoul = new PrefabGUID(436314549); public static readonly PrefabGUID BEH_Undead_ShadowSoldier = new PrefabGUID(1394122777); public static readonly PrefabGUID BEH_Undead_ShadowSoldier_GateBoss = new PrefabGUID(-268669910); public static readonly PrefabGUID BEH_Undead_SkeletonApprentice = new PrefabGUID(1190623805); public static readonly PrefabGUID BEH_Undead_SkeletonCrossbow_Farbane = new PrefabGUID(1493466301); public static readonly PrefabGUID BEH_Undead_SkeletonCrossbow_Graveyard = new PrefabGUID(-712281772); public static readonly PrefabGUID BEH_Undead_SkeletonGolem = new PrefabGUID(243382278); public static readonly PrefabGUID BEH_Undead_SkeletonMage = new PrefabGUID(-2067809533); public static readonly PrefabGUID BEH_Undead_SkeletonSoldier_Armored_Dunley = new PrefabGUID(-1483703502); public static readonly PrefabGUID BEH_Undead_SkeletonSoldier_Armored_Farbane = new PrefabGUID(-1892242369); public static readonly PrefabGUID BEH_Undead_SkeletonSoldier_Withered = new PrefabGUID(1236989880); public static readonly PrefabGUID BEH_Undead_ZealousCultist_Ghost = new PrefabGUID(1395639297); public static readonly PrefabGUID BEH_Undead_ZealousCultist_VBlood = new PrefabGUID(-1236860084); public static readonly PrefabGUID BEH_Unholy_DeathKnight = new PrefabGUID(2080585865); public static readonly PrefabGUID BEH_Unholy_FallenAngel = new PrefabGUID(-1062259752); public static readonly PrefabGUID BEH_Unholy_SkeletonApprentice_Summon = new PrefabGUID(284024603); public static readonly PrefabGUID BEH_Unholy_SkeletonWarrior_Summon = new PrefabGUID(1638449571); public static readonly PrefabGUID BEH_Unholy_UnstableArachnid = new PrefabGUID(1625491073); public static readonly PrefabGUID BEH_Unholy_UnstableArachnid_Small = new PrefabGUID(1161313498); public static readonly PrefabGUID BEH_Vampire_BloodKnight = new PrefabGUID(-1750899949); public static readonly PrefabGUID BEH_Vampire_CrimsonIronMaiden = new PrefabGUID(-579938944); public static readonly PrefabGUID BEH_Vampire_Cultist = new PrefabGUID(580259360); public static readonly PrefabGUID BEH_Vampire_Cultist_Male_Servant = new PrefabGUID(987812908); public static readonly PrefabGUID BEH_Vampire_Dracula = new PrefabGUID(543339414); public static readonly PrefabGUID BEH_Vampire_Dracula_VeilOfBatsIllusion = new PrefabGUID(441362636); public static readonly PrefabGUID BEH_Vampire_HighLord_VBlood = new PrefabGUID(-767647397); public static readonly PrefabGUID BEH_Vampire_IceRanger_VBlood = new PrefabGUID(-894265904); public static readonly PrefabGUID BEH_Vampire_Withered = new PrefabGUID(-1184790773); public static readonly PrefabGUID BEH_Vermin_DireRat_VBlood = new PrefabGUID(752897267); public static readonly PrefabGUID BEH_Vermin_GiantRat = new PrefabGUID(-1921095795); public static readonly PrefabGUID BEH_VHunter_CastleMan = new PrefabGUID(-1056865179); public static readonly PrefabGUID BEH_VHunter_Jade_VBlood = new PrefabGUID(-534404918); public static readonly PrefabGUID BEH_VHunter_Leader_VBlood = new PrefabGUID(-2142076474); public static readonly PrefabGUID BEH_Villager_Female = new PrefabGUID(-1982127263); public static readonly PrefabGUID BEH_Villager_Female_ALREADY_EXISTS_2 = new PrefabGUID(-178749976); public static readonly PrefabGUID BEH_Villager_Male = new PrefabGUID(-1239097319); public static readonly PrefabGUID BEH_Villager_Male_ALREADY_EXISTS_2 = new PrefabGUID(934671321); public static readonly PrefabGUID BEH_Villager_Servant = new PrefabGUID(1051992085); public static readonly PrefabGUID BEH_Villager_Servant_ALREADY_EXISTS_2 = new PrefabGUID(611181297); public static readonly PrefabGUID BEH_Villager_Servant_Combat = new PrefabGUID(206102448); public static readonly PrefabGUID BEH_Wendigo_VBlood = new PrefabGUID(-646154887); public static readonly PrefabGUID BEH_WerewolfCheiftain_Human = new PrefabGUID(621098369); public static readonly PrefabGUID BEH_WerewolfChieftain_VBlood = new PrefabGUID(-2131084443); public static readonly PrefabGUID BEH_Wildling_Tamer_Wolf_Summon = new PrefabGUID(-1573780599); public static readonly PrefabGUID BEH_Winter_Moose_Standard = new PrefabGUID(-580237922); public static readonly PrefabGUID BEH_Winter_Wolf = new PrefabGUID(1961468296); public static readonly PrefabGUID BEH_Winter_Yeti_VBlood = new PrefabGUID(-210551232); public static readonly PrefabGUID BEH_Winter_Yeti_VBlood_GateBoss = new PrefabGUID(-1525677420); public static readonly PrefabGUID BEH_Wolf_vblood = new PrefabGUID(44468604); public static readonly PrefabGUID BEH_Woodcutter_Servant = new PrefabGUID(-1997993074); public static readonly PrefabGUID BEH_Woodcutter_Standard = new PrefabGUID(1029016575); public static readonly PrefabGUID BEH_WormTerror = new PrefabGUID(-455838153); public static readonly PrefabGUID BellCurve = new PrefabGUID(-170013695); public static readonly PrefabGUID BigBookcaseBuildMenuGroup = new PrefabGUID(1613058818); public static readonly PrefabGUID BiomePolygonUIColor_CursedForest = new PrefabGUID(1631018259); public static readonly PrefabGUID BiomePolygonUIColor_Default = new PrefabGUID(1409414103); public static readonly PrefabGUID BiomePolygonUIColor_Dunley = new PrefabGUID(245927855); public static readonly PrefabGUID BiomePolygonUIColor_ElrisSnow = new PrefabGUID(869822955); public static readonly PrefabGUID BiomePolygonUIColor_Farbane = new PrefabGUID(-193342874); public static readonly PrefabGUID BiomePolygonUIColor_General = new PrefabGUID(-302553612); public static readonly PrefabGUID BiomePolygonUIColor_GloomNorth = new PrefabGUID(1390115320); public static readonly PrefabGUID BiomePolygonUIColor_GloomSouth = new PrefabGUID(954583058); public static readonly PrefabGUID BiomePolygonUIColor_ServantThrone_Active = new PrefabGUID(73612215); public static readonly PrefabGUID BiomePolygonUIColor_ServantThrone_Selected = new PrefabGUID(1385840751); public static readonly PrefabGUID BiomePolygonUIColor_SilverHills = new PrefabGUID(1636246315); public static readonly PrefabGUID BiomePolygonUIColor_Strongblade = new PrefabGUID(-2045317702); public static readonly PrefabGUID Bipedal_Ragdoll = new PrefabGUID(-1897565068); public static readonly PrefabGUID Bipedal_Ragdoll_PLACEHOLDER = new PrefabGUID(375628372); public static readonly PrefabGUID BishopOfShadow_Hard_Wave_Curve01 = new PrefabGUID(1255342773); public static readonly PrefabGUID BishopOfShadow_Hard_Wave_Curve02 = new PrefabGUID(2015508768); public static readonly PrefabGUID Bite_Dissolve_Curve = new PrefabGUID(327780314); public static readonly PrefabGUID BlackCarpetsBuildMenuGroup01 = new PrefabGUID(-298064854); public static readonly PrefabGUID BlackCarpetsBuildMenuGroup02 = new PrefabGUID(1878965767); public static readonly PrefabGUID Blackfang_CarverBoss_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1621460256); public static readonly PrefabGUID Blackfang_Livith_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-83079183); public static readonly PrefabGUID Blackfang_Lucie_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1768911990); public static readonly PrefabGUID Blackfang_Valyr_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-256905273); public static readonly PrefabGUID BlinkCurve = new PrefabGUID(95605263); public static readonly PrefabGUID BlinkSequence = new PrefabGUID(-158039702); public static readonly PrefabGUID Blood_BloodThirst_Buff = new PrefabGUID(1391078497); public static readonly PrefabGUID Blood_Vampire_Buff_Leech = new PrefabGUID(-1246704569); public static readonly PrefabGUID Blood_Vampire_Buff_Leech_SelfHeal = new PrefabGUID(636617116); public static readonly PrefabGUID BloodCrystalNode01_Broken = new PrefabGUID(-1163099489); public static readonly PrefabGUID BloodCrystalNode01_Broken_Small = new PrefabGUID(1625687018); public static readonly PrefabGUID BloodCrystalNode02_Broken = new PrefabGUID(-1370714660); public static readonly PrefabGUID BloodCrystalNode02_Broken_Small = new PrefabGUID(317521817); public static readonly PrefabGUID BloodCrystalNode03_Broken = new PrefabGUID(1252092124); public static readonly PrefabGUID BloodCrystalNode03_Broken_Small = new PrefabGUID(-776344049); public static readonly PrefabGUID BloodHuntsData = new PrefabGUID(792499151); public static readonly PrefabGUID BloodKnight_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1124414432); public static readonly PrefabGUID BloodQualityCurve_CarriagePrisoner = new PrefabGUID(-215739674); public static readonly PrefabGUID BloodQualityCurve_DEBUG = new PrefabGUID(281810035); public static readonly PrefabGUID BloodQualityCurve_MutantAndCorrupted = new PrefabGUID(643334146); public static readonly PrefabGUID BloodQualityCurve_NormalEliteBoss_Early = new PrefabGUID(-218705525); public static readonly PrefabGUID BloodQualityCurve_NormalEliteBoss_End = new PrefabGUID(-1026816183); public static readonly PrefabGUID BloodQualityCurve_NormalEliteBoss_Mid = new PrefabGUID(-1906812676); public static readonly PrefabGUID BloodQualityCurve_Summons = new PrefabGUID(208564996); public static readonly PrefabGUID BloodQualityCurve_Trash_High = new PrefabGUID(-927713464); public static readonly PrefabGUID BloodQualityCurve_Trash_Low = new PrefabGUID(483813580); public static readonly PrefabGUID BloodQualityCurve_Trash_Mid = new PrefabGUID(1710722644); public static readonly PrefabGUID BloodQualityCurve_Werwolf = new PrefabGUID(-1869935024); public static readonly PrefabGUID BloodSpellSchoolAsset = new PrefabGUID(969332277); public static readonly PrefabGUID BloodType_Brute = new PrefabGUID(804798592); public static readonly PrefabGUID BloodType_Corruption = new PrefabGUID(-1382693416); public static readonly PrefabGUID BloodType_Creature = new PrefabGUID(524822543); public static readonly PrefabGUID BloodType_DraculaTheImmortal = new PrefabGUID(2010023718); public static readonly PrefabGUID BloodType_Draculin = new PrefabGUID(1328126535); public static readonly PrefabGUID BloodType_GateBoss = new PrefabGUID(910644396); public static readonly PrefabGUID BloodType_Mutant = new PrefabGUID(1821108694); public static readonly PrefabGUID BloodType_None = new PrefabGUID(447918373); public static readonly PrefabGUID BloodType_Rogue = new PrefabGUID(-1620185637); public static readonly PrefabGUID BloodType_Scholar = new PrefabGUID(1476452791); public static readonly PrefabGUID BloodType_VBlood = new PrefabGUID(-338774148); public static readonly PrefabGUID BloodType_Warrior = new PrefabGUID(-516976528); public static readonly PrefabGUID BloodType_Worker = new PrefabGUID(-1776904174); public static readonly PrefabGUID BlueCarpetsBuildMenuGroup01 = new PrefabGUID(362468619); public static readonly PrefabGUID BlueCarpetsBuildMenuGroup02 = new PrefabGUID(1119417253); public static readonly PrefabGUID BookcaseBuildMenuGroup = new PrefabGUID(182850006); public static readonly PrefabGUID BP_Castle_Chain_Plant_BleedingHeart = new PrefabGUID(-1473915226); public static readonly PrefabGUID BP_Castle_Chain_Plant_BloodRose = new PrefabGUID(-591319789); public static readonly PrefabGUID BP_Castle_Chain_Plant_CorruptedFlower = new PrefabGUID(1655131947); public static readonly PrefabGUID BP_Castle_Chain_Plant_Cotton = new PrefabGUID(1171326100); public static readonly PrefabGUID BP_Castle_Chain_Plant_FireBlossom = new PrefabGUID(1141816596); public static readonly PrefabGUID BP_Castle_Chain_Plant_GhostShroom = new PrefabGUID(-947749857); public static readonly PrefabGUID BP_Castle_Chain_Plant_Grapes = new PrefabGUID(-486047789); public static readonly PrefabGUID BP_Castle_Chain_Plant_HellsClarion = new PrefabGUID(-1946047422); public static readonly PrefabGUID BP_Castle_Chain_Plant_Lotus = new PrefabGUID(1230409568); public static readonly PrefabGUID BP_Castle_Chain_Plant_MourningLily = new PrefabGUID(-1057579736); public static readonly PrefabGUID BP_Castle_Chain_Plant_SnowFlower = new PrefabGUID(-1475317620); public static readonly PrefabGUID BP_Castle_Chain_Plant_Sunflower = new PrefabGUID(1659865297); public static readonly PrefabGUID BP_Castle_Chain_Plant_Thistle = new PrefabGUID(-437194426); public static readonly PrefabGUID BP_Castle_Chain_Plant_TrippyShroom = new PrefabGUID(1228922848); public static readonly PrefabGUID BP_Castle_Chain_Tree_AppleCursed_01 = new PrefabGUID(-315187808); public static readonly PrefabGUID BP_Castle_Chain_Tree_AppleTree_01 = new PrefabGUID(-1362642773); public static readonly PrefabGUID BP_Castle_Chain_Tree_Aspen_01 = new PrefabGUID(-683262945); public static readonly PrefabGUID BP_Castle_Chain_Tree_AspenAutum_01 = new PrefabGUID(1072528933); public static readonly PrefabGUID BP_Castle_Chain_Tree_Birch_01 = new PrefabGUID(-355620152); public static readonly PrefabGUID BP_Castle_Chain_Tree_BirchAutum_01 = new PrefabGUID(500254158); public static readonly PrefabGUID BP_Castle_Chain_Tree_CherryBlossom_01 = new PrefabGUID(1646702119); public static readonly PrefabGUID BP_Castle_Chain_Tree_CherryBlossomWhite_01 = new PrefabGUID(148077443); public static readonly PrefabGUID BP_Castle_Chain_Tree_Cypress_01 = new PrefabGUID(308236778); public static readonly PrefabGUID BP_Castle_Chain_Tree_GloomTree_01 = new PrefabGUID(-1523660086); public static readonly PrefabGUID BP_Castle_Chain_Tree_Oak_01 = new PrefabGUID(75711340); public static readonly PrefabGUID BP_Castle_Chain_Tree_Spruce_01 = new PrefabGUID(1218240817); public static readonly PrefabGUID BP_Castle_Chain_Tree_WeepingWillow_01 = new PrefabGUID(851064037); public static readonly PrefabGUID BP_Castle_Debug_ArtQualityBenchmarkRoom = new PrefabGUID(-1222017586); public static readonly PrefabGUID BP_Castle_Debug_Room = new PrefabGUID(-1773550381); public static readonly PrefabGUID BP_Castle_Debug_RoomBig = new PrefabGUID(1156555349); public static readonly PrefabGUID BP_Castle_Debug_RoomMega = new PrefabGUID(-1787902947); public static readonly PrefabGUID BP_Castle_Stairs_Double_DLC_Gloomrot01 = new PrefabGUID(-1940654627); public static readonly PrefabGUID BP_Castle_Stairs_Double_DLC_ProjectK01 = new PrefabGUID(384472583); public static readonly PrefabGUID BP_Castle_Stairs_Double_DLC_StrongbladeDLC01 = new PrefabGUID(-2042297302); public static readonly PrefabGUID BP_Castle_Stairs_Double_Stone01 = new PrefabGUID(77571580); public static readonly PrefabGUID BP_Castle_Stairs_Double_Stone02 = new PrefabGUID(-887317616); public static readonly PrefabGUID BP_Castle_Stairs_Double_Stone03 = new PrefabGUID(-1186795702); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_DLC_Gloomrot01 = new PrefabGUID(249484894); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_DLC_ProjectK01 = new PrefabGUID(787873859); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_DLC_StrongbladeDLC01 = new PrefabGUID(1748214728); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_Stone01 = new PrefabGUID(-1323146211); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_Stone02 = new PrefabGUID(171455823); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_Stone03 = new PrefabGUID(2042236287); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_DLC_Gloomrot01 = new PrefabGUID(-671167268); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_DLC_ProjectK01 = new PrefabGUID(-2111252824); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_DLC_StrongbladeDLC01 = new PrefabGUID(54801101); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_Stone01 = new PrefabGUID(-628212401); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_Stone02 = new PrefabGUID(891240110); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_Stone03 = new PrefabGUID(1737385414); public static readonly PrefabGUID BP_Castle_Stairs_Single_DLC_Gloomrot01 = new PrefabGUID(-1808336362); public static readonly PrefabGUID BP_Castle_Stairs_Single_DLC_ProjectK01 = new PrefabGUID(-601630508); public static readonly PrefabGUID BP_Castle_Stairs_Single_DLC_StrongbladeDLC01 = new PrefabGUID(1831814293); public static readonly PrefabGUID BP_Castle_Stairs_Single_Stone01 = new PrefabGUID(-541385494); public static readonly PrefabGUID BP_Castle_Stairs_Single_Stone02 = new PrefabGUID(1267405974); public static readonly PrefabGUID BP_Castle_Stairs_Single_Stone03 = new PrefabGUID(1019577856); public static readonly PrefabGUID BP_Castle_Wall_Tier01_Wood_Entrance = new PrefabGUID(106693260); public static readonly PrefabGUID BP_Castle_Wall_Tier01_Wood_Plain = new PrefabGUID(-1571980899); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_Entrance = new PrefabGUID(-281098336); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_EntranceWide = new PrefabGUID(1361610591); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_Plain = new PrefabGUID(1388232656); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_Window = new PrefabGUID(244714081); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Damaged = new PrefabGUID(1031613102); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Default = new PrefabGUID(2130133165); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Disabled = new PrefabGUID(1975715760); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Phased = new PrefabGUID(-578365329); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Base = new PrefabGUID(-383968909); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Pillar = new PrefabGUID(133356148); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Wall01 = new PrefabGUID(717524512); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Wall02 = new PrefabGUID(777443944); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Wall03 = new PrefabGUID(-1288113966); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone01 = new PrefabGUID(-332335770); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone01_Base = new PrefabGUID(41087088); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone01_Pillar = new PrefabGUID(1941863906); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone02 = new PrefabGUID(-1154737300); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone02_Pillar = new PrefabGUID(1993653084); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone03 = new PrefabGUID(-1387492893); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone03_Pillar = new PrefabGUID(-266828070); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical01_Clean01 = new PrefabGUID(-176364362); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical01_Clean02 = new PrefabGUID(489743200); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical01_Pillar = new PrefabGUID(-1170288721); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical02_Clean01 = new PrefabGUID(1148782162); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical02_Clean02 = new PrefabGUID(1618613889); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical02_Pillar = new PrefabGUID(1194814288); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical03_Clean01 = new PrefabGUID(1409791469); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical03_Clean02 = new PrefabGUID(1397392538); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical03_Pillar = new PrefabGUID(46931570); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Base = new PrefabGUID(1899348267); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Clean = new PrefabGUID(-1833888637); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Flourish = new PrefabGUID(1461020066); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Pillar = new PrefabGUID(-429864038); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Wallpaper = new PrefabGUID(1946862360); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Damaged = new PrefabGUID(-1727028370); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Damaged_Pillar = new PrefabGUID(514475486); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Default = new PrefabGUID(2077581638); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Default_Pillar = new PrefabGUID(-1939815127); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Disabled = new PrefabGUID(1415207415); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Disabled_Pillar = new PrefabGUID(-823955345); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_01 = new PrefabGUID(-1119089472); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_02 = new PrefabGUID(-534388394); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_Base = new PrefabGUID(1690544659); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_Pillar = new PrefabGUID(-1601728225); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal01_Base = new PrefabGUID(1340269648); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal01_Pillar = new PrefabGUID(223872087); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal01_Wall01 = new PrefabGUID(-1148467159); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal02_Base = new PrefabGUID(-277386175); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal02_Pillar = new PrefabGUID(2027991438); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal02_Wall01 = new PrefabGUID(-1375591798); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Halloween01_01 = new PrefabGUID(-971200685); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Halloween01_02 = new PrefabGUID(1031586093); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_Base = new PrefabGUID(2097261851); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_Clean = new PrefabGUID(1407127248); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_FullWallpaper01 = new PrefabGUID(-1053577725); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_HalfWallpaper01 = new PrefabGUID(-1035617074); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_Pillar = new PrefabGUID(-1880912080); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Phased = new PrefabGUID(1132666075); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Phased_Pillar = new PrefabGUID(-47000616); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Base = new PrefabGUID(-1490769381); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_BedAndBall = new PrefabGUID(-973740076); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Clean = new PrefabGUID(-1951528690); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Pillar = new PrefabGUID(761818190); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Restraints = new PrefabGUID(227796889); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Clean = new PrefabGUID(-1268733747); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Clean_Pillar = new PrefabGUID(1363241567); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Corners = new PrefabGUID(1327946026); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Expansion = new PrefabGUID(-739519538); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Expansion_Pillar = new PrefabGUID(1259530332); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Left = new PrefabGUID(1199070093); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Middle = new PrefabGUID(1105868982); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Right = new PrefabGUID(523616828); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Base = new PrefabGUID(-2080336936); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Pillar = new PrefabGUID(2118134686); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Wall01 = new PrefabGUID(628257701); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Wall02 = new PrefabGUID(1742424551); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Base = new PrefabGUID(986381883); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Pillar = new PrefabGUID(2071956520); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Wall01 = new PrefabGUID(1940345151); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Wall02 = new PrefabGUID(1122908926); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Base = new PrefabGUID(-2037530823); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Pillar = new PrefabGUID(-1860752815); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Wall01 = new PrefabGUID(-1813563573); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Wall02 = new PrefabGUID(880930151); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Wall03 = new PrefabGUID(961341537); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_01 = new PrefabGUID(1927754471); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_02 = new PrefabGUID(-792881390); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_Base = new PrefabGUID(1177172454); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_Pillar = new PrefabGUID(70614813); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_Base = new PrefabGUID(-2053707412); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_Clean = new PrefabGUID(-809474821); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_Pillar = new PrefabGUID(-1932179375); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_ToolStorage = new PrefabGUID(-1993386353); public static readonly PrefabGUID BraziersCabalBuildMenuGroup = new PrefabGUID(-1568146726); public static readonly PrefabGUID BraziersGloomrot01BuildMenuGroup = new PrefabGUID(-141455193); public static readonly PrefabGUID BraziersGothic01BuildMenuGroup = new PrefabGUID(-1943381801); public static readonly PrefabGUID BraziersGothic02BuildMenuGroup = new PrefabGUID(714622661); public static readonly PrefabGUID BraziersGothic03BuildMenuGroup = new PrefabGUID(-1645177437); public static readonly PrefabGUID BraziersGothic04BuildMenuGroup = new PrefabGUID(1646684466); public static readonly PrefabGUID BraziersGothic05BuildMenuGroup = new PrefabGUID(-908684023); public static readonly PrefabGUID BraziersHalloween01BuildMenuGroup = new PrefabGUID(-2070329428); public static readonly PrefabGUID BraziersLavishBuildMenuGroup = new PrefabGUID(-632939658); public static readonly PrefabGUID BraziersSimpleBuildMenuGroup = new PrefabGUID(602377383); public static readonly PrefabGUID BraziersSlenderBuildMenuGroup = new PrefabGUID(2015325919); public static readonly PrefabGUID Buff_ArchMage_VBlood_Downed = new PrefabGUID(-726799934); public static readonly PrefabGUID Buff_AreaChampion_Defeated = new PrefabGUID(355001615); public static readonly PrefabGUID Buff_Arena_Active = new PrefabGUID(-1521659867); public static readonly PrefabGUID Buff_Arena_Defeated = new PrefabGUID(1206046273); public static readonly PrefabGUID Buff_Arena_Defeated_Feedback = new PrefabGUID(938455847); public static readonly PrefabGUID Buff_Arena_HealthOrb_HealBuff = new PrefabGUID(1787994047); public static readonly PrefabGUID Buff_Arena_HealthOrb_Spawning = new PrefabGUID(-1896011542); public static readonly PrefabGUID Buff_Arena_HealUp = new PrefabGUID(-814775884); public static readonly PrefabGUID Buff_Arena_LeavingArea = new PrefabGUID(-274872479); public static readonly PrefabGUID Buff_Arena_Observe_Ghost = new PrefabGUID(-1735491254); public static readonly PrefabGUID Buff_Arena_Start = new PrefabGUID(1265171709); public static readonly PrefabGUID Buff_Arena_Travel_Countdown = new PrefabGUID(-1225779136); public static readonly PrefabGUID Buff_Arena_TravelEnd = new PrefabGUID(768440011); public static readonly PrefabGUID Buff_Arena_Victory = new PrefabGUID(-1743992096); public static readonly PrefabGUID Buff_AttackSpeed_After_Veil = new PrefabGUID(1971505894); public static readonly PrefabGUID Buff_Bandit_Bomber_VBlood_Downed = new PrefabGUID(761242835); public static readonly PrefabGUID Buff_Bandit_Deadeye_VBlood_Downed = new PrefabGUID(1871586579); public static readonly PrefabGUID Buff_Bandit_Fisherman_VBlood_Downed = new PrefabGUID(1759053294); public static readonly PrefabGUID Buff_Bandit_Foreman_VBlood_Downed = new PrefabGUID(-1996490428); public static readonly PrefabGUID Buff_Bandit_Stalker_VBlood_Downed = new PrefabGUID(734435586); public static readonly PrefabGUID Buff_Bandit_Tourok_VBlood_Downed = new PrefabGUID(306968651); public static readonly PrefabGUID Buff_Bandit_Worker_Shared_Wounded = new PrefabGUID(-1169480604); public static readonly PrefabGUID Buff_BatVampire_InCombat = new PrefabGUID(-1818876607); public static readonly PrefabGUID Buff_BatVampire_VBlood_Downed = new PrefabGUID(846762364); public static readonly PrefabGUID Buff_Bear_Eating = new PrefabGUID(-1776257989); public static readonly PrefabGUID Buff_BearTrap_Immobilize = new PrefabGUID(-1293035921); public static readonly PrefabGUID Buff_Blackfang_Morgana_Downed = new PrefabGUID(194798727); public static readonly PrefabGUID Buff_Blackfang_Morgana_InCombat = new PrefabGUID(-776252955); public static readonly PrefabGUID Buff_Blackfang_Morgana_Return = new PrefabGUID(1902427906); public static readonly PrefabGUID Buff_Blackfang_Valyr_InCombat = new PrefabGUID(-1155858548); public static readonly PrefabGUID Buff_Blackfang_Valyr_VBlood_Downed = new PrefabGUID(1382689617); public static readonly PrefabGUID Buff_BloodAltar_TrackVBloodUnit = new PrefabGUID(-1458480041); public static readonly PrefabGUID Buff_BloodBuff_Brute_Tier4_Parry = new PrefabGUID(1096233037); public static readonly PrefabGUID Buff_BloodBuff_Brute_Tier4_Proc = new PrefabGUID(-646796985); public static readonly PrefabGUID Buff_BloodBuff_Corrupted_Tier3_Frenzy = new PrefabGUID(-1729712579); public static readonly PrefabGUID Buff_BloodBuff_Corruption_Tier3_TriggerEffect = new PrefabGUID(1805583648); public static readonly PrefabGUID Buff_BloodBuff_Creature_Tier4_Empower = new PrefabGUID(-604757170); public static readonly PrefabGUID Buff_BloodBuff_Draculin_Tier2_Haste = new PrefabGUID(-1343226660); public static readonly PrefabGUID Buff_BloodBuff_Rogue_Tier2_Haste = new PrefabGUID(-2025112262); public static readonly PrefabGUID Buff_BloodBuff_Rogue_Tier3_CriticalStrike = new PrefabGUID(1536493953); public static readonly PrefabGUID Buff_BloodBuff_Scholar_Tier2_Shield = new PrefabGUID(-231593873); public static readonly PrefabGUID Buff_BloodBuff_Worker_Tier4_FadingHaste = new PrefabGUID(2131895379); public static readonly PrefabGUID Buff_BloodFountain_FadingHaste = new PrefabGUID(219224509); public static readonly PrefabGUID Buff_BloodMoon = new PrefabGUID(-560523291); public static readonly PrefabGUID Buff_BloodPropher_Hover_Buff = new PrefabGUID(-1083643277); public static readonly PrefabGUID Buff_Building_Siege_ActivationTimer_Buff_T02 = new PrefabGUID(-1602570831); public static readonly PrefabGUID Buff_Building_Siege_Active_Buff = new PrefabGUID(40754527); public static readonly PrefabGUID Buff_Cardinal_Shield_Stack = new PrefabGUID(636817215); public static readonly PrefabGUID Buff_CarriageDriver_Attach = new PrefabGUID(-1270684727); public static readonly PrefabGUID Buff_CarriageDriver_Cover = new PrefabGUID(-1103206953); public static readonly PrefabGUID Buff_CarriageDriver_Launch = new PrefabGUID(-245162677); public static readonly PrefabGUID Buff_CarriageDriver_LaunchStun = new PrefabGUID(1775457958); public static readonly PrefabGUID Buff_CarriageHorse_Connect = new PrefabGUID(1084521444); public static readonly PrefabGUID Buff_Castleman_VBlood_Downed = new PrefabGUID(-1662822036); public static readonly PrefabGUID Buff_ChurchOfLight_Cardinal_VBlood_Downed = new PrefabGUID(334972667); public static readonly PrefabGUID Buff_ChurchOfLight_CardinalAide_Block_HasBlocked = new PrefabGUID(859409812); public static readonly PrefabGUID Buff_ChurchOfLight_Cleric_Block_HasBlocked = new PrefabGUID(1896858104); public static readonly PrefabGUID Buff_ChurchOfLight_Cleric_Intervene_Shield = new PrefabGUID(514720473); public static readonly PrefabGUID Buff_ChurchOfLight_Flee_Bellringer = new PrefabGUID(-1202486333); public static readonly PrefabGUID Buff_ChurchOfLight_Flee_Villager_Female = new PrefabGUID(111464415); public static readonly PrefabGUID Buff_ChurchOfLight_Flee_Villager_Male = new PrefabGUID(1904904415); public static readonly PrefabGUID Buff_ChurchOfLight_Knight_2H_MovementUsed = new PrefabGUID(-2109458830); public static readonly PrefabGUID Buff_ChurchOfLight_Overseer_MinionAggro = new PrefabGUID(-1787328614); public static readonly PrefabGUID Buff_ChurchOfLight_Overseer_VBlood_Downed = new PrefabGUID(1136634549); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_FinalStageBuff = new PrefabGUID(2144624015); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_ImmaterialHomePos = new PrefabGUID(293087822); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_OnAggroAnimation = new PrefabGUID(-1299085096); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_Return = new PrefabGUID(-1435372081); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_VBlood_Downed = new PrefabGUID(351185022); public static readonly PrefabGUID Buff_ChurchOfLight_SlaveMaster_HideWhip_Buff = new PrefabGUID(-1104282069); public static readonly PrefabGUID Buff_ChurchOfLight_Sommelier_VBlood_Downed = new PrefabGUID(-2037971116); public static readonly PrefabGUID Buff_ChurchOfLight_Villager_Cover_Female = new PrefabGUID(1423858323); public static readonly PrefabGUID Buff_ChurchOfLight_Villager_Cover_Male = new PrefabGUID(-167087059); public static readonly PrefabGUID Buff_CombatStance = new PrefabGUID(-952067173); public static readonly PrefabGUID Buff_ComboBuffA = new PrefabGUID(-960097294); public static readonly PrefabGUID Buff_ComboBuffB = new PrefabGUID(917058375); public static readonly PrefabGUID Buff_ComboBuffB2 = new PrefabGUID(1082027099); public static readonly PrefabGUID Buff_ComboBuffC = new PrefabGUID(-1018709766); public static readonly PrefabGUID Buff_Contest_Countdown = new PrefabGUID(-782266626); public static readonly PrefabGUID Buff_Contest_Defeated = new PrefabGUID(1544645586); public static readonly PrefabGUID Buff_Contest_HealUp = new PrefabGUID(835690470); public static readonly PrefabGUID Buff_Contest_OutOfArea = new PrefabGUID(-964147691); public static readonly PrefabGUID Buff_Contest_Victory = new PrefabGUID(1516078366); public static readonly PrefabGUID Buff_Corruption_HarpyEffect = new PrefabGUID(-2084519380); public static readonly PrefabGUID Buff_Cultist_BloodFrenzy_Buff = new PrefabGUID(-106492795); public static readonly PrefabGUID Buff_Cursed_MonsterToad_VBlood_Downed = new PrefabGUID(-415035829); public static readonly PrefabGUID Buff_Cursed_MountainBeast_VBlood_Downed = new PrefabGUID(1853113733); public static readonly PrefabGUID Buff_Cursed_Witch_VBlood_Downed = new PrefabGUID(1739795357); public static readonly PrefabGUID Buff_CursedWanderer_VBlood_Flee = new PrefabGUID(573463911); public static readonly PrefabGUID Buff_Delayed_Coffin_Destroy = new PrefabGUID(2096715241); public static readonly PrefabGUID Buff_Devoted_CircleMovement = new PrefabGUID(-581099651); public static readonly PrefabGUID Buff_Downed_CarverBoss_VBlood = new PrefabGUID(-2026519961); public static readonly PrefabGUID Buff_Downed_Livith_VBlood = new PrefabGUID(1072109427); public static readonly PrefabGUID Buff_Downed_Lucie_VBlood = new PrefabGUID(-1117809650); public static readonly PrefabGUID Buff_Dracula_BloodSoul_Effect = new PrefabGUID(1814805925); public static readonly PrefabGUID Buff_Dracula_BloodSoul_Heart_Effect = new PrefabGUID(251142117); public static readonly PrefabGUID Buff_Dracula_Return = new PrefabGUID(-1448806401); public static readonly PrefabGUID Buff_Dracula_ShadowBatSwarm_Effect = new PrefabGUID(-855125670); public static readonly PrefabGUID Buff_Duel_Active = new PrefabGUID(508104437); public static readonly PrefabGUID Buff_Duel_Active_VBlood = new PrefabGUID(1364946010); public static readonly PrefabGUID Buff_Duel_Defeated = new PrefabGUID(2029766917); public static readonly PrefabGUID Buff_Duel_HealUp = new PrefabGUID(577687477); public static readonly PrefabGUID Buff_Duel_Victory = new PrefabGUID(-1497879222); public static readonly PrefabGUID Buff_Elemental_Active_Base = new PrefabGUID(-1124158800); public static readonly PrefabGUID Buff_Farbane_Trader_HideBackbling = new PrefabGUID(1871900432); public static readonly PrefabGUID Buff_Farbane_Trader_HideWeapons = new PrefabGUID(-724071729); public static readonly PrefabGUID Buff_Footman_MovementUsed = new PrefabGUID(1967011140); public static readonly PrefabGUID Buff_Forest_Bear_Dire_VBlood_Downed = new PrefabGUID(1795477728); public static readonly PrefabGUID Buff_Forest_Wolf_VBlood_Downed = new PrefabGUID(-1288467635); public static readonly PrefabGUID Buff_FreeCast_Spell = new PrefabGUID(-650272969); public static readonly PrefabGUID Buff_FreeCast_Weapon = new PrefabGUID(651199070); public static readonly PrefabGUID Buff_Gargoyle_Return_Fly = new PrefabGUID(57563218); public static readonly PrefabGUID Buff_Gargoyle_Spawn_StoneForm = new PrefabGUID(1308173333); public static readonly PrefabGUID Buff_General_Amplify = new PrefabGUID(128529083); public static readonly PrefabGUID Buff_General_AttackSpeed_Rampage = new PrefabGUID(-822514423); public static readonly PrefabGUID Buff_General_BloodBuff_RogueAmplify = new PrefabGUID(-752572494); public static readonly PrefabGUID Buff_General_BloodBuff_SpelllCooldownReduction = new PrefabGUID(1776067756); public static readonly PrefabGUID Buff_General_BounceDelay = new PrefabGUID(1097461278); public static readonly PrefabGUID Buff_General_Build_Spawn_Buff_Immaterial = new PrefabGUID(1360141727); public static readonly PrefabGUID Buff_General_Build_Spawn_Buff_WeakStructure = new PrefabGUID(237078863); public static readonly PrefabGUID Buff_General_Build_Spawn_Buff_WeakStructure_Wall = new PrefabGUID(740689171); public static readonly PrefabGUID Buff_General_ChanceToCorruptBlood = new PrefabGUID(1524978405); public static readonly PrefabGUID Buff_General_Chill = new PrefabGUID(-1974768686); public static readonly PrefabGUID Buff_General_Corruption_Area_Debuff_T01 = new PrefabGUID(1161592782); public static readonly PrefabGUID Buff_General_Corruption_Area_Debuff_T01_Healing = new PrefabGUID(1124447451); public static readonly PrefabGUID Buff_General_Corruption_Area_T01 = new PrefabGUID(1667590738); public static readonly PrefabGUID Buff_General_Corruption_Area_T01_Healing = new PrefabGUID(-509302623); public static readonly PrefabGUID Buff_General_CurseOfTheForest_Area = new PrefabGUID(821183186); public static readonly PrefabGUID Buff_General_CurseOfTheForest_Area_Visual = new PrefabGUID(1609440778); public static readonly PrefabGUID Buff_General_Daze = new PrefabGUID(792451792); public static readonly PrefabGUID Buff_General_Disconnected = new PrefabGUID(1769215014); public static readonly PrefabGUID Buff_General_DisconnectedTemporaryImmunity = new PrefabGUID(915954162); public static readonly PrefabGUID Buff_General_DraculaTeleport_Exit = new PrefabGUID(-788283426); public static readonly PrefabGUID Buff_General_DraculaTeleport_In = new PrefabGUID(-1413417542); public static readonly PrefabGUID Buff_General_DraculaTeleport_InPhasing = new PrefabGUID(-1274886518); public static readonly PrefabGUID Buff_General_DraculaTeleport_Out = new PrefabGUID(-246759104); public static readonly PrefabGUID Buff_General_EndGameCredits = new PrefabGUID(260113502); public static readonly PrefabGUID Buff_General_Entangled = new PrefabGUID(-1270359452); public static readonly PrefabGUID Buff_General_FadingHaste = new PrefabGUID(-1911970959); public static readonly PrefabGUID Buff_General_FadingSnare = new PrefabGUID(1276262777); public static readonly PrefabGUID Buff_General_Fear = new PrefabGUID(695136154); public static readonly PrefabGUID Buff_General_Fear_Crossbow_Unique = new PrefabGUID(-1275760407); public static readonly PrefabGUID Buff_General_FearWithoutDamageCap = new PrefabGUID(1416250466); public static readonly PrefabGUID Buff_General_Freeze = new PrefabGUID(-948292568); public static readonly PrefabGUID Buff_General_Freeze_HighDamageTreshold = new PrefabGUID(399565845); public static readonly PrefabGUID Buff_General_Garlic_Area_Inside = new PrefabGUID(-1701323826); public static readonly PrefabGUID Buff_General_Garlic_Fever = new PrefabGUID(1582196539); public static readonly PrefabGUID Buff_General_Ghost = new PrefabGUID(-1242403012); public static readonly PrefabGUID Buff_General_Gloomrot_LightningFadingSnare = new PrefabGUID(-741376672); public static readonly PrefabGUID Buff_General_Gloomrot_LightningStun = new PrefabGUID(469128628); public static readonly PrefabGUID Buff_General_Gloomrot_Static = new PrefabGUID(-2067402784); public static readonly PrefabGUID Buff_General_Haste = new PrefabGUID(900030866); public static readonly PrefabGUID Buff_General_Haste_TurbulentVelocity = new PrefabGUID(415557996); public static readonly PrefabGUID Buff_General_HideCorpse = new PrefabGUID(1160901934); public static readonly PrefabGUID Buff_General_Holy_Area_T01 = new PrefabGUID(1593142604); public static readonly PrefabGUID Buff_General_Holy_Area_T02 = new PrefabGUID(-621774510); public static readonly PrefabGUID Buff_General_Ignite = new PrefabGUID(1533067119); public static readonly PrefabGUID Buff_General_IgniteLesser = new PrefabGUID(-756302728); public static readonly PrefabGUID Buff_General_Immaterial = new PrefabGUID(227784838); public static readonly PrefabGUID Buff_General_Immobilize = new PrefabGUID(-1548063130); public static readonly PrefabGUID Buff_General_InAir_Landing = new PrefabGUID(129112290); public static readonly PrefabGUID Buff_General_Incapacitate = new PrefabGUID(-211448091); public static readonly PrefabGUID Buff_General_Incapacitate_ImpactFX = new PrefabGUID(796254181); public static readonly PrefabGUID Buff_General_Incapacitate_ImpactFX_NoDiminishingReturn = new PrefabGUID(552294046); public static readonly PrefabGUID Buff_General_Knockback = new PrefabGUID(-984195038); public static readonly PrefabGUID Buff_General_Knockback_Ally = new PrefabGUID(-2099203048); public static readonly PrefabGUID Buff_General_Knockback_ExpandFire = new PrefabGUID(-319767548); public static readonly PrefabGUID Buff_General_Knockback_ThousandSpears = new PrefabGUID(-635140644); public static readonly PrefabGUID Buff_General_Knockback_WallTrigger = new PrefabGUID(-1483130162); public static readonly PrefabGUID Buff_General_Knockback_Wind = new PrefabGUID(-1505593036); public static readonly PrefabGUID Buff_General_LockRotation = new PrefabGUID(-814835059); public static readonly PrefabGUID Buff_General_Mount_Rider_Attach = new PrefabGUID(-1890374947); public static readonly PrefabGUID Buff_General_NoAnimationKnockback = new PrefabGUID(-1266751732); public static readonly PrefabGUID Buff_General_OnStruck_InternalCooldownBuff = new PrefabGUID(-542839565); public static readonly PrefabGUID Buff_General_Petrify = new PrefabGUID(1161081043); public static readonly PrefabGUID Buff_General_Phasing = new PrefabGUID(-79611032); public static readonly PrefabGUID Buff_General_Poison = new PrefabGUID(1728652937); public static readonly PrefabGUID Buff_General_PvPProtected = new PrefabGUID(1111481396); public static readonly PrefabGUID Buff_General_RelicCarryDebuff = new PrefabGUID(-714279777); public static readonly PrefabGUID Buff_General_Seat_Busy = new PrefabGUID(1845376969); public static readonly PrefabGUID Buff_General_SelfStun = new PrefabGUID(-704735901); public static readonly PrefabGUID Buff_General_SemiTransparent = new PrefabGUID(1511101848); public static readonly PrefabGUID Buff_General_Shapeshift_Werewolf_Standard = new PrefabGUID(-1598161201); public static readonly PrefabGUID Buff_General_Shapeshift_Werewolf_VBlood = new PrefabGUID(-622259665); public static readonly PrefabGUID Buff_General_Shield = new PrefabGUID(-1968422421); public static readonly PrefabGUID Buff_General_Shield_DarkEnchantment = new PrefabGUID(-684755394); public static readonly PrefabGUID Buff_General_Silence = new PrefabGUID(385404312); public static readonly PrefabGUID Buff_General_Silence_Nun = new PrefabGUID(-295264785); public static readonly PrefabGUID Buff_General_Silver_Sickness_Burn_Debuff = new PrefabGUID(853298599); public static readonly PrefabGUID Buff_General_SilverSlave = new PrefabGUID(103615205); public static readonly PrefabGUID Buff_General_SilverSlaveCover = new PrefabGUID(-1274403808); public static readonly PrefabGUID Buff_General_SilverSlaveReleased = new PrefabGUID(1229176670); public static readonly PrefabGUID Buff_General_SilverSlaveRun = new PrefabGUID(1793107442); public static readonly PrefabGUID Buff_General_Slow = new PrefabGUID(2072256768); public static readonly PrefabGUID Buff_General_Sludge_Poison = new PrefabGUID(-1965215729); public static readonly PrefabGUID Buff_General_Spawn_Unit = new PrefabGUID(396339796); public static readonly PrefabGUID Buff_General_Spawn_Unit_Fast = new PrefabGUID(507944752); public static readonly PrefabGUID Buff_General_Spawn_Unit_Fast_WarEvent = new PrefabGUID(-133411573); public static readonly PrefabGUID Buff_General_Spawn_Unit_Fast_WarEvent_Trash = new PrefabGUID(2090187901); public static readonly PrefabGUID Buff_General_Spawn_Unit_GateBoss_WarEvent = new PrefabGUID(-1232783422); public static readonly PrefabGUID Buff_General_Spawn_Unit_Medium = new PrefabGUID(-205058219); public static readonly PrefabGUID Buff_General_Spawn_Unit_Mid = new PrefabGUID(1629786723); public static readonly PrefabGUID Buff_General_Spawn_VBlood_AlphaWolf = new PrefabGUID(600470494); public static readonly PrefabGUID Buff_General_Spawn_VBlood_CryptKeeper = new PrefabGUID(-1978899906); public static readonly PrefabGUID Buff_General_Spawn_VBlood_EarlyGame = new PrefabGUID(-703593639); public static readonly PrefabGUID Buff_General_Spawn_VBlood_EndGame = new PrefabGUID(-2071666138); public static readonly PrefabGUID Buff_General_Spawn_VBlood_FirstBandits = new PrefabGUID(148706785); public static readonly PrefabGUID Buff_General_Spawn_VBlood_Livith = new PrefabGUID(2111855750); public static readonly PrefabGUID Buff_General_Spawn_VBlood_Lucie_GoldGolem = new PrefabGUID(231346515); public static readonly PrefabGUID Buff_General_Spawn_VBlood_MidGame = new PrefabGUID(-184730451); public static readonly PrefabGUID Buff_General_Spawn_VBlood_Morgana = new PrefabGUID(303061990); public static readonly PrefabGUID Buff_General_Spawn_VBlood_ShardBosses = new PrefabGUID(-1163165749); public static readonly PrefabGUID Buff_General_Spawn_VBlood_WorshippersOfMorgana = new PrefabGUID(746755827); public static readonly PrefabGUID Buff_General_Spectral_Weaken_ZealousCultist = new PrefabGUID(1224796284); public static readonly PrefabGUID Buff_General_SpellBlock = new PrefabGUID(-666744738); public static readonly PrefabGUID Buff_General_SpellBlockSilence = new PrefabGUID(-1351580266); public static readonly PrefabGUID Buff_General_Stagger = new PrefabGUID(1060841159); public static readonly PrefabGUID Buff_General_Station_Repair = new PrefabGUID(-359018142); public static readonly PrefabGUID Buff_General_Stun = new PrefabGUID(355774169); public static readonly PrefabGUID Buff_General_Stun_EMP = new PrefabGUID(803170994); public static readonly PrefabGUID Buff_General_Stun_ImpactFX = new PrefabGUID(-1369764436); public static readonly PrefabGUID Buff_General_Stun_Interrupt = new PrefabGUID(-1665549449); public static readonly PrefabGUID Buff_General_Stun_Knockdown_NoEffect = new PrefabGUID(-122961900); public static readonly PrefabGUID Buff_General_Stun_KnockedDownRise = new PrefabGUID(578821520); public static readonly PrefabGUID Buff_General_Stun_MonsterGateTrigger = new PrefabGUID(1884055278); public static readonly PrefabGUID Buff_General_Stun_NoEffect_BlockMultiple = new PrefabGUID(1732405081); public static readonly PrefabGUID Buff_General_Stun_Self_MilitiaLeader = new PrefabGUID(-564937730); public static readonly PrefabGUID Buff_General_Tank_LaunchPilot = new PrefabGUID(-1891612854); public static readonly PrefabGUID Buff_General_Tank_LaunchPilotStun = new PrefabGUID(797548263); public static readonly PrefabGUID Buff_General_Tank_PilotAttach = new PrefabGUID(-1041125977); public static readonly PrefabGUID Buff_General_Teleport_Travel = new PrefabGUID(-474441982); public static readonly PrefabGUID Buff_General_TimeOut_Despawn = new PrefabGUID(-1953483362); public static readonly PrefabGUID Buff_General_Vampire_DraculaSaveDeath_Buff = new PrefabGUID(-1463475972); public static readonly PrefabGUID Buff_General_Vampire_Wounded_Buff = new PrefabGUID(-1992158531); public static readonly PrefabGUID Buff_General_VampireMount_Dead = new PrefabGUID(525019977); public static readonly PrefabGUID Buff_General_VampirePvPDeathDebuff = new PrefabGUID(1591132469); public static readonly PrefabGUID Buff_General_VBlood_Downed = new PrefabGUID(-806335869); public static readonly PrefabGUID Buff_General_VBlood_Ghost_Timer = new PrefabGUID(1689183691); public static readonly PrefabGUID Buff_General_Wall_Repair = new PrefabGUID(1244705549); public static readonly PrefabGUID Buff_General_Weaken = new PrefabGUID(-1841976861); public static readonly PrefabGUID Buff_General_Weaken_Cursed_Ghosts = new PrefabGUID(-966736642); public static readonly PrefabGUID Buff_General_WeakeningHolyFlames = new PrefabGUID(-1209669293); public static readonly PrefabGUID Buff_General_Weapon_M1_ReadyFX = new PrefabGUID(-1285705156); public static readonly PrefabGUID Buff_General_Wounded_Tracker = new PrefabGUID(224060472); public static readonly PrefabGUID Buff_Geomancer_Shield_Stack = new PrefabGUID(-1864993435); public static readonly PrefabGUID Buff_Gloomrot_Iva_VBlood_Downed = new PrefabGUID(-764330540); public static readonly PrefabGUID Buff_Gloomrot_Monster_VBlood_Downed = new PrefabGUID(-1883912949); public static readonly PrefabGUID Buff_Gloomrot_Professor_VBlood_Downed = new PrefabGUID(-1736795990); public static readonly PrefabGUID Buff_Gloomrot_RailgunSergeant_ImmaterialHomePos = new PrefabGUID(-1203425149); public static readonly PrefabGUID Buff_Gloomrot_RailgunSergeant_VBlood_Downed = new PrefabGUID(1251197221); public static readonly PrefabGUID Buff_Gloomrot_SentryOfficer_HasTurret = new PrefabGUID(185404345); public static readonly PrefabGUID Buff_Gloomrot_SentryOfficer_TurretCooldown = new PrefabGUID(-1541207161); public static readonly PrefabGUID Buff_Gloomrot_Voltage_HideWhip = new PrefabGUID(-1716622857); public static readonly PrefabGUID Buff_Gloomrot_Voltage_Return = new PrefabGUID(-1773136595); public static readonly PrefabGUID Buff_Gloomrot_Voltage_VBlood_Downed = new PrefabGUID(1682893847); public static readonly PrefabGUID Buff_Harpya_Matriarch_VBlood_Downed = new PrefabGUID(265849192); public static readonly PrefabGUID Buff_Highlord_VBlood_Downed = new PrefabGUID(-820699991); public static readonly PrefabGUID Buff_HoundMaster_DeathTrackingBuff = new PrefabGUID(2062815630); public static readonly PrefabGUID Buff_IdleInteraction_AlchemyTable_01 = new PrefabGUID(-927667670); public static readonly PrefabGUID Buff_IdleInteraction_AlchemyTable_02 = new PrefabGUID(63562052); public static readonly PrefabGUID Buff_IdleInteraction_AlchemyTable_03 = new PrefabGUID(887057265); public static readonly PrefabGUID Buff_IdleInteraction_Anvil_01 = new PrefabGUID(-1156180859); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_01 = new PrefabGUID(-1765249626); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_02 = new PrefabGUID(-928196581); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_03 = new PrefabGUID(-434347400); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_04 = new PrefabGUID(-1201833600); public static readonly PrefabGUID Buff_IdleInteraction_CarverWhittle = new PrefabGUID(28437537); public static readonly PrefabGUID Buff_IdleInteraction_Digging01 = new PrefabGUID(548690821); public static readonly PrefabGUID Buff_IdleInteraction_Digging02 = new PrefabGUID(-1486738789); public static readonly PrefabGUID Buff_IdleInteraction_Fiddling01 = new PrefabGUID(-124884505); public static readonly PrefabGUID Buff_IdleInteraction_Fishing = new PrefabGUID(-1303633406); public static readonly PrefabGUID Buff_IdleInteraction_Forge_01 = new PrefabGUID(-1346897284); public static readonly PrefabGUID Buff_IdleInteraction_Forge_02 = new PrefabGUID(1369305275); public static readonly PrefabGUID Buff_IdleInteraction_HarvestSitting = new PrefabGUID(-545037646); public static readonly PrefabGUID Buff_IdleInteraction_Knifethrow = new PrefabGUID(1179075924); public static readonly PrefabGUID Buff_IdleInteraction_LookOut = new PrefabGUID(-2014797575); public static readonly PrefabGUID Buff_IdleInteraction_Poking = new PrefabGUID(634688654); public static readonly PrefabGUID Buff_IdleInteraction_Pushups = new PrefabGUID(579955887); public static readonly PrefabGUID Buff_IdleInteraction_Raking = new PrefabGUID(562524879); public static readonly PrefabGUID Buff_IdleInteraction_Selling = new PrefabGUID(-1766129319); public static readonly PrefabGUID Buff_IdleInteraction_SharpeningTable_01 = new PrefabGUID(-1259847931); public static readonly PrefabGUID Buff_IdleInteraction_Situps = new PrefabGUID(-1006286854); public static readonly PrefabGUID Buff_IdleInteraction_Sleeping_01 = new PrefabGUID(192984794); public static readonly PrefabGUID Buff_IdleInteraction_Sleeping_02 = new PrefabGUID(-1997870689); public static readonly PrefabGUID Buff_IdleInteraction_Sowing = new PrefabGUID(689335033); public static readonly PrefabGUID Buff_IdleInteraction_StandingByFire = new PrefabGUID(-1972114252); public static readonly PrefabGUID Buff_IdleInteraction_Tanning_01 = new PrefabGUID(-1343036350); public static readonly PrefabGUID Buff_IdleInteraction_TargetDummy_01 = new PrefabGUID(-1133587781); public static readonly PrefabGUID Buff_IdleInteraction_TargetDummy_02 = new PrefabGUID(1165429733); public static readonly PrefabGUID Buff_IdleInteraction_Tinker = new PrefabGUID(-701198643); public static readonly PrefabGUID Buff_IdleInteraction_Tinker_02 = new PrefabGUID(-1060344019); public static readonly PrefabGUID Buff_IdleInteraction_Tinker_03 = new PrefabGUID(1928493361); public static readonly PrefabGUID Buff_IdleInteraction_Wall_Lean_01 = new PrefabGUID(-235311655); public static readonly PrefabGUID Buff_IdleInteraction_Wall_Lean_02 = new PrefabGUID(-381437625); public static readonly PrefabGUID Buff_IdleInteraction_Wall_Lean_03 = new PrefabGUID(-1678139833); public static readonly PrefabGUID Buff_Illusion_Mosquito_DisableAggro = new PrefabGUID(1934061152); public static readonly PrefabGUID Buff_ImprisonTravel = new PrefabGUID(379796791); public static readonly PrefabGUID Buff_InCombat = new PrefabGUID(581443919); public static readonly PrefabGUID Buff_InCombat_BloodKnight = new PrefabGUID(1985952650); public static readonly PrefabGUID Buff_InCombat_CarverBoss_VBlood = new PrefabGUID(1650885803); public static readonly PrefabGUID Buff_InCombat_ChurchOfLight_Paladin = new PrefabGUID(-158349491); public static readonly PrefabGUID Buff_InCombat_Contest = new PrefabGUID(698151145); public static readonly PrefabGUID Buff_InCombat_DivineAngel = new PrefabGUID(1420967901); public static readonly PrefabGUID Buff_InCombat_Fisherman = new PrefabGUID(-1878882476); public static readonly PrefabGUID Buff_InCombat_Forest_Wolf = new PrefabGUID(195947260); public static readonly PrefabGUID Buff_InCombat_Gloomrot_RailgunSergeant = new PrefabGUID(-112425228); public static readonly PrefabGUID Buff_InCombat_Livith_VBlood = new PrefabGUID(1161649372); public static readonly PrefabGUID Buff_InCombat_Lucie_VBlood = new PrefabGUID(604033279); public static readonly PrefabGUID Buff_InCombat_Manticore = new PrefabGUID(-1360686341); public static readonly PrefabGUID Buff_InCombat_Npc = new PrefabGUID(480749717); public static readonly PrefabGUID Buff_InCombat_Npc_Blackfang = new PrefabGUID(1787445817); public static readonly PrefabGUID Buff_InCombat_Npc_Boss = new PrefabGUID(-1691569035); public static readonly PrefabGUID Buff_InCombat_Npc_CastleMan = new PrefabGUID(731266864); public static readonly PrefabGUID Buff_InCombat_Npc_CoverSlave = new PrefabGUID(-223678683); public static readonly PrefabGUID Buff_InCombat_Npc_Elite = new PrefabGUID(1227555070); public static readonly PrefabGUID Buff_InCombat_Npc_HighLord = new PrefabGUID(1138541416); public static readonly PrefabGUID Buff_InCombat_Npc_Invulernable = new PrefabGUID(544892542); public static readonly PrefabGUID Buff_InCombat_Npc_LessHpScaling = new PrefabGUID(680803070); public static readonly PrefabGUID Buff_InCombat_Npc_Monster = new PrefabGUID(257768416); public static readonly PrefabGUID Buff_InCombat_Npc_NoneCombatState = new PrefabGUID(597754491); public static readonly PrefabGUID Buff_InCombat_Npc_Servant = new PrefabGUID(-562438568); public static readonly PrefabGUID Buff_InCombat_Npc_Summon = new PrefabGUID(1141461369); public static readonly PrefabGUID Buff_InCombat_PvPVampire = new PrefabGUID(697095869); public static readonly PrefabGUID Buff_InCombat_TheProfessor = new PrefabGUID(-1781177443); public static readonly PrefabGUID Buff_InCombat_Trader_T01 = new PrefabGUID(-20088559); public static readonly PrefabGUID Buff_InCombat_Trader_T0203 = new PrefabGUID(-723142953); public static readonly PrefabGUID Buff_InCombat_VBlood_Archmage = new PrefabGUID(1486750501); public static readonly PrefabGUID Buff_InCombat_VBlood_Armorer = new PrefabGUID(1958910703); public static readonly PrefabGUID Buff_InCombat_VBlood_Armorer_ALREADY_EXISTS_2 = new PrefabGUID(1395125392); public static readonly PrefabGUID Buff_InCombat_VBlood_Bandit_Bomber = new PrefabGUID(1514481038); public static readonly PrefabGUID Buff_InCombat_VBlood_BanditLeader = new PrefabGUID(-282443267); public static readonly PrefabGUID Buff_InCombat_VBlood_Bear_Dire = new PrefabGUID(1960737087); public static readonly PrefabGUID Buff_InCombat_VBlood_BishopOfDeath = new PrefabGUID(-1410079457); public static readonly PrefabGUID Buff_InCombat_VBlood_BishopOfDunley = new PrefabGUID(294077942); public static readonly PrefabGUID Buff_InCombat_VBlood_BishopOfShadows = new PrefabGUID(-219121351); public static readonly PrefabGUID Buff_InCombat_VBlood_Chaosarrow = new PrefabGUID(-2137397598); public static readonly PrefabGUID Buff_InCombat_VBlood_ChurchOfLight_Cardinal = new PrefabGUID(22992735); public static readonly PrefabGUID Buff_InCombat_VBlood_CursedWanderer = new PrefabGUID(-163001676); public static readonly PrefabGUID Buff_InCombat_VBlood_DireRat = new PrefabGUID(-258353694); public static readonly PrefabGUID Buff_InCombat_VBlood_Foreman = new PrefabGUID(-1200676651); public static readonly PrefabGUID Buff_InCombat_VBlood_Frostarrow = new PrefabGUID(-2060227403); public static readonly PrefabGUID Buff_InCombat_VBlood_Geomancer_Human = new PrefabGUID(-1352713778); public static readonly PrefabGUID Buff_InCombat_VBlood_Harpy_Matriarch = new PrefabGUID(78907725); public static readonly PrefabGUID Buff_InCombat_VBlood_IceRanger = new PrefabGUID(-107868613); public static readonly PrefabGUID Buff_InCombat_VBlood_Iva = new PrefabGUID(-1784269994); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Glassblower = new PrefabGUID(-54441856); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Guard = new PrefabGUID(-1953643558); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Leader = new PrefabGUID(-882307775); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_LightArrow = new PrefabGUID(1026827463); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Scribe = new PrefabGUID(447801882); public static readonly PrefabGUID Buff_InCombat_VBlood_MountainBeast = new PrefabGUID(1683300592); public static readonly PrefabGUID Buff_InCombat_VBlood_Nun = new PrefabGUID(-1716617716); public static readonly PrefabGUID Buff_InCombat_VBlood_Overseer = new PrefabGUID(1860175001); public static readonly PrefabGUID Buff_InCombat_VBlood_Poloma = new PrefabGUID(-1054878413); public static readonly PrefabGUID Buff_InCombat_VBlood_Purifier = new PrefabGUID(437878287); public static readonly PrefabGUID Buff_InCombat_VBlood_Sommelier = new PrefabGUID(978693389); public static readonly PrefabGUID Buff_InCombat_VBlood_Spider_Queen = new PrefabGUID(-584450365); public static readonly PrefabGUID Buff_InCombat_VBlood_StoneBreaker = new PrefabGUID(-955739317); public static readonly PrefabGUID Buff_InCombat_VBlood_Tailor = new PrefabGUID(-750658096); public static readonly PrefabGUID Buff_InCombat_VBlood_ToadKing = new PrefabGUID(52223855); public static readonly PrefabGUID Buff_InCombat_VBlood_Tourok = new PrefabGUID(449194487); public static readonly PrefabGUID Buff_InCombat_VBlood_Undead_Priest = new PrefabGUID(747679525); public static readonly PrefabGUID Buff_InCombat_VBlood_Voltage = new PrefabGUID(-525986975); public static readonly PrefabGUID Buff_InCombat_VBlood_Wendigo = new PrefabGUID(989251425); public static readonly PrefabGUID Buff_InCombat_VBlood_WerewolfChieftain_Werewolf = new PrefabGUID(1287682259); public static readonly PrefabGUID Buff_InCombat_VBlood_Witch = new PrefabGUID(-1219399206); public static readonly PrefabGUID Buff_InCombat_VBlood_Yeti = new PrefabGUID(-1814423891); public static readonly PrefabGUID Buff_InCombat_VHunter_Jade = new PrefabGUID(170721886); public static readonly PrefabGUID Buff_InkCrawler_Hard_Timer = new PrefabGUID(-570882227); public static readonly PrefabGUID Buff_InkCrawler_Timer = new PrefabGUID(1273155981); public static readonly PrefabGUID Buff_Interrupt = new PrefabGUID(21644547); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Base = new PrefabGUID(-1852652593); public static readonly PrefabGUID Buff_Iva_WeaponEquip_BFG = new PrefabGUID(-1628661612); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Flamer = new PrefabGUID(847337272); public static readonly PrefabGUID Buff_Iva_WeaponEquip_HideAll = new PrefabGUID(-1584074836); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Shotgun = new PrefabGUID(1905993695); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Tazer = new PrefabGUID(-1463058911); public static readonly PrefabGUID Buff_Legion_BloodProhpet_PermanentBuff = new PrefabGUID(-426858592); public static readonly PrefabGUID Buff_Legion_GateBoss_PermanentBuff = new PrefabGUID(470787050); public static readonly PrefabGUID Buff_LittleGuy_Pray = new PrefabGUID(-111291969); public static readonly PrefabGUID Buff_LittleGuy_Sit = new PrefabGUID(-1861980964); public static readonly PrefabGUID Buff_LittleGuy_Sleep = new PrefabGUID(1572800727); public static readonly PrefabGUID Buff_LittleGuy_Tinkering = new PrefabGUID(1163726516); public static readonly PrefabGUID Buff_Manticore_ImmaterialHomePos = new PrefabGUID(-61473528); public static readonly PrefabGUID Buff_Manticore_VBlood_Downed = new PrefabGUID(-195747592); public static readonly PrefabGUID Buff_Militia_BishopOfDunley_VBlood_Downed = new PrefabGUID(-1684198551); public static readonly PrefabGUID Buff_Militia_Fabian_CastImpair = new PrefabGUID(1671499645); public static readonly PrefabGUID Buff_Militia_Fabian_Downed = new PrefabGUID(1614390358); public static readonly PrefabGUID Buff_Militia_Fabian_InCombat = new PrefabGUID(-898392533); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_Attach = new PrefabGUID(105565888); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_LaunchLand = new PrefabGUID(1542512910); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_LaunchRider = new PrefabGUID(1182509317); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_SharedHealthBuff = new PrefabGUID(1666453956); public static readonly PrefabGUID Buff_Militia_Fabian_OnAggro = new PrefabGUID(-1995779935); public static readonly PrefabGUID Buff_Militia_Fabian_Return = new PrefabGUID(1054832087); public static readonly PrefabGUID Buff_Militia_FabiansSteed_CastImpair = new PrefabGUID(-1205493484); public static readonly PrefabGUID Buff_Militia_FabiansSteed_Trample = new PrefabGUID(1136393298); public static readonly PrefabGUID Buff_Militia_GlassBlower_VBlood_Downed = new PrefabGUID(315631033); public static readonly PrefabGUID Buff_Militia_Guard_VBlood_Downed = new PrefabGUID(-756124314); public static readonly PrefabGUID Buff_Militia_Hound_InCombat = new PrefabGUID(-2046372355); public static readonly PrefabGUID Buff_Militia_InkCrawler_SpawnBuff = new PrefabGUID(-1355571683); public static readonly PrefabGUID Buff_Militia_InkCrawler_TrailEffect = new PrefabGUID(-1124645803); public static readonly PrefabGUID Buff_Militia_Leader_VBlood_Downed = new PrefabGUID(1348079791); public static readonly PrefabGUID Buff_Militia_Nun_VBlood_Downed = new PrefabGUID(1318120602); public static readonly PrefabGUID Buff_Militia_Scribe_HideStaff = new PrefabGUID(2053361366); public static readonly PrefabGUID Buff_Militia_Scribe_VBlood_Downed = new PrefabGUID(394037137); public static readonly PrefabGUID Buff_Monster_EnergyBeam_Hard_Invulnerability = new PrefabGUID(-1653889755); public static readonly PrefabGUID Buff_Monster_EnergyBeam_Hit = new PrefabGUID(-1568995091); public static readonly PrefabGUID Buff_Monster_FinalStage = new PrefabGUID(-85146953); public static readonly PrefabGUID Buff_Monster_FinalStage_Empowered = new PrefabGUID(1237097606); public static readonly PrefabGUID Buff_Monster_FinalStage_Transition = new PrefabGUID(-2079981449); public static readonly PrefabGUID Buff_Monster_GeneratorActive = new PrefabGUID(-1548542301); public static readonly PrefabGUID Buff_Monster_MainStage1 = new PrefabGUID(259890464); public static readonly PrefabGUID Buff_Monster_MainStage2 = new PrefabGUID(719241057); public static readonly PrefabGUID Buff_Monster_MainStage3 = new PrefabGUID(-298421901); public static readonly PrefabGUID Buff_Monster_OnAggro = new PrefabGUID(1416123699); public static readonly PrefabGUID Buff_Monster_OnRelease = new PrefabGUID(1260207051); public static readonly PrefabGUID Buff_Monster_RecentlyReleased = new PrefabGUID(913622234); public static readonly PrefabGUID Buff_Monster_Return = new PrefabGUID(1089939900); public static readonly PrefabGUID Buff_Monster_Return_Hidebuff = new PrefabGUID(-1165237844); public static readonly PrefabGUID Buff_Monster_ShowMechArm = new PrefabGUID(96896444); public static readonly PrefabGUID Buff_Monster_ThresholdInterrupt = new PrefabGUID(-1791833910); public static readonly PrefabGUID Buff_Mount_Horse_Downed = new PrefabGUID(-266455478); public static readonly PrefabGUID Buff_MountainBeast_DashRotationImpair = new PrefabGUID(-748506838); public static readonly PrefabGUID Buff_MoveToBusStop = new PrefabGUID(-1096336901); public static readonly PrefabGUID Buff_MoveToBusStopDestroy = new PrefabGUID(539166338); public static readonly PrefabGUID Buff_Mutant_Tier3_Minion_Mutant_SpawnBuff = new PrefabGUID(1435319429); public static readonly PrefabGUID Buff_Mutant_Tier3_RatHorror_LifetimeBuff = new PrefabGUID(-1523736130); public static readonly PrefabGUID Buff_Mutant_Tier3_RatHorror_Spawn_PoolJump = new PrefabGUID(571970872); public static readonly PrefabGUID Buff_NoBlood_Debuff = new PrefabGUID(-915894843); public static readonly PrefabGUID Buff_Noctem_Trader_IdleBuff = new PrefabGUID(-1516516418); public static readonly PrefabGUID Buff_Ocean_Blowfish_DamageArea = new PrefabGUID(-835533380); public static readonly PrefabGUID Buff_Ocean_Blowfish_DestroyNovaTrigger = new PrefabGUID(-1425606752); public static readonly PrefabGUID Buff_Ocean_Blowfish_StunOther = new PrefabGUID(-1339333399); public static readonly PrefabGUID Buff_Ocean_Blowfish_StunOther_Long = new PrefabGUID(-2098926892); public static readonly PrefabGUID Buff_Ocean_Blowfish_StunPlayer = new PrefabGUID(-74418677); public static readonly PrefabGUID Buff_Ocean_Blowfish_WasHit = new PrefabGUID(627469299); public static readonly PrefabGUID Buff_OnAggro_TheProfessor = new PrefabGUID(-1368184079); public static readonly PrefabGUID Buff_OnHitDash = new PrefabGUID(-2050859372); public static readonly PrefabGUID Buff_OutOfCombat = new PrefabGUID(897325455); public static readonly PrefabGUID Buff_Overseer_Spawn_Minion = new PrefabGUID(263434875); public static readonly PrefabGUID Buff_Paladin_DivineAngel_ChaseBuff = new PrefabGUID(1277289010); public static readonly PrefabGUID Buff_Paladin_FallenAngel_ChaseBuff = new PrefabGUID(1586158367); public static readonly PrefabGUID Buff_Paladin_ShockWaveSlam_FadingSnare = new PrefabGUID(966083888); public static readonly PrefabGUID Buff_PhysCrit_Movement_After_Veil = new PrefabGUID(-1045175171); public static readonly PrefabGUID Buff_Poloma_VBlood_Downed = new PrefabGUID(1120754048); public static readonly PrefabGUID Buff_Prisoner_Flee_Villager_Female = new PrefabGUID(-524901271); public static readonly PrefabGUID Buff_Prisoner_Flee_Villager_Male = new PrefabGUID(-1635032699); public static readonly PrefabGUID Buff_Prisoner_Villager = new PrefabGUID(626943474); public static readonly PrefabGUID Buff_Prisoner_Villager_Cover_Female = new PrefabGUID(1216826981); public static readonly PrefabGUID Buff_Prisoner_Villager_Cover_Male = new PrefabGUID(20409553); public static readonly PrefabGUID Buff_Progression_LockSpell1 = new PrefabGUID(-2103690727); public static readonly PrefabGUID Buff_Progression_LockSpell2 = new PrefabGUID(473363389); public static readonly PrefabGUID Buff_Purifier_OutOfCombat = new PrefabGUID(-698800339); public static readonly PrefabGUID Buff_Purifier_Return = new PrefabGUID(-1983671299); public static readonly PrefabGUID Buff_Purifier_VBlood_Downed = new PrefabGUID(627111319); public static readonly PrefabGUID Buff_RemoveAfterDuration_FadeOut = new PrefabGUID(-101157490); public static readonly PrefabGUID Buff_RemoveAfterDuration_FadeOut_GateBoss = new PrefabGUID(-1322217295); public static readonly PrefabGUID Buff_SeaSerpent_Aggro = new PrefabGUID(-695441498); public static readonly PrefabGUID Buff_Shapeshift_Base = new PrefabGUID(361281067); public static readonly PrefabGUID Buff_Shared_HealthOrbListener_Normal = new PrefabGUID(264475473); public static readonly PrefabGUID Buff_Shared_Return = new PrefabGUID(-560330878); public static readonly PrefabGUID Buff_Shared_Return_NoInvulernable = new PrefabGUID(2086395440); public static readonly PrefabGUID Buff_Silence_Jade = new PrefabGUID(-1624535205); public static readonly PrefabGUID Buff_Sommelier_Emote_OnAggro_Buff = new PrefabGUID(-83105343); public static readonly PrefabGUID Buff_Spawn_VBlood_ArenaChampion = new PrefabGUID(339702988); public static readonly PrefabGUID Buff_SpawnBuff_Skeleton_EarthCrawl = new PrefabGUID(1820474368); public static readonly PrefabGUID Buff_Spectral_SpellSlinger_DisableAggro = new PrefabGUID(-220887892); public static readonly PrefabGUID Buff_SpellCrit_After_Veil = new PrefabGUID(-155441795); public static readonly PrefabGUID Buff_Spider_Forest_Webbing_HasteBuff = new PrefabGUID(-481566876); public static readonly PrefabGUID Buff_Spider_Forest_Webbing_SlowDebuff = new PrefabGUID(1546160943); public static readonly PrefabGUID Buff_Spider_Melee_Webbing_HasteBuff = new PrefabGUID(-2101950327); public static readonly PrefabGUID Buff_Spider_Melee_Webbing_SlowDebuff = new PrefabGUID(-1831802998); public static readonly PrefabGUID Buff_Spider_Queen_VBlood_Downed = new PrefabGUID(-2127508277); public static readonly PrefabGUID Buff_SpiderCocoon_Lifetime = new PrefabGUID(-1555636522); public static readonly PrefabGUID Buff_Storm_Feed_Haste = new PrefabGUID(1208483884); public static readonly PrefabGUID Buff_SummonedSpawn_General = new PrefabGUID(1013625819); public static readonly PrefabGUID Buff_SummonedSpawn_General_QuickSpawn = new PrefabGUID(-25317698); public static readonly PrefabGUID Buff_Tailor_VBlood_Flee = new PrefabGUID(-530519474); public static readonly PrefabGUID Buff_Tank_Standing_PilotAttach = new PrefabGUID(-900651947); public static readonly PrefabGUID Buff_TransmogMode = new PrefabGUID(-1482034122); public static readonly PrefabGUID Buff_TreantMantrap_Corrupted_Attach01 = new PrefabGUID(-1460610830); public static readonly PrefabGUID Buff_TreantMantrap_Corrupted_Attach02 = new PrefabGUID(-1416960739); public static readonly PrefabGUID Buff_TreantMantrap_Corrupted_KillBuff = new PrefabGUID(1764411151); public static readonly PrefabGUID Buff_Undead_ArenaChampion_VBlood_Downed = new PrefabGUID(83174109); public static readonly PrefabGUID Buff_Undead_BishopOfDeath_VBlood_Downed = new PrefabGUID(-1333192053); public static readonly PrefabGUID Buff_Undead_BishopOfShadows_VBlood_Downed = new PrefabGUID(-721205311); public static readonly PrefabGUID Buff_Undead_CursedSmith_FloatingMace_Weaken = new PrefabGUID(-502090069); public static readonly PrefabGUID Buff_Undead_CursedSmith_FloatingWeapon_Hard_StatBoost = new PrefabGUID(1672630457); public static readonly PrefabGUID Buff_Undead_CursedSmith_InCombat = new PrefabGUID(-1977989346); public static readonly PrefabGUID Buff_Undead_CursedSmith_VBlood_Downed = new PrefabGUID(126339959); public static readonly PrefabGUID Buff_Undead_CursedSmith_Weaken = new PrefabGUID(355440213); public static readonly PrefabGUID Buff_Undead_FlyingSkull_LivingMaterial = new PrefabGUID(-1559874083); public static readonly PrefabGUID Buff_Undead_Infiltrator_OutOfCombat = new PrefabGUID(-27509782); public static readonly PrefabGUID Buff_Undead_Infiltrator_OutOfCombat_Gateboss = new PrefabGUID(-57728774); public static readonly PrefabGUID Buff_Undead_Infiltrator_VBlood_Downed = new PrefabGUID(2075976215); public static readonly PrefabGUID Buff_Undead_Infiltrator_VBlood_InCombat = new PrefabGUID(-1173838598); public static readonly PrefabGUID Buff_Undead_Infiltrator_VBlood_OnAggro = new PrefabGUID(-1177340313); public static readonly PrefabGUID Buff_Undead_Leader_VBlood_Downed = new PrefabGUID(-2002379408); public static readonly PrefabGUID Buff_Undead_Leader_VBlood_InCombat = new PrefabGUID(-2079744569); public static readonly PrefabGUID Buff_Undead_Leader_VBlood_OnAggro = new PrefabGUID(710476221); public static readonly PrefabGUID Buff_Undead_Priest_VBlood_Downed = new PrefabGUID(-1455144915); public static readonly PrefabGUID Buff_Undead_SkeletonGolem_MinionLifetime = new PrefabGUID(-665880743); public static readonly PrefabGUID Buff_Undead_SkeletonGolem_MinionSpawner = new PrefabGUID(-931287980); public static readonly PrefabGUID Buff_Undead_SkeletonGolem_SpawnAnimation = new PrefabGUID(2144295761); public static readonly PrefabGUID Buff_Undead_ZealousCultist_InCombat = new PrefabGUID(-652831057); public static readonly PrefabGUID Buff_Undead_ZealousCultist_VBlood_Downed = new PrefabGUID(1044823130); public static readonly PrefabGUID Buff_Unholy_DeathKnight_DisableAggro = new PrefabGUID(955278936); public static readonly PrefabGUID Buff_Unholy_UnstableArachnid_Spawn = new PrefabGUID(-46248684); public static readonly PrefabGUID Buff_USB_Lifetime = new PrefabGUID(71525166); public static readonly PrefabGUID Buff_Vampire_BloodKnight_HideWeapon = new PrefabGUID(1972619545); public static readonly PrefabGUID Buff_Vampire_BloodKnight_Return = new PrefabGUID(-1049988817); public static readonly PrefabGUID Buff_Vampire_BloodKnight_Spawn = new PrefabGUID(-1448026757); public static readonly PrefabGUID Buff_Vampire_CrimsonIronMaiden_MiscBuff = new PrefabGUID(-925504586); public static readonly PrefabGUID Buff_Vampire_CrimsonIronMaiden_SetMasterCooldown = new PrefabGUID(835020638); public static readonly PrefabGUID Buff_Vampire_Cultist_CombatBuff = new PrefabGUID(1120328360); public static readonly PrefabGUID Buff_Vampire_Dracula_BloodCurse = new PrefabGUID(-89195359); public static readonly PrefabGUID Buff_Vampire_Dracula_BloodCurseArea = new PrefabGUID(2089511317); public static readonly PrefabGUID Buff_Vampire_Dracula_Downed = new PrefabGUID(-187191126); public static readonly PrefabGUID Buff_Vampire_Dracula_Idle = new PrefabGUID(496408546); public static readonly PrefabGUID Buff_Vampire_Dracula_Return = new PrefabGUID(-1377587236); public static readonly PrefabGUID Buff_Vampire_Dracula_ReturnHide = new PrefabGUID(404387047); public static readonly PrefabGUID Buff_Vampire_Dracula_Seated = new PrefabGUID(1264659054); public static readonly PrefabGUID Buff_Vampire_Dracula_Spawn = new PrefabGUID(657711564); public static readonly PrefabGUID Buff_Vampire_Dracula_SpellPhase = new PrefabGUID(-31099041); public static readonly PrefabGUID Buff_Vampire_Dracula_StandUp = new PrefabGUID(-2081244038); public static readonly PrefabGUID Buff_Vampire_Dracula_VeilOfBatsIllusion_EffectBuff = new PrefabGUID(632624195); public static readonly PrefabGUID Buff_Vampire_Dracula_VeilOfBatsIllusion_EvolvedBuff = new PrefabGUID(-874481425); public static readonly PrefabGUID Buff_Vampire_Dracula_VeilOfBatsIllusion_SummonInit = new PrefabGUID(-1776595174); public static readonly PrefabGUID Buff_Vampire_Whip_HideAnimationWhip = new PrefabGUID(-1005561637); public static readonly PrefabGUID Buff_Vampire_Whip_ShowAnimationWhip = new PrefabGUID(935949254); public static readonly PrefabGUID Buff_Vampire_Whip_ShowAnimationWhip_FlameWhip = new PrefabGUID(-956620578); public static readonly PrefabGUID Buff_VBlood_Ability_Replace = new PrefabGUID(1171608023); public static readonly PrefabGUID Buff_VBlood_DireRat_Hard = new PrefabGUID(1139392902); public static readonly PrefabGUID Buff_Vermin_DireRat_VBlood_Downed = new PrefabGUID(-190654335); public static readonly PrefabGUID Buff_VHunter_CastleMan_HideWhip_Buff = new PrefabGUID(-202999668); public static readonly PrefabGUID Buff_VHunter_Jade_VBlood_Downed = new PrefabGUID(-237898435); public static readonly PrefabGUID Buff_VHunter_Leader_Haste_Hard = new PrefabGUID(1007184557); public static readonly PrefabGUID Buff_VHunter_Leader_InCombat = new PrefabGUID(521682636); public static readonly PrefabGUID Buff_Villager_CursedWanderer_VBlood_Downed = new PrefabGUID(1950981925); public static readonly PrefabGUID Buff_Villager_Tailor_VBlood_Downed = new PrefabGUID(-1781284090); public static readonly PrefabGUID Buff_Voltage_Stage2 = new PrefabGUID(-911970381); public static readonly PrefabGUID Buff_Voltage_Stage2_Transition1 = new PrefabGUID(-10363246); public static readonly PrefabGUID Buff_Voltage_Stage2_Transition2 = new PrefabGUID(-1053045898); public static readonly PrefabGUID Buff_Voltage_Stage2_Transition3 = new PrefabGUID(-750611171); public static readonly PrefabGUID Buff_Waypoint_Travel = new PrefabGUID(150521246); public static readonly PrefabGUID Buff_Waypoint_TravelEnd = new PrefabGUID(-1361133205); public static readonly PrefabGUID Buff_Wendigo_Freeze = new PrefabGUID(899218383); public static readonly PrefabGUID Buff_Wendigo_VBlood_Downed = new PrefabGUID(-1720429443); public static readonly PrefabGUID Buff_Werewolf_Return = new PrefabGUID(-169078563); public static readonly PrefabGUID Buff_WerewolfChieftain_Idle = new PrefabGUID(-43198776); public static readonly PrefabGUID Buff_WerewolfChieftain_Return = new PrefabGUID(-1511222240); public static readonly PrefabGUID Buff_WerewolfChieftain_VBlood_Downed = new PrefabGUID(928010188); public static readonly PrefabGUID Buff_Winter_Yeti_VBlood_Downed = new PrefabGUID(309433400); public static readonly PrefabGUID Buff_Wolf_Eating = new PrefabGUID(-177679480); public static readonly PrefabGUID Buff_Yeti_Freeze = new PrefabGUID(-1743320328); public static readonly PrefabGUID BuffResistance_ArenaOrb = new PrefabGUID(-1271537148); public static readonly PrefabGUID BuffResistance_Dispell_Standard = new PrefabGUID(663432934); public static readonly PrefabGUID BuffResistance_EliteMob = new PrefabGUID(1973136122); public static readonly PrefabGUID BuffResistance_ExplodingMosquito = new PrefabGUID(815189566); public static readonly PrefabGUID BuffResistance_Golem = new PrefabGUID(-1736068504); public static readonly PrefabGUID BuffResistance_GolemRockElemental = new PrefabGUID(1413952432); public static readonly PrefabGUID BuffResistance_GroundedUnit = new PrefabGUID(-1233147667); public static readonly PrefabGUID BuffResistance_Horses = new PrefabGUID(-1847481569); public static readonly PrefabGUID BuffResistance_Hunter = new PrefabGUID(193079472); public static readonly PrefabGUID BuffResistance_IceBlock = new PrefabGUID(-1747607804); public static readonly PrefabGUID BuffResistance_IgniteResistant = new PrefabGUID(-992427880); public static readonly PrefabGUID BuffResistance_NoResistances = new PrefabGUID(-149206519); public static readonly PrefabGUID BuffResistance_OnlyKnockbackAllowed = new PrefabGUID(-1043688002); public static readonly PrefabGUID BuffResistance_SpellImmune = new PrefabGUID(138461582); public static readonly PrefabGUID BuffResistance_SpiderTanks = new PrefabGUID(-1513114390); public static readonly PrefabGUID BuffResistance_Structures = new PrefabGUID(-641281679); public static readonly PrefabGUID BuffResistance_UberMob = new PrefabGUID(1067748088); public static readonly PrefabGUID BuffResistance_UberMob_IgniteResistant = new PrefabGUID(960451195); public static readonly PrefabGUID BuffResistance_UberMobNoKnockback = new PrefabGUID(-995401394); public static readonly PrefabGUID BuffResistance_UberMobNoKnockbackOrGrab = new PrefabGUID(99200653); public static readonly PrefabGUID BuffResistance_Vampire = new PrefabGUID(-1022163918); public static readonly PrefabGUID BuffResistance_VBloodDownedDispell = new PrefabGUID(-1114856172); public static readonly PrefabGUID BuildingDismantleAdaptiveTrigger = new PrefabGUID(282922834); public static readonly PrefabGUID BuildingPickupAdaptiveTrigger = new PrefabGUID(-313671940); public static readonly PrefabGUID BuildMenuComposition = new PrefabGUID(-782361326); public static readonly PrefabGUID BuildModeSettings = new PrefabGUID(1783731105); public static readonly PrefabGUID CabalVaseBuildMenuGroup = new PrefabGUID(368279786); public static readonly PrefabGUID CancelFeedAdaptiveTrigger = new PrefabGUID(1396777316); public static readonly PrefabGUID Candle04BuildMenuGroup = new PrefabGUID(48379112); public static readonly PrefabGUID CandleStandsBuildMenuGroup = new PrefabGUID(-416774014); public static readonly PrefabGUID CarpetsBuildMenuGroup01 = new PrefabGUID(-1947472059); public static readonly PrefabGUID CarpetsBuildMenuGroup02 = new PrefabGUID(768363843); public static readonly PrefabGUID CarpetsBuildMenuGroupDLC01 = new PrefabGUID(-866904874); public static readonly PrefabGUID CarpetsBuildMenuGroupGloomrot01 = new PrefabGUID(-940907249); public static readonly PrefabGUID CarpetsBuildMenuGroupHalloween01 = new PrefabGUID(-1596593625); public static readonly PrefabGUID CarpetsBuildMenuGroupProjectK01 = new PrefabGUID(1995998081); public static readonly PrefabGUID CarpetsBuildMenuGroupStrongbladeDLC01 = new PrefabGUID(-168337760); public static readonly PrefabGUID CarpetsBuildMenuGroupStrongbladeDLC02 = new PrefabGUID(463423026); public static readonly PrefabGUID CarriageCollider = new PrefabGUID(-584529203); public static readonly PrefabGUID CarrionSwarmCurve = new PrefabGUID(-1923722899); public static readonly PrefabGUID CarverBoss_WhirlwindSlowDown_Curve = new PrefabGUID(696336935); public static readonly PrefabGUID Castle_DecayOnServerTick_Buff = new PrefabGUID(-461018547); public static readonly PrefabGUID Castle_Modules_Child_Vases = new PrefabGUID(-472962006); public static readonly PrefabGUID Castle_Modules_Garden_Arch_Large = new PrefabGUID(1150984956); public static readonly PrefabGUID Castle_Modules_Garden_Arch_Small = new PrefabGUID(-562325479); public static readonly PrefabGUID Castle_Modules_Garden_Obelisk_Metal = new PrefabGUID(-1789514767); public static readonly PrefabGUID Castle_Modules_Garden_Obelisk_Wood = new PrefabGUID(880934517); public static readonly PrefabGUID Castle_Modules_Garden_Pergola = new PrefabGUID(1668575710); public static readonly PrefabGUID Castle_Modules_Garden_Planter_Large = new PrefabGUID(-1843221037); public static readonly PrefabGUID Castle_Modules_Garden_Planter_Small = new PrefabGUID(340064975); public static readonly PrefabGUID Castle_Modules_Garden_Seeds = new PrefabGUID(-1257517500); public static readonly PrefabGUID Castle_Modules_Garden_Urns = new PrefabGUID(-1577269726); public static readonly PrefabGUID Castle_Modules_RectangularTable_10x6 = new PrefabGUID(-1098132264); public static readonly PrefabGUID Castle_Modules_RectangularTable_3x6 = new PrefabGUID(906752705); public static readonly PrefabGUID Castle_Modules_RoundTable_3x3 = new PrefabGUID(-1746717174); public static readonly PrefabGUID Castle_Modules_RoundTable_6x6 = new PrefabGUID(-498480359); public static readonly PrefabGUID Castle_RegenOnServerTick_Buff = new PrefabGUID(-383767137); public static readonly PrefabGUID Castle_Resistance_Buff = new PrefabGUID(-1122791248); public static readonly PrefabGUID CastleBuffsSettings = new PrefabGUID(1718523655); public static readonly PrefabGUID CastleFloorBuildMenuGroup = new PrefabGUID(-1222494467); public static readonly PrefabGUID CastleGenerationPrefabsCollection = new PrefabGUID(1785107561); public static readonly PrefabGUID CastleHeart_SharedInventoryInstance = new PrefabGUID(-1551119253); public static readonly PrefabGUID CastleHeart_SharedInventoryManager = new PrefabGUID(-1882137875); public static readonly PrefabGUID CastleHeartTierSequencesAsset = new PrefabGUID(1097554366); public static readonly PrefabGUID CastleManHolyBeamHardCurve = new PrefabGUID(-1442445263); public static readonly PrefabGUID CastleRailings_BuildingMenuGroup = new PrefabGUID(-161148957); public static readonly PrefabGUID CastleRailingsAsset = new PrefabGUID(-1955161285); public static readonly PrefabGUID CastleRebuildingSettings = new PrefabGUID(1517300989); public static readonly PrefabGUID CastleRoom = new PrefabGUID(2032861273); public static readonly PrefabGUID CastleStairsBuildMenuGroup = new PrefabGUID(-537969092); public static readonly PrefabGUID CastleTeam = new PrefabGUID(-1924985899); public static readonly PrefabGUID CastleTerritory = new PrefabGUID(1487894097); public static readonly PrefabGUID CastleTerritoryManager = new PrefabGUID(-476390368); public static readonly PrefabGUID CastleWallsBuildMenuGroup = new PrefabGUID(1923329122); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_01a = new PrefabGUID(1734135547); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_01b = new PrefabGUID(467750481); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_02a = new PrefabGUID(-324589909); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_02b = new PrefabGUID(484488171); public static readonly PrefabGUID Chain_Altar_Fortressoflight_01 = new PrefabGUID(-1417459998); public static readonly PrefabGUID Chain_AnimalCage_01 = new PrefabGUID(1602688000); public static readonly PrefabGUID Chain_AnimalCage_02 = new PrefabGUID(86622020); public static readonly PrefabGUID Chain_AnimalCage_03 = new PrefabGUID(-1438473016); public static readonly PrefabGUID Chain_AnimalCage_04 = new PrefabGUID(-324163215); public static readonly PrefabGUID Chain_AnimalCage_05 = new PrefabGUID(-570970720); public static readonly PrefabGUID Chain_AnimalCage_06 = new PrefabGUID(-1295142628); public static readonly PrefabGUID Chain_AnimalCage_07 = new PrefabGUID(-1058034014); public static readonly PrefabGUID Chain_AnimalCage_Snow_01 = new PrefabGUID(-1582280235); public static readonly PrefabGUID Chain_AnimalCage_Snow_02 = new PrefabGUID(-2112591787); public static readonly PrefabGUID Chain_AnimalCage_Snow_03 = new PrefabGUID(-511204510); public static readonly PrefabGUID Chain_AnimalCage_Snow_04 = new PrefabGUID(-1298921460); public static readonly PrefabGUID Chain_AnimalCage_Snow_05 = new PrefabGUID(-532060107); public static readonly PrefabGUID Chain_AnimalCage_Snow_07 = new PrefabGUID(834787273); public static readonly PrefabGUID Chain_AnimalGraintank01 = new PrefabGUID(-1364345443); public static readonly PrefabGUID Chain_AnimalGraintank02 = new PrefabGUID(-902899247); public static readonly PrefabGUID Chain_Animalpen_Gate_01 = new PrefabGUID(550798636); public static readonly PrefabGUID Chain_AnimalWatertank01 = new PrefabGUID(689661702); public static readonly PrefabGUID Chain_AnimalWatertank02 = new PrefabGUID(66325277); public static readonly PrefabGUID Chain_ArcheryTarget01 = new PrefabGUID(921465980); public static readonly PrefabGUID Chain_Bandit_Banner01 = new PrefabGUID(-212946059); public static readonly PrefabGUID Chain_Bandit_Barricade_01 = new PrefabGUID(-366794690); public static readonly PrefabGUID Chain_Bandit_Palisade_Gate01 = new PrefabGUID(1735701857); public static readonly PrefabGUID Chain_BanditBanner_01 = new PrefabGUID(-1253415539); public static readonly PrefabGUID Chain_BanditBanner_02 = new PrefabGUID(1767410750); public static readonly PrefabGUID Chain_BanditFortress_Bench01 = new PrefabGUID(-1144066357); public static readonly PrefabGUID Chain_BanditFortress_Stairs01 = new PrefabGUID(906187829); public static readonly PrefabGUID Chain_BanditFortress_Stairs02 = new PrefabGUID(43624464); public static readonly PrefabGUID Chain_Barbedwire_Diagonal_Fence_Gloomrot_01 = new PrefabGUID(-1782701782); public static readonly PrefabGUID Chain_Barbedwire_Diagonal_Fence_Gloomrot_02 = new PrefabGUID(1896724798); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_01 = new PrefabGUID(-726771209); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_02 = new PrefabGUID(504819358); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_03 = new PrefabGUID(1794304910); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_04 = new PrefabGUID(1207399833); public static readonly PrefabGUID Chain_Barrel_01 = new PrefabGUID(-16732914); public static readonly PrefabGUID Chain_Barrel_02 = new PrefabGUID(-2120923595); public static readonly PrefabGUID Chain_Barrel_03 = new PrefabGUID(-1176416357); public static readonly PrefabGUID Chain_Barrel_Cluster_01 = new PrefabGUID(149883588); public static readonly PrefabGUID Chain_Barrel_Cluster_02 = new PrefabGUID(-1468893638); public static readonly PrefabGUID Chain_Barrel_Oak_01 = new PrefabGUID(501320751); public static readonly PrefabGUID Chain_Barrel_Oak_02 = new PrefabGUID(682424459); public static readonly PrefabGUID Chain_Barrel_Oak_03 = new PrefabGUID(-290640467); public static readonly PrefabGUID Chain_Barrel_Snow_01 = new PrefabGUID(1140693569); public static readonly PrefabGUID Chain_Barrel_Snow_02 = new PrefabGUID(-1635746829); public static readonly PrefabGUID Chain_Barrel_Snow_03 = new PrefabGUID(-969294944); public static readonly PrefabGUID Chain_Beehive01 = new PrefabGUID(2068880642); public static readonly PrefabGUID Chain_BeerBarrel_01 = new PrefabGUID(1390201106); public static readonly PrefabGUID Chain_BeerBarrel_02 = new PrefabGUID(-1242376422); public static readonly PrefabGUID Chain_BeerBarrel_Snow_01 = new PrefabGUID(-1416941612); public static readonly PrefabGUID Chain_BeerBarrel_Snow_02 = new PrefabGUID(-1621858544); public static readonly PrefabGUID Chain_Blacksmith_Anvil01 = new PrefabGUID(378174333); public static readonly PrefabGUID Chain_Blacksmith_Anvil01_Interactable = new PrefabGUID(-1026590408); public static readonly PrefabGUID Chain_BlackSmith_Barrel01 = new PrefabGUID(331562853); public static readonly PrefabGUID Chain_Blacksmith_Bellow01 = new PrefabGUID(1724971806); public static readonly PrefabGUID Chain_Blacksmith_Table01 = new PrefabGUID(560078553); public static readonly PrefabGUID Chain_Blacksmith_Table01_Interactable = new PrefabGUID(-445475412); public static readonly PrefabGUID Chain_BlacksmithWood_01 = new PrefabGUID(-573707317); public static readonly PrefabGUID Chain_BlacksmithWood_02 = new PrefabGUID(262687702); public static readonly PrefabGUID Chain_Bonfire_01 = new PrefabGUID(-1657952772); public static readonly PrefabGUID Chain_Bonfire_01_FireOn = new PrefabGUID(-1099519358); public static readonly PrefabGUID Chain_Bonfire_02_FireOn = new PrefabGUID(-1364864928); public static readonly PrefabGUID Chain_BossBarrel = new PrefabGUID(-601059406); public static readonly PrefabGUID Chain_Brazier_Bandit_01 = new PrefabGUID(1165056836); public static readonly PrefabGUID Chain_Brazier_Elris_01 = new PrefabGUID(640975460); public static readonly PrefabGUID Chain_Brazier_Fortressoflight_01 = new PrefabGUID(591059473); public static readonly PrefabGUID Chain_Brazier_Fortressoflight_03 = new PrefabGUID(519147451); public static readonly PrefabGUID Chain_Brazier_Militia_01 = new PrefabGUID(1981432504); public static readonly PrefabGUID Chain_Brazier_SilverHills_Breakable_Fire02 = new PrefabGUID(-1556188619); public static readonly PrefabGUID Chain_Brazier_SilverHills_Breakable01 = new PrefabGUID(-1519854406); public static readonly PrefabGUID Chain_Breakable_BanditLeaderChair_01 = new PrefabGUID(404677443); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides02 = new PrefabGUID(1108015968); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides03 = new PrefabGUID(-1514332622); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides04 = new PrefabGUID(1628725842); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides05 = new PrefabGUID(-735380494); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides06 = new PrefabGUID(-981592820); public static readonly PrefabGUID Chain_Breakable_BanditTailor_HidesBeam01 = new PrefabGUID(-1304812236); public static readonly PrefabGUID Chain_Breakable_BanditTailor_HidesBeam02 = new PrefabGUID(1697502808); public static readonly PrefabGUID Chain_Breakable_BanditTailor_IdleInteraction_TanningRack01 = new PrefabGUID(-169644015); public static readonly PrefabGUID Chain_Breakable_BanditTailor_SkinningTable01 = new PrefabGUID(257002019); public static readonly PrefabGUID Chain_Breakable_BanditTailor_SkinningTable02 = new PrefabGUID(-1204593971); public static readonly PrefabGUID Chain_Breakable_BanditTailor_TanningRack01 = new PrefabGUID(-1468550941); public static readonly PrefabGUID Chain_Breakable_BanditTailor_TanningRack02 = new PrefabGUID(1076526415); public static readonly PrefabGUID Chain_Breakable_BarCounter01 = new PrefabGUID(1439627727); public static readonly PrefabGUID Chain_Breakable_BarCounter02 = new PrefabGUID(-1057014014); public static readonly PrefabGUID Chain_Breakable_Bunkbed_01 = new PrefabGUID(595345618); public static readonly PrefabGUID Chain_Breakable_Bunkbed_02 = new PrefabGUID(1426054086); public static readonly PrefabGUID Chain_Breakable_Bunkbed_03 = new PrefabGUID(1241906218); public static readonly PrefabGUID Chain_Breakable_Candleholder_01 = new PrefabGUID(-537578846); public static readonly PrefabGUID Chain_Breakable_Candleholder_02 = new PrefabGUID(-601154204); public static readonly PrefabGUID Chain_Breakable_ChurchOfTheDamned_Candleholder01 = new PrefabGUID(-851013968); public static readonly PrefabGUID Chain_Breakable_ChurchOfTheDamned_Candleholder01_PurpleVar = new PrefabGUID(871433602); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarLantern_01 = new PrefabGUID(1079979818); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarLantern_02 = new PrefabGUID(-753916626); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarLantern_03 = new PrefabGUID(2063042385); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarStub01 = new PrefabGUID(210304051); public static readonly PrefabGUID Chain_Breakable_Elris_Bag_01 = new PrefabGUID(497919361); public static readonly PrefabGUID Chain_Breakable_Elris_Bag_02 = new PrefabGUID(414148113); public static readonly PrefabGUID Chain_Breakable_Elris_Bag_03 = new PrefabGUID(-286643372); public static readonly PrefabGUID Chain_Breakable_Elris_Bags_01 = new PrefabGUID(922276667); public static readonly PrefabGUID Chain_Breakable_Elris_Bed_01 = new PrefabGUID(1406048089); public static readonly PrefabGUID Chain_Breakable_Elris_Bench_01 = new PrefabGUID(-906771171); public static readonly PrefabGUID Chain_Breakable_Elris_Fishpole_01 = new PrefabGUID(-1967629273); public static readonly PrefabGUID Chain_Breakable_Elris_Fishpole_02 = new PrefabGUID(354001642); public static readonly PrefabGUID Chain_Breakable_Elris_Hangingfish_01 = new PrefabGUID(-703531470); public static readonly PrefabGUID Chain_Breakable_Elris_Hidebag_01 = new PrefabGUID(-1587815415); public static readonly PrefabGUID Chain_Breakable_Elris_Stool_01 = new PrefabGUID(1532651600); public static readonly PrefabGUID Chain_Breakable_Elris_Stool_02 = new PrefabGUID(936831037); public static readonly PrefabGUID Chain_Breakable_Elris_Table_01 = new PrefabGUID(1025989392); public static readonly PrefabGUID Chain_Breakable_Elris_Table_02 = new PrefabGUID(174304727); public static readonly PrefabGUID Chain_Breakable_Elris_Table_03 = new PrefabGUID(1649446261); public static readonly PrefabGUID Chain_Breakable_FineBed_01 = new PrefabGUID(1529680785); public static readonly PrefabGUID Chain_Breakable_FineBedTable01 = new PrefabGUID(208967005); public static readonly PrefabGUID Chain_Breakable_FineChair_01 = new PrefabGUID(-1547185920); public static readonly PrefabGUID Chain_Breakable_FineTable_01 = new PrefabGUID(-1193358597); public static readonly PrefabGUID Chain_Breakable_FineTable_Vineyard01 = new PrefabGUID(-263695812); public static readonly PrefabGUID Chain_Breakable_Gazebo_Alchemyboard01 = new PrefabGUID(-1765882329); public static readonly PrefabGUID Chain_Breakable_Gazebo_Alchemytable01 = new PrefabGUID(1468923650); public static readonly PrefabGUID Chain_Breakable_Gazebo_Alchemytable02 = new PrefabGUID(1652323837); public static readonly PrefabGUID Chain_Breakable_GhostHouseBed_01 = new PrefabGUID(-782303328); public static readonly PrefabGUID Chain_Breakable_GhostHouseChair01 = new PrefabGUID(-1045768484); public static readonly PrefabGUID Chain_Breakable_GhostHouseChair02 = new PrefabGUID(-49194869); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_01 = new PrefabGUID(-691238222); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_02 = new PrefabGUID(-811640246); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_03 = new PrefabGUID(-409712031); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_04 = new PrefabGUID(-1520427232); public static readonly PrefabGUID Chain_Breakable_HousePlant01_01 = new PrefabGUID(673489157); public static readonly PrefabGUID Chain_Breakable_HousePlant01_02 = new PrefabGUID(1661316254); public static readonly PrefabGUID Chain_Breakable_HousePlant01_03 = new PrefabGUID(-251278318); public static readonly PrefabGUID Chain_Breakable_HousePlant01_04 = new PrefabGUID(2070202121); public static readonly PrefabGUID Chain_Breakable_HousePlant02_01 = new PrefabGUID(1577569052); public static readonly PrefabGUID Chain_Breakable_HousePlant02_02 = new PrefabGUID(-499554065); public static readonly PrefabGUID Chain_Breakable_HousePlant02_03 = new PrefabGUID(1950457276); public static readonly PrefabGUID Chain_Breakable_HousePlant03_01 = new PrefabGUID(996616487); public static readonly PrefabGUID Chain_Breakable_HousePlant03_02 = new PrefabGUID(766285732); public static readonly PrefabGUID Chain_Breakable_HousePlant03_03 = new PrefabGUID(535012786); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_01 = new PrefabGUID(496248248); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_02 = new PrefabGUID(1614813475); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_03 = new PrefabGUID(1603241778); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_03_InteractionIdle = new PrefabGUID(-509196075); public static readonly PrefabGUID Chain_Breakable_Mine_BoxDynamite_01 = new PrefabGUID(-67724610); public static readonly PrefabGUID Chain_Breakable_Pedestal_Candle_01 = new PrefabGUID(-255250731); public static readonly PrefabGUID Chain_Breakable_Pedestal_Lamp01 = new PrefabGUID(-340138914); public static readonly PrefabGUID Chain_Breakable_Pedestal_Plant_01 = new PrefabGUID(496233560); public static readonly PrefabGUID Chain_Breakable_Rustic_Table_01 = new PrefabGUID(23191766); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_01 = new PrefabGUID(-61279519); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_02 = new PrefabGUID(1847273354); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_03 = new PrefabGUID(1635007514); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_04 = new PrefabGUID(-1073111350); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_05 = new PrefabGUID(-1855997157); public static readonly PrefabGUID Chain_Breakable_Sign01 = new PrefabGUID(1855105912); public static readonly PrefabGUID Chain_Breakable_Sign02 = new PrefabGUID(898813458); public static readonly PrefabGUID Chain_Breakable_Sign03 = new PrefabGUID(1245468417); public static readonly PrefabGUID Chain_Breakable_Sign04 = new PrefabGUID(-1358113854); public static readonly PrefabGUID Chain_Breakable_Sign05 = new PrefabGUID(-1867054714); public static readonly PrefabGUID Chain_Breakable_SilverMine_BookPedestal01 = new PrefabGUID(-423600667); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneBench01 = new PrefabGUID(435089707); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneBench02 = new PrefabGUID(613011902); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneTable01 = new PrefabGUID(-403913167); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneTable02 = new PrefabGUID(344188467); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenBed_01 = new PrefabGUID(-79718449); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenChair_01 = new PrefabGUID(1998899655); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenChair_02 = new PrefabGUID(-1346953307); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_01 = new PrefabGUID(-2128537368); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_02 = new PrefabGUID(-755979755); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_03 = new PrefabGUID(-1724718560); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_04 = new PrefabGUID(1764703016); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_05 = new PrefabGUID(988244965); public static readonly PrefabGUID Chain_Breakable_SlumBed_01 = new PrefabGUID(-1891872708); public static readonly PrefabGUID Chain_Breakable_SlumBedTable01 = new PrefabGUID(1473084893); public static readonly PrefabGUID Chain_Breakable_SlumChair_01 = new PrefabGUID(1181457876); public static readonly PrefabGUID Chain_Breakable_StoneBench_01 = new PrefabGUID(527562299); public static readonly PrefabGUID Chain_Breakable_StoneBench_01_snow = new PrefabGUID(-1829456676); public static readonly PrefabGUID Chain_Breakable_TarBucket01 = new PrefabGUID(584948261); public static readonly PrefabGUID Chain_Breakable_TarBucket02 = new PrefabGUID(595365365); public static readonly PrefabGUID Chain_Breakable_TarBucket03 = new PrefabGUID(-1260877979); public static readonly PrefabGUID Chain_Breakable_Tomb_01 = new PrefabGUID(1577515274); public static readonly PrefabGUID Chain_Breakable_Tomb_02 = new PrefabGUID(539451813); public static readonly PrefabGUID Chain_Breakable_Tomb_03 = new PrefabGUID(-1530780550); public static readonly PrefabGUID Chain_Breakable_Tomb_04 = new PrefabGUID(-971265702); public static readonly PrefabGUID Chain_Breakable_Tomb_05 = new PrefabGUID(1412387206); public static readonly PrefabGUID Chain_Breakable_Tomb_06 = new PrefabGUID(1174706971); public static readonly PrefabGUID Chain_Breakable_Tomb_07 = new PrefabGUID(-1960103114); public static readonly PrefabGUID Chain_Breakable_Tomb_08 = new PrefabGUID(-1625967525); public static readonly PrefabGUID Chain_Breakable_TombBig_01 = new PrefabGUID(-1197145030); public static readonly PrefabGUID Chain_Breakable_TombBig_02 = new PrefabGUID(-1980880133); public static readonly PrefabGUID Chain_Breakable_TombBig_03 = new PrefabGUID(-1055053138); public static readonly PrefabGUID Chain_Breakable_Village_Candleholder01 = new PrefabGUID(-329304675); public static readonly PrefabGUID Chain_Breakable_Vineyard_Table01 = new PrefabGUID(-1467863030); public static readonly PrefabGUID Chain_CastleRuins_Entrance_Standard01 = new PrefabGUID(382626606); public static readonly PrefabGUID Chain_CastleRuins_Entrance_Standard02 = new PrefabGUID(1222030386); public static readonly PrefabGUID Chain_CastleRuins_Entrance_Standard03 = new PrefabGUID(632013137); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken01 = new PrefabGUID(776819940); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken02 = new PrefabGUID(-422762123); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken03 = new PrefabGUID(-1932973691); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken04 = new PrefabGUID(765324751); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Standard01 = new PrefabGUID(1808834603); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Standard02 = new PrefabGUID(502397696); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Standard03 = new PrefabGUID(1232631258); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard01 = new PrefabGUID(15649162); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard02 = new PrefabGUID(-1398101744); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard03 = new PrefabGUID(-407024883); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard04 = new PrefabGUID(-1910764055); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard05 = new PrefabGUID(-1654610763); public static readonly PrefabGUID Chain_Catacomb_Brazier01 = new PrefabGUID(-236398713); public static readonly PrefabGUID Chain_Church_Fence_01 = new PrefabGUID(-52762278); public static readonly PrefabGUID Chain_Church_Fence_02 = new PrefabGUID(-753913317); public static readonly PrefabGUID Chain_Church_Fence_03 = new PrefabGUID(2122259209); public static readonly PrefabGUID Chain_Church_Podium_01 = new PrefabGUID(-1732213950); public static readonly PrefabGUID Chain_ChurchBench_01 = new PrefabGUID(1969340824); public static readonly PrefabGUID Chain_ChurchOfTheDamned_AltarBreakable01 = new PrefabGUID(-255525678); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable01 = new PrefabGUID(656788019); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable01_PurpleVar = new PrefabGUID(1169809830); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable02 = new PrefabGUID(-980047108); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable03 = new PrefabGUID(21003280); public static readonly PrefabGUID Chain_ChurchOfTheDamned_DecoPillarBreakable01 = new PrefabGUID(2067871353); public static readonly PrefabGUID Chain_ChurchOfTheDamned_DecoPillarBreakable02 = new PrefabGUID(-174194608); public static readonly PrefabGUID Chain_Container_Bookshelf_01 = new PrefabGUID(1562288832); public static readonly PrefabGUID Chain_Container_Cabinet_01 = new PrefabGUID(-801303222); public static readonly PrefabGUID Chain_Container_Church_Cupboard_01 = new PrefabGUID(1506331618); public static readonly PrefabGUID Chain_Container_FineDrawers_01 = new PrefabGUID(-749573495); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_01 = new PrefabGUID(142311341); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_02 = new PrefabGUID(689099990); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_03 = new PrefabGUID(1088594853); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_04 = new PrefabGUID(-2130119230); public static readonly PrefabGUID Chain_Container_GloomRot_BookCase01 = new PrefabGUID(1318217814); public static readonly PrefabGUID Chain_Container_GloomRot_BookCase02 = new PrefabGUID(1967085292); public static readonly PrefabGUID Chain_Container_GloomRot_Cabinet01 = new PrefabGUID(-1393228723); public static readonly PrefabGUID Chain_Container_GloomRot_Cabinet02 = new PrefabGUID(-476799593); public static readonly PrefabGUID Chain_Container_GloomRot_Desk01 = new PrefabGUID(887141740); public static readonly PrefabGUID Chain_Container_GrapeStompbarrel01 = new PrefabGUID(-738342833); public static readonly PrefabGUID Chain_Container_GrapeStompbarrel02 = new PrefabGUID(865731392); public static readonly PrefabGUID Chain_Container_Sarcofag_01 = new PrefabGUID(-1955787132); public static readonly PrefabGUID Chain_Container_SimpleDrawers_01 = new PrefabGUID(-819738668); public static readonly PrefabGUID Chain_Container_SimpleDrawers_02 = new PrefabGUID(453886744); public static readonly PrefabGUID Chain_Container_SimpleDrawers_03 = new PrefabGUID(-2033826624); public static readonly PrefabGUID Chain_Container_SimpleDrawers_04 = new PrefabGUID(-1535257064); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Big01 = new PrefabGUID(-1248485165); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Big02 = new PrefabGUID(739038704); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Small01 = new PrefabGUID(-186256418); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Small02 = new PrefabGUID(207993714); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Small03 = new PrefabGUID(404339207); public static readonly PrefabGUID Chain_Container_Strongblade_Shelf_Small01 = new PrefabGUID(1688101334); public static readonly PrefabGUID Chain_Container_Strongblade_Shelf_Small02 = new PrefabGUID(-672584974); public static readonly PrefabGUID Chain_Container_WorldChest_Epic_01 = new PrefabGUID(-1374682671); public static readonly PrefabGUID Chain_Container_WorldChest_Iron_01 = new PrefabGUID(689881405); public static readonly PrefabGUID Chain_Container_WorldChest_Simple_01 = new PrefabGUID(1030529353); public static readonly PrefabGUID Chain_Container_WorldChest_Simple_GloomRot_01 = new PrefabGUID(-1435475951); public static readonly PrefabGUID Chain_Container_WorldChest_Simple_SludgePools_01 = new PrefabGUID(1861589024); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfThin_01 = new PrefabGUID(1938683324); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfThin_02 = new PrefabGUID(1235256591); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfWide_01 = new PrefabGUID(-1039578808); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfWide_02 = new PrefabGUID(1007410078); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfWide_03 = new PrefabGUID(1848299223); public static readonly PrefabGUID Chain_Crate_01 = new PrefabGUID(-1342794667); public static readonly PrefabGUID Chain_Crate_02 = new PrefabGUID(1405952787); public static readonly PrefabGUID Chain_Crate_Cluster_01 = new PrefabGUID(-1897098794); public static readonly PrefabGUID Chain_Crate_Cluster_02 = new PrefabGUID(-525495546); public static readonly PrefabGUID Chain_Crate_Large_01 = new PrefabGUID(-1273737741); public static readonly PrefabGUID Chain_Crate_Large_Snow_01 = new PrefabGUID(-1957818680); public static readonly PrefabGUID Chain_Crate_Oak_01 = new PrefabGUID(-749591133); public static readonly PrefabGUID Chain_Crate_Oak_02 = new PrefabGUID(2120683808); public static readonly PrefabGUID Chain_Crate_Oak_Large_01 = new PrefabGUID(-1055001271); public static readonly PrefabGUID Chain_Crate_Oak_Large_02 = new PrefabGUID(405563821); public static readonly PrefabGUID Chain_Crate_Snow_01 = new PrefabGUID(-309421649); public static readonly PrefabGUID Chain_Crate_Snow_02 = new PrefabGUID(328231343); public static readonly PrefabGUID Chain_CursedTree_01 = new PrefabGUID(868646793); public static readonly PrefabGUID Chain_CursedTree_02 = new PrefabGUID(36975993); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T01 = new PrefabGUID(862237633); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T02 = new PrefabGUID(1090785612); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T03 = new PrefabGUID(-1339068604); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T04 = new PrefabGUID(502634829); public static readonly PrefabGUID Chain_Debug_SpellKitChest_TXX = new PrefabGUID(2060805957); public static readonly PrefabGUID Chain_Debug_UserTestChest_T01 = new PrefabGUID(-1235275444); public static readonly PrefabGUID Chain_Debug_UserTestChest_T02 = new PrefabGUID(204483749); public static readonly PrefabGUID Chain_Debug_UserTestChest_T04 = new PrefabGUID(-1677508299); public static readonly PrefabGUID Chain_Debug_UserTestChest_T06 = new PrefabGUID(1060309486); public static readonly PrefabGUID Chain_Door_FineIronFenceGate_01 = new PrefabGUID(-199874841); public static readonly PrefabGUID Chain_Door_FineIronFenceGate_02 = new PrefabGUID(580514731); public static readonly PrefabGUID Chain_Door_IronFenceGate_01 = new PrefabGUID(54278780); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Clean01 = new PrefabGUID(887538350); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Clean01_Fade = new PrefabGUID(2120482575); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Ruin01 = new PrefabGUID(1609254660); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Ruin02 = new PrefabGUID(-1686887539); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Ruin03 = new PrefabGUID(1713226750); public static readonly PrefabGUID Chain_EH_Mine_BoxDynamite_01 = new PrefabGUID(-2019545186); public static readonly PrefabGUID Chain_Elris_CookingFireplace01 = new PrefabGUID(-38224028); public static readonly PrefabGUID Chain_ElrisFlag01 = new PrefabGUID(198402144); public static readonly PrefabGUID Chain_ElrisFlag02 = new PrefabGUID(-496501402); public static readonly PrefabGUID Chain_ElrisFlag03 = new PrefabGUID(822423359); public static readonly PrefabGUID Chain_ElrisMountain_Sled_01 = new PrefabGUID(-814052722); public static readonly PrefabGUID Chain_ElrisMountain_Sled_02 = new PrefabGUID(1476919638); public static readonly PrefabGUID Chain_ElrisMountain_Sled_03 = new PrefabGUID(1057124060); public static readonly PrefabGUID Chain_Emery01_Barrel01 = new PrefabGUID(5906677); public static readonly PrefabGUID Chain_Emery01_Barrel02 = new PrefabGUID(1903790313); public static readonly PrefabGUID Chain_EmptyObject_01 = new PrefabGUID(44385421); public static readonly PrefabGUID Chain_EmptyObject_Fish_01 = new PrefabGUID(2091546819); public static readonly PrefabGUID Chain_FarmRuin_Pillar01 = new PrefabGUID(-1686594934); public static readonly PrefabGUID Chain_FarmRuin_Pillar02 = new PrefabGUID(1007150817); public static readonly PrefabGUID Chain_FarmRuin_Pillar03 = new PrefabGUID(-311424051); public static readonly PrefabGUID Chain_FarmRuin_Pillar04 = new PrefabGUID(-848181449); public static readonly PrefabGUID Chain_FarmRuin_Pillar05 = new PrefabGUID(127959259); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar01 = new PrefabGUID(-1620647793); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar02 = new PrefabGUID(-1772575907); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar03 = new PrefabGUID(-1557593452); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar04 = new PrefabGUID(-192221093); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal01 = new PrefabGUID(1327100637); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal02 = new PrefabGUID(304497398); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal03 = new PrefabGUID(-1869983618); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal04 = new PrefabGUID(-1250592472); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall01 = new PrefabGUID(-568579474); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall02 = new PrefabGUID(701028722); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall03 = new PrefabGUID(1218245186); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall04 = new PrefabGUID(-1918053009); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal01 = new PrefabGUID(-1184748550); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal02 = new PrefabGUID(-617553964); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal03 = new PrefabGUID(-799241750); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal04 = new PrefabGUID(1545273691); public static readonly PrefabGUID Chain_FarmRuin_Wall01 = new PrefabGUID(-994267128); public static readonly PrefabGUID Chain_FarmRuin_Wall02 = new PrefabGUID(89760366); public static readonly PrefabGUID Chain_FarmRuin_Wall03 = new PrefabGUID(1583661556); public static readonly PrefabGUID Chain_FarmRuin_Wall04 = new PrefabGUID(1849670702); public static readonly PrefabGUID Chain_FarmRuin_Wall05 = new PrefabGUID(175788063); public static readonly PrefabGUID Chain_FarmRuin_Wall06 = new PrefabGUID(908169330); public static readonly PrefabGUID Chain_FarmRuin_Wall07 = new PrefabGUID(-1867924683); public static readonly PrefabGUID Chain_FarmRuin_Wall08 = new PrefabGUID(865046236); public static readonly PrefabGUID Chain_FarmRuin_Wall09 = new PrefabGUID(-1751703731); public static readonly PrefabGUID Chain_Fence_Church_WoodenFence_01 = new PrefabGUID(1638873405); public static readonly PrefabGUID Chain_Fence_Elris_01 = new PrefabGUID(-1434459311); public static readonly PrefabGUID Chain_Fence_Elris_02 = new PrefabGUID(1289106850); public static readonly PrefabGUID Chain_Fence_Elris_03 = new PrefabGUID(-840562311); public static readonly PrefabGUID Chain_Fence_Elris_Diagonal_01 = new PrefabGUID(864753188); public static readonly PrefabGUID Chain_Fence_Elris_Diagonal_02 = new PrefabGUID(1643735950); public static readonly PrefabGUID Chain_Fence_FineIronFence_02 = new PrefabGUID(517305299); public static readonly PrefabGUID Chain_Fence_Gloomrot_01 = new PrefabGUID(-935442225); public static readonly PrefabGUID Chain_Fence_Gloomrot_02 = new PrefabGUID(-967000533); public static readonly PrefabGUID Chain_Fence_Gloomrot_03 = new PrefabGUID(-1338674971); public static readonly PrefabGUID Chain_Fence_Gloomrot_03_RATSONLY = new PrefabGUID(-308319429); public static readonly PrefabGUID Chain_Fence_Gloomrot_04 = new PrefabGUID(1299788485); public static readonly PrefabGUID Chain_Fence_Gloomrot_04_RATSONLY = new PrefabGUID(1785272779); public static readonly PrefabGUID Chain_Fence_Gloomrot_Barbedwire_End01 = new PrefabGUID(-350057518); public static readonly PrefabGUID Chain_Fence_Gloomrot_Diagonal_01 = new PrefabGUID(1957667280); public static readonly PrefabGUID Chain_Fence_Gloomrot_Diagonal_02 = new PrefabGUID(-1888623482); public static readonly PrefabGUID Chain_Fence_Gloomrot_Diagonal_02_RATSONLY = new PrefabGUID(2122229819); public static readonly PrefabGUID Chain_Fence_Gloomrot_End01 = new PrefabGUID(-595091926); public static readonly PrefabGUID Chain_Fence_Gloomrot_End02 = new PrefabGUID(-455661433); public static readonly PrefabGUID Chain_Fence_Gloomrot_End02_RATSONLY = new PrefabGUID(-624662733); public static readonly PrefabGUID Chain_Fence_Gloomrot_Gate01 = new PrefabGUID(-313311024); public static readonly PrefabGUID Chain_Fence_Gloomrot_Gate02 = new PrefabGUID(-2117308193); public static readonly PrefabGUID Chain_Fence_Gloomrot_Gate02_RATSONLY = new PrefabGUID(225387033); public static readonly PrefabGUID Chain_Fence_IronFence_01 = new PrefabGUID(-957213046); public static readonly PrefabGUID Chain_Fence_ScantyStick_01 = new PrefabGUID(1320736819); public static readonly PrefabGUID Chain_Fence_ScantyStick_02 = new PrefabGUID(-420962256); public static readonly PrefabGUID Chain_Fence_ScantyStick_03 = new PrefabGUID(-723706508); public static readonly PrefabGUID Chain_Fence_ScantyStick_Diagonal_01 = new PrefabGUID(-297404801); public static readonly PrefabGUID Chain_Fence_ScantyStick_Diagonal_02 = new PrefabGUID(-1929858734); public static readonly PrefabGUID Chain_Fence_ScantyStick_End01 = new PrefabGUID(-681683189); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_01 = new PrefabGUID(1536139530); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_02 = new PrefabGUID(122362845); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_03 = new PrefabGUID(758634256); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_04 = new PrefabGUID(491805387); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_05 = new PrefabGUID(695561439); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Diagonal_01 = new PrefabGUID(-1049091737); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Diagonal_02 = new PrefabGUID(-524038109); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Diagonal_03 = new PrefabGUID(1097300870); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Gate_01 = new PrefabGUID(-1910043055); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_GateEntrance_01 = new PrefabGUID(-143332382); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_01 = new PrefabGUID(-97337688); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_02 = new PrefabGUID(-1054728599); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_03 = new PrefabGUID(-1012298496); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_Diagonal_01 = new PrefabGUID(-466491618); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_Diagonal_02 = new PrefabGUID(-953823630); public static readonly PrefabGUID Chain_FencePole_Church_WoodenFence_01 = new PrefabGUID(2107332906); public static readonly PrefabGUID Chain_FencePole_FineIronFencePole_02 = new PrefabGUID(276427843); public static readonly PrefabGUID Chain_FencePole_IronFencePole_01 = new PrefabGUID(-994356099); public static readonly PrefabGUID Chain_FineLampPost_01 = new PrefabGUID(1823825333); public static readonly PrefabGUID Chain_FineLampPost_02 = new PrefabGUID(1448824815); public static readonly PrefabGUID Chain_FineLampPost_03 = new PrefabGUID(785072193); public static readonly PrefabGUID Chain_FineStoneBench_01 = new PrefabGUID(-1461234194); public static readonly PrefabGUID Chain_FineTomb_01 = new PrefabGUID(-744554372); public static readonly PrefabGUID Chain_FineTomb_02 = new PrefabGUID(1214021842); public static readonly PrefabGUID Chain_FineTomb_03 = new PrefabGUID(-1339328617); public static readonly PrefabGUID Chain_FineTomb_04 = new PrefabGUID(-992697631); public static readonly PrefabGUID Chain_FineTomb_05 = new PrefabGUID(-475943840); public static readonly PrefabGUID Chain_FineTomb_06 = new PrefabGUID(-1619272945); public static readonly PrefabGUID Chain_FineTomb_07 = new PrefabGUID(1588717774); public static readonly PrefabGUID Chain_FineTomb_08 = new PrefabGUID(-959854182); public static readonly PrefabGUID Chain_FineTombBig_01 = new PrefabGUID(683820962); public static readonly PrefabGUID Chain_FineTombBig_02 = new PrefabGUID(1078202207); public static readonly PrefabGUID Chain_FineTombBig_03 = new PrefabGUID(-196378282); public static readonly PrefabGUID Chain_ForgeMaster_Barrel01 = new PrefabGUID(-764211517); public static readonly PrefabGUID Chain_ForgeMaster_Barrel02 = new PrefabGUID(1545687526); public static readonly PrefabGUID Chain_ForgeMaster_Weaponrack01 = new PrefabGUID(319620170); public static readonly PrefabGUID Chain_FortressOfLight_Railing_01 = new PrefabGUID(810235340); public static readonly PrefabGUID Chain_FortressOfLight_Railing_01_Flipped = new PrefabGUID(-1397846361); public static readonly PrefabGUID Chain_FortressOfLight_Railing_02 = new PrefabGUID(31978919); public static readonly PrefabGUID Chain_FortressOfLight_Railing_03 = new PrefabGUID(-1270441628); public static readonly PrefabGUID Chain_FortressOfLight_Railing_03_Flipped = new PrefabGUID(999408311); public static readonly PrefabGUID Chain_FortressOfLight_Railing_Pillar_01 = new PrefabGUID(-2101500574); public static readonly PrefabGUID Chain_GameplayProp_ArmorRack = new PrefabGUID(-1679466087); public static readonly PrefabGUID Chain_GameplayProp_CurseWisp = new PrefabGUID(1785914210); public static readonly PrefabGUID Chain_GameplayProp_Dracula_Pillar = new PrefabGUID(793146619); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_Door = new PrefabGUID(1855941069); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_EnergyBeam = new PrefabGUID(1330108515); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_Gate = new PrefabGUID(-676465616); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_Generator = new PrefabGUID(-1387103544); public static readonly PrefabGUID Chain_GameplayProp_WerewolfChieftain_FarmerCage = new PrefabGUID(286443738); public static readonly PrefabGUID Chain_GhostCrate_01 = new PrefabGUID(1252359913); public static readonly PrefabGUID Chain_GhostCrate_02 = new PrefabGUID(26740790); public static readonly PrefabGUID Chain_GhostCrate_03 = new PrefabGUID(-419896754); public static readonly PrefabGUID Chain_GhostCrate_04 = new PrefabGUID(1233234274); public static readonly PrefabGUID Chain_Glassblower_Barrel01 = new PrefabGUID(573655066); public static readonly PrefabGUID Chain_Glassblower_Barrel02 = new PrefabGUID(406854563); public static readonly PrefabGUID Chain_Glassblower_Barrel03 = new PrefabGUID(462219111); public static readonly PrefabGUID Chain_Glassblower_Bucket01 = new PrefabGUID(-674939156); public static readonly PrefabGUID Chain_Glassblower_Bucket02 = new PrefabGUID(2138199318); public static readonly PrefabGUID Chain_Glassblower_Crate01 = new PrefabGUID(-2074795030); public static readonly PrefabGUID Chain_Glassblower_Crate02 = new PrefabGUID(-336759989); public static readonly PrefabGUID Chain_Glassblower_Crate03 = new PrefabGUID(363832110); public static readonly PrefabGUID Chain_Glassblower_Crate04 = new PrefabGUID(1597868163); public static readonly PrefabGUID Chain_Glassblower_Minecart01 = new PrefabGUID(-1744926783); public static readonly PrefabGUID Chain_Glassblower_Minecart02 = new PrefabGUID(1020203495); public static readonly PrefabGUID Chain_Glassblower_Table01 = new PrefabGUID(487331684); public static readonly PrefabGUID Chain_Glassblower_Table02 = new PrefabGUID(-2062953569); public static readonly PrefabGUID Chain_Glassblower_Table03 = new PrefabGUID(822185540); public static readonly PrefabGUID Chain_Glassblower_Table04 = new PrefabGUID(1266010233); public static readonly PrefabGUID Chain_Glassblower_Table05 = new PrefabGUID(1280358501); public static readonly PrefabGUID Chain_Glassblower_Table06 = new PrefabGUID(2073604385); public static readonly PrefabGUID Chain_Glassblower_Table07 = new PrefabGUID(1513383427); public static readonly PrefabGUID Chain_Glassblower_Toolstand01 = new PrefabGUID(1208169300); public static readonly PrefabGUID Chain_Glassblower_Toolstand02 = new PrefabGUID(1194137959); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow01 = new PrefabGUID(-725885270); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow02 = new PrefabGUID(319567471); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow03 = new PrefabGUID(-1523483681); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow04 = new PrefabGUID(-574183546); public static readonly PrefabGUID Chain_GloomRot_Cage01 = new PrefabGUID(1979232218); public static readonly PrefabGUID Chain_GloomRot_Cage02 = new PrefabGUID(1879046433); public static readonly PrefabGUID Chain_GloomRot_Cage03 = new PrefabGUID(1371219862); public static readonly PrefabGUID Chain_GloomRot_Cage04 = new PrefabGUID(2071728638); public static readonly PrefabGUID Chain_GloomRot_Chair01 = new PrefabGUID(1740882208); public static readonly PrefabGUID Chain_GloomRot_CoilFactory_Lamp01 = new PrefabGUID(-196671199); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_Screen01 = new PrefabGUID(-5244148); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_Screen02 = new PrefabGUID(1541138182); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf01 = new PrefabGUID(-906833536); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf02 = new PrefabGUID(2030386659); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf03 = new PrefabGUID(-1580284267); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf04 = new PrefabGUID(152314015); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Table01 = new PrefabGUID(1392364543); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Table02 = new PrefabGUID(-1151508793); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Table03 = new PrefabGUID(268254029); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy01 = new PrefabGUID(-394124820); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy02 = new PrefabGUID(-287116189); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy03 = new PrefabGUID(-1519010368); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy04 = new PrefabGUID(328857375); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01 = new PrefabGUID(916098211); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01_01 = new PrefabGUID(-1757768215); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01_02 = new PrefabGUID(148052929); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01_03 = new PrefabGUID(-676235627); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02 = new PrefabGUID(1482197669); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_01 = new PrefabGUID(-1224660047); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_02 = new PrefabGUID(-1237821374); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_03 = new PrefabGUID(-1844563963); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_04 = new PrefabGUID(-396736557); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_05 = new PrefabGUID(-1028771858); public static readonly PrefabGUID Chain_Gloomrot_Coppermine_Lamp01 = new PrefabGUID(554013862); public static readonly PrefabGUID Chain_Gloomrot_Coppermine_Lamp02 = new PrefabGUID(-953416906); public static readonly PrefabGUID Chain_Gloomrot_Coppermine_Lamp03 = new PrefabGUID(-1830498719); public static readonly PrefabGUID Chain_Gloomrot_Farm_Lamp01 = new PrefabGUID(-1289682054); public static readonly PrefabGUID Chain_Gloomrot_Farm_Tank01 = new PrefabGUID(2002587166); public static readonly PrefabGUID Chain_Gloomrot_Farm01 = new PrefabGUID(-284637710); public static readonly PrefabGUID Chain_Gloomrot_Farm02 = new PrefabGUID(-1891143319); public static readonly PrefabGUID Chain_GloomRot_Fence_Wood_Diagonal01 = new PrefabGUID(561952084); public static readonly PrefabGUID Chain_GloomRot_Fence_Wood01 = new PrefabGUID(-144288563); public static readonly PrefabGUID Chain_GloomRot_Fence_Wood02 = new PrefabGUID(1493266257); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_01 = new PrefabGUID(1906383029); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_01_FireOn = new PrefabGUID(1994468199); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_02 = new PrefabGUID(-1286186694); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_02_FireOn = new PrefabGUID(1705114843); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair_Body01 = new PrefabGUID(354061306); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair_Body02 = new PrefabGUID(1065863980); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair01 = new PrefabGUID(-674334998); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair02 = new PrefabGUID(238702657); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair03 = new PrefabGUID(1461841852); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Drape01 = new PrefabGUID(1106205902); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Drape02 = new PrefabGUID(-1895706519); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table01 = new PrefabGUID(121882351); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table02 = new PrefabGUID(-941545914); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table03 = new PrefabGUID(1231776975); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table04 = new PrefabGUID(-2134846338); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table05 = new PrefabGUID(-2023226428); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table06 = new PrefabGUID(-190892558); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table07 = new PrefabGUID(-48436509); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table08 = new PrefabGUID(-1595709900); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table09 = new PrefabGUID(498328514); public static readonly PrefabGUID Chain_GloomRot_Laboratory_WoodenShelf01 = new PrefabGUID(-1558086688); public static readonly PrefabGUID Chain_GloomRot_Laboratory_WoodenShelf02 = new PrefabGUID(1056034242); public static readonly PrefabGUID Chain_GloomRot_Laboratory_WoodenShelf03 = new PrefabGUID(913073644); public static readonly PrefabGUID Chain_GloomRot_LampPost01 = new PrefabGUID(1065791684); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked01 = new PrefabGUID(-1447472156); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked01_01 = new PrefabGUID(346735858); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked02 = new PrefabGUID(-303508853); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked02_01 = new PrefabGUID(1761782281); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked03 = new PrefabGUID(-2038219295); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked03_01 = new PrefabGUID(694997263); public static readonly PrefabGUID Chain_GloomRot_Screen01 = new PrefabGUID(-1221639364); public static readonly PrefabGUID Chain_GloomRot_Screen02 = new PrefabGUID(-1587314505); public static readonly PrefabGUID Chain_Gloomrot_Sludgepool_Pipeholder01 = new PrefabGUID(1013839676); public static readonly PrefabGUID Chain_Gloomrot_Sludgepool_Workbench01 = new PrefabGUID(-1380428960); public static readonly PrefabGUID Chain_GloomRot_Table01 = new PrefabGUID(496228969); public static readonly PrefabGUID Chain_Gloomrot_TransistorBreakable01 = new PrefabGUID(-1854854044); public static readonly PrefabGUID Chain_Gloomrot_TransistorBreakable02 = new PrefabGUID(-189246740); public static readonly PrefabGUID Chain_GloomRot_VillageHouses_BreakableBalcony01 = new PrefabGUID(350913317); public static readonly PrefabGUID Chain_GloomrotBarrel_01 = new PrefabGUID(-970928259); public static readonly PrefabGUID Chain_GloomrotBarrel_02 = new PrefabGUID(-2081898020); public static readonly PrefabGUID Chain_GloomrotBarrel_03 = new PrefabGUID(314222732); public static readonly PrefabGUID Chain_GloomrotBarrel_04 = new PrefabGUID(-204602191); public static readonly PrefabGUID Chain_GloomrotBarrel_05 = new PrefabGUID(-2000488703); public static readonly PrefabGUID Chain_GloomrotBarrel_SludgePool_SPECIAL_01 = new PrefabGUID(-1338532491); public static readonly PrefabGUID Chain_GloomrotBarrel_SludgePool_SPECIAL_02 = new PrefabGUID(733688435); public static readonly PrefabGUID Chain_GloomrotCrate_01 = new PrefabGUID(-736336730); public static readonly PrefabGUID Chain_GloomrotCrate_02 = new PrefabGUID(-1856876389); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_01 = new PrefabGUID(-1730878026); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_02 = new PrefabGUID(-249008930); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_03 = new PrefabGUID(-1196452192); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_04 = new PrefabGUID(1124405267); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_05 = new PrefabGUID(2028144527); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_06 = new PrefabGUID(417133317); public static readonly PrefabGUID Chain_GloomrotCrateLarge_01 = new PrefabGUID(-1513070973); public static readonly PrefabGUID Chain_GloomrotCrateLarge_02 = new PrefabGUID(-514741711); public static readonly PrefabGUID Chain_GloomrotWoodenBarrel_01 = new PrefabGUID(1597172099); public static readonly PrefabGUID Chain_GloomrotWoodenBarrel_02 = new PrefabGUID(1537217201); public static readonly PrefabGUID Chain_Grave_01_Breakable = new PrefabGUID(1288024281); public static readonly PrefabGUID Chain_Grave_05_Breakable = new PrefabGUID(1601671408); public static readonly PrefabGUID Chain_Grave_06_Breakable = new PrefabGUID(302595855); public static readonly PrefabGUID Chain_Grave_Marker_02SmallBreakable = new PrefabGUID(319754625); public static readonly PrefabGUID Chain_Grave_Site_01_Breakable = new PrefabGUID(2080430853); public static readonly PrefabGUID Chain_GravePile_MicroPOI = new PrefabGUID(329005461); public static readonly PrefabGUID Chain_Gravestone_01_Breakable = new PrefabGUID(652032692); public static readonly PrefabGUID Chain_Gravestone_02_Breakable = new PrefabGUID(-1963697361); public static readonly PrefabGUID Chain_Gravestone_04_Breakable = new PrefabGUID(-1707442830); public static readonly PrefabGUID Chain_Gravestone_05_Breakable = new PrefabGUID(1029383676); public static readonly PrefabGUID Chain_Gravestone_07_Breakable = new PrefabGUID(1634891509); public static readonly PrefabGUID Chain_Gravestone_08_Breakable = new PrefabGUID(275300414); public static readonly PrefabGUID Chain_Gravestone_09_Breakable = new PrefabGUID(155217101); public static readonly PrefabGUID Chain_Gravestone_10_Breakable = new PrefabGUID(1784807806); public static readonly PrefabGUID Chain_Gravestone_11_Breakable = new PrefabGUID(1479570110); public static readonly PrefabGUID Chain_Gravestone_12_Breakable = new PrefabGUID(966399038); public static readonly PrefabGUID Chain_Gravestone_18_Breakable = new PrefabGUID(39137843); public static readonly PrefabGUID Chain_Gravestone_34_Breakable = new PrefabGUID(187343157); public static readonly PrefabGUID Chain_Horsetrack_ArcheryTarget01 = new PrefabGUID(487586181); public static readonly PrefabGUID Chain_Horsetrack_Fence01 = new PrefabGUID(-334433651); public static readonly PrefabGUID Chain_Horsetrack_MilitiaFlag01 = new PrefabGUID(-283246800); public static readonly PrefabGUID Chain_Horsetrack_MilitiaFlag02 = new PrefabGUID(-2142019490); public static readonly PrefabGUID Chain_Horsetrack_MilitiaFlag03 = new PrefabGUID(-1930955970); public static readonly PrefabGUID Chain_Horsetrack_Rack01 = new PrefabGUID(1994427943); public static readonly PrefabGUID Chain_Horsetrack_Rack02 = new PrefabGUID(-774711656); public static readonly PrefabGUID Chain_Horsetrack_TargetDummy01 = new PrefabGUID(-1756047695); public static readonly PrefabGUID Chain_Horsetrack_TargetRings01 = new PrefabGUID(1675094324); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock01 = new PrefabGUID(1635356381); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock02 = new PrefabGUID(-544345763); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock03 = new PrefabGUID(-1154000258); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock04 = new PrefabGUID(461984990); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock01 = new PrefabGUID(-328348028); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock02 = new PrefabGUID(-518527770); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock03 = new PrefabGUID(316257970); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock04 = new PrefabGUID(38845938); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock05 = new PrefabGUID(890939678); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock01 = new PrefabGUID(-1390534304); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock02 = new PrefabGUID(-362977791); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock03 = new PrefabGUID(104232023); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock04 = new PrefabGUID(-187211405); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock05 = new PrefabGUID(-1469767405); public static readonly PrefabGUID Chain_Laboratory_Chair_Leather_01 = new PrefabGUID(1142248316); public static readonly PrefabGUID Chain_Laboratory_Chair_Leather_02 = new PrefabGUID(109096776); public static readonly PrefabGUID Chain_Laboratory_ChalkBoard01 = new PrefabGUID(-1416980380); public static readonly PrefabGUID Chain_Laboratory_ChalkBoard02 = new PrefabGUID(1812298241); public static readonly PrefabGUID Chain_LampPost_01 = new PrefabGUID(-994732970); public static readonly PrefabGUID Chain_LampPost_02 = new PrefabGUID(2037933599); public static readonly PrefabGUID Chain_LampPost_03 = new PrefabGUID(2060161795); public static readonly PrefabGUID Chain_Lucie_PotionCabinet_02 = new PrefabGUID(-1271129442); public static readonly PrefabGUID Chain_Lucie_PotionCabinet_03 = new PrefabGUID(601923792); public static readonly PrefabGUID Chain_Lucie_PotionCabinet_03_NonArena = new PrefabGUID(1228157477); public static readonly PrefabGUID Chain_MageTower_BigDesk01 = new PrefabGUID(787154536); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big01 = new PrefabGUID(1913541656); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big01_WithCollision = new PrefabGUID(-672617270); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big02 = new PrefabGUID(-1084794846); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big02_WithCollision = new PrefabGUID(1344853413); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big03 = new PrefabGUID(1602417295); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big03_WithCollision = new PrefabGUID(-1150655079); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small01 = new PrefabGUID(-1191729239); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small01_45deg = new PrefabGUID(550831519); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small02 = new PrefabGUID(-540898781); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small02_45deg = new PrefabGUID(464991355); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small03 = new PrefabGUID(-188375958); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small03_45deg = new PrefabGUID(1720846585); public static readonly PrefabGUID Chain_MageTower_Bookpile01 = new PrefabGUID(230684639); public static readonly PrefabGUID Chain_MageTower_Bookpile02 = new PrefabGUID(1014878763); public static readonly PrefabGUID Chain_MageTower_Bookpile03 = new PrefabGUID(913134971); public static readonly PrefabGUID Chain_MageTower_CandleHolder01 = new PrefabGUID(-1934389657); public static readonly PrefabGUID Chain_MageTower_Chair01 = new PrefabGUID(809324128); public static readonly PrefabGUID Chain_MageTower_Divan01 = new PrefabGUID(2079445513); public static readonly PrefabGUID Chain_MageTower_Divan02 = new PrefabGUID(-711567015); public static readonly PrefabGUID Chain_MageTower_FlowerPot01 = new PrefabGUID(-1004610804); public static readonly PrefabGUID Chain_MageTower_FlowerPot02 = new PrefabGUID(1658555171); public static readonly PrefabGUID Chain_MageTower_Ladder01 = new PrefabGUID(-1758599042); public static readonly PrefabGUID Chain_MageTower_Ladder02 = new PrefabGUID(1416086767); public static readonly PrefabGUID Chain_MageTower_Ladder03 = new PrefabGUID(-322428312); public static readonly PrefabGUID Chain_MageTower_Lantern01 = new PrefabGUID(-1936024219); public static readonly PrefabGUID Chain_MageTower_Lantern02 = new PrefabGUID(576786972); public static readonly PrefabGUID Chain_MageTower_Prop_Pillar01 = new PrefabGUID(-632435428); public static readonly PrefabGUID Chain_MageTower_Prop_Pillar02 = new PrefabGUID(-905293941); public static readonly PrefabGUID Chain_MageTower_SmallDesk01 = new PrefabGUID(1037822422); public static readonly PrefabGUID Chain_MageTower_SmallDesk02 = new PrefabGUID(11471630); public static readonly PrefabGUID Chain_MageTower_SmallDesk03 = new PrefabGUID(1587267866); public static readonly PrefabGUID Chain_MageTower_SmallDesk04 = new PrefabGUID(-1542802095); public static readonly PrefabGUID Chain_MarketBarrel_01 = new PrefabGUID(-492915787); public static readonly PrefabGUID Chain_MarketBarrel_02 = new PrefabGUID(-804685958); public static readonly PrefabGUID Chain_MarketBarrel_03 = new PrefabGUID(-753538938); public static readonly PrefabGUID Chain_MarketBarrel_04 = new PrefabGUID(-229376678); public static readonly PrefabGUID Chain_MarketCrate_01 = new PrefabGUID(-1681169748); public static readonly PrefabGUID Chain_MarketCrate_02 = new PrefabGUID(-747836550); public static readonly PrefabGUID Chain_MarketCrate_03 = new PrefabGUID(-1965980324); public static readonly PrefabGUID Chain_MarketCrate_04 = new PrefabGUID(1886383947); public static readonly PrefabGUID Chain_MarketCrate_05 = new PrefabGUID(103504917); public static readonly PrefabGUID Chain_MidsummerPole01 = new PrefabGUID(1885468649); public static readonly PrefabGUID Chain_Militia_Barricade_01 = new PrefabGUID(-214544261); public static readonly PrefabGUID Chain_MilitiaCrate_01 = new PrefabGUID(1059111361); public static readonly PrefabGUID Chain_MilitiaCrate_02 = new PrefabGUID(-1664794345); public static readonly PrefabGUID Chain_MilitiaCrate_03 = new PrefabGUID(228446587); public static readonly PrefabGUID Chain_MilitiaCrate_04 = new PrefabGUID(1062000102); public static readonly PrefabGUID Chain_MilitiaCrate_Large_01 = new PrefabGUID(-760211544); public static readonly PrefabGUID Chain_MilitiaCrate_Large_02 = new PrefabGUID(1915188157); public static readonly PrefabGUID Chain_MilitiaFlag01 = new PrefabGUID(-1800250652); public static readonly PrefabGUID Chain_MilitiaFlag02 = new PrefabGUID(-706649618); public static readonly PrefabGUID Chain_MilitiaFlag03 = new PrefabGUID(1491920090); public static readonly PrefabGUID Chain_MilitiaFlag04 = new PrefabGUID(672399722); public static readonly PrefabGUID Chain_Mine_Fence01 = new PrefabGUID(1672569153); public static readonly PrefabGUID Chain_Mine_Fence02 = new PrefabGUID(-837846102); public static readonly PrefabGUID Chain_Mine_Fence03 = new PrefabGUID(1843492068); public static readonly PrefabGUID Chain_Mine_FenceDiagonal01 = new PrefabGUID(-1159104547); public static readonly PrefabGUID Chain_Mine_FenceDiagonal02 = new PrefabGUID(1082520500); public static readonly PrefabGUID Chain_Mine_FenceDiagonal03 = new PrefabGUID(1616415435); public static readonly PrefabGUID Chain_MineCart_01 = new PrefabGUID(993528779); public static readonly PrefabGUID Chain_MineCart_01_IdleInteraction = new PrefabGUID(319764669); public static readonly PrefabGUID Chain_MineCart_01_Iron = new PrefabGUID(1798198041); public static readonly PrefabGUID Chain_MineCart_01_Silver = new PrefabGUID(-1410685440); public static readonly PrefabGUID Chain_MineCartBroken_01 = new PrefabGUID(-91900076); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable01 = new PrefabGUID(-93574745); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable02 = new PrefabGUID(134628963); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable03 = new PrefabGUID(-1053329673); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable04 = new PrefabGUID(1662553570); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable05 = new PrefabGUID(-2104884830); public static readonly PrefabGUID Chain_Noctem_AlchemyTable01 = new PrefabGUID(-1847113104); public static readonly PrefabGUID Chain_Noctem_AlchemyTable02 = new PrefabGUID(2085866978); public static readonly PrefabGUID Chain_Noctem_AlchemyTable03 = new PrefabGUID(468870065); public static readonly PrefabGUID Chain_Noctem_Banner01 = new PrefabGUID(328553239); public static readonly PrefabGUID Chain_Noctem_Barrel01 = new PrefabGUID(-133690050); public static readonly PrefabGUID Chain_Noctem_BloodTap01 = new PrefabGUID(1916571863); public static readonly PrefabGUID Chain_Noctem_Bonfire01 = new PrefabGUID(1498436132); public static readonly PrefabGUID Chain_Noctem_BossThrone01 = new PrefabGUID(741527788); public static readonly PrefabGUID Chain_Noctem_Cage01_Door01 = new PrefabGUID(934746233); public static readonly PrefabGUID Chain_Noctem_Candlestand01 = new PrefabGUID(-638647396); public static readonly PrefabGUID Chain_Noctem_Catacomb_Brazier01 = new PrefabGUID(-729505182); public static readonly PrefabGUID Chain_Noctem_Cauldron01 = new PrefabGUID(-710840114); public static readonly PrefabGUID Chain_Noctem_Chair01 = new PrefabGUID(1094017834); public static readonly PrefabGUID Chain_Noctem_Chair02 = new PrefabGUID(-1978655006); public static readonly PrefabGUID Chain_Noctem_Crate01 = new PrefabGUID(411233630); public static readonly PrefabGUID Chain_Noctem_CrateLarge01 = new PrefabGUID(2101736883); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Brazier_Ruin01 = new PrefabGUID(1302034786); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Brazier_Ruin02 = new PrefabGUID(-776103083); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Brazier01 = new PrefabGUID(-812667586); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase_Ruin01 = new PrefabGUID(1700120366); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase_Ruin02 = new PrefabGUID(-1178850320); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase_Ruin03 = new PrefabGUID(-1725855400); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase01 = new PrefabGUID(-871923920); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase01_Fade = new PrefabGUID(-1931956726); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase02 = new PrefabGUID(-857560812); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin01 = new PrefabGUID(444648116); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin01_lying = new PrefabGUID(-879952978); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin02 = new PrefabGUID(-691156224); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin03 = new PrefabGUID(-347688493); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin04 = new PrefabGUID(1050987523); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase01 = new PrefabGUID(-1161868851); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase01_Fade = new PrefabGUID(-1157655624); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase02 = new PrefabGUID(-1566277348); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Bench01 = new PrefabGUID(-1088825944); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn01 = new PrefabGUID(-1176131572); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn02 = new PrefabGUID(1055905669); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn03 = new PrefabGUID(-643947275); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn04 = new PrefabGUID(774579370); public static readonly PrefabGUID Chain_Noctem_DraculasDemise_Barricade01 = new PrefabGUID(-536324068); public static readonly PrefabGUID Chain_Noctem_DraculaYard_ImpalingSpikes02 = new PrefabGUID(-1726707582); public static readonly PrefabGUID Chain_Noctem_DraculaYard_ImpalingSpikes02_02 = new PrefabGUID(-1328951486); public static readonly PrefabGUID Chain_Noctem_DraculaYard_ImpalingSpikes02_03 = new PrefabGUID(2000432368); public static readonly PrefabGUID Chain_Noctem_HangingTorch01 = new PrefabGUID(69016263); public static readonly PrefabGUID Chain_Noctem_IronMaiden01 = new PrefabGUID(1640947532); public static readonly PrefabGUID Chain_Noctem_IronMaiden02 = new PrefabGUID(-1260160545); public static readonly PrefabGUID Chain_Noctem_IronMaiden03 = new PrefabGUID(-2275233); public static readonly PrefabGUID Chain_Noctem_IronMaiden04 = new PrefabGUID(1799899182); public static readonly PrefabGUID Chain_Noctem_Lantern01 = new PrefabGUID(1400527955); public static readonly PrefabGUID Chain_Noctem_PillarRuin01_Destructable = new PrefabGUID(-948416515); public static readonly PrefabGUID Chain_Noctem_PillarRuin02_Destructable = new PrefabGUID(1893084545); public static readonly PrefabGUID Chain_Noctem_RiftCrystalChild01 = new PrefabGUID(1658220767); public static readonly PrefabGUID Chain_Noctem_RiftCrystalChild02 = new PrefabGUID(-1061011473); public static readonly PrefabGUID Chain_Noctem_StoneUrn_01 = new PrefabGUID(998779099); public static readonly PrefabGUID Chain_Noctem_StoneUrn_02 = new PrefabGUID(-802026488); public static readonly PrefabGUID Chain_Noctem_StoneUrn_03 = new PrefabGUID(1931896046); public static readonly PrefabGUID Chain_Noctem_Tube01 = new PrefabGUID(-1164679768); public static readonly PrefabGUID Chain_Noctem_Tube02 = new PrefabGUID(-1062578219); public static readonly PrefabGUID Chain_Noctem_VampireGravestone_Big_01 = new PrefabGUID(-1467458513); public static readonly PrefabGUID Chain_Noctem_VampireGravestone_Big_02 = new PrefabGUID(-1407405296); public static readonly PrefabGUID Chain_Noctem_VampireGravestone_Big_03 = new PrefabGUID(932047651); public static readonly PrefabGUID Chain_Noctem_VampireGravestone01 = new PrefabGUID(-1244664486); public static readonly PrefabGUID Chain_Noctem_VampireGravestone02 = new PrefabGUID(-1266634800); public static readonly PrefabGUID Chain_Noctem_VampireGravestone03 = new PrefabGUID(447456753); public static readonly PrefabGUID Chain_Noctem_VampireGravestone04 = new PrefabGUID(941268923); public static readonly PrefabGUID Chain_Noctem_VampireGravestone05 = new PrefabGUID(-571878625); public static readonly PrefabGUID Chain_Noctem_VampireGraveyard_Brazier_01 = new PrefabGUID(-620230183); public static readonly PrefabGUID Chain_Noctem_Vendor_Barrel01 = new PrefabGUID(1970482359); public static readonly PrefabGUID Chain_Noctem_Vendor_Crate_Large01 = new PrefabGUID(-2109470307); public static readonly PrefabGUID Chain_Noctem_Vendor_Crate01 = new PrefabGUID(-406366454); public static readonly PrefabGUID Chain_NoctemAspenTree_01 = new PrefabGUID(-1039515141); public static readonly PrefabGUID Chain_NoctemAspenTree_02 = new PrefabGUID(-591922036); public static readonly PrefabGUID Chain_NoctemAspenTree_03 = new PrefabGUID(-2128559087); public static readonly PrefabGUID Chain_NoctemNorthTree_01 = new PrefabGUID(-261428029); public static readonly PrefabGUID Chain_NoctemNorthTree_02 = new PrefabGUID(-1468930266); public static readonly PrefabGUID Chain_NoctemNorthTree_03 = new PrefabGUID(698421825); public static readonly PrefabGUID Chain_NoctemNorthTree_04 = new PrefabGUID(2024214887); public static readonly PrefabGUID Chain_NoctemNorthTree_05 = new PrefabGUID(768244834); public static readonly PrefabGUID Chain_NoctemNorthTree_06 = new PrefabGUID(1349944482); public static readonly PrefabGUID Chain_NoctemRuin_Pillar01 = new PrefabGUID(1283308780); public static readonly PrefabGUID Chain_NoctemRuin_Wall_Diagonal01 = new PrefabGUID(23198093); public static readonly PrefabGUID Chain_NoctemRuin_Wall_Diagonal02 = new PrefabGUID(1976878704); public static readonly PrefabGUID Chain_NoctemRuin_Wall01 = new PrefabGUID(1165186777); public static readonly PrefabGUID Chain_NoctemRuin_Wall02 = new PrefabGUID(-1755157073); public static readonly PrefabGUID Chain_NoctemWillowTree_01 = new PrefabGUID(232128851); public static readonly PrefabGUID Chain_NoctemWillowTree_02 = new PrefabGUID(1630835000); public static readonly PrefabGUID Chain_Pickup_BleedingHeart_01 = new PrefabGUID(-1780760962); public static readonly PrefabGUID Chain_Pickup_BloodRose_01 = new PrefabGUID(532563743); public static readonly PrefabGUID Chain_Pickup_BoneCarcass01 = new PrefabGUID(1959320822); public static readonly PrefabGUID Chain_Pickup_BoneHide_DeadDeer01 = new PrefabGUID(-1619425890); public static readonly PrefabGUID Chain_Pickup_BonePile01 = new PrefabGUID(-1469494427); public static readonly PrefabGUID Chain_Pickup_CastleIsland_BloodRose_01 = new PrefabGUID(-862599985); public static readonly PrefabGUID Chain_Pickup_Cotton_01 = new PrefabGUID(-1667113319); public static readonly PrefabGUID Chain_Pickup_Cotton_02 = new PrefabGUID(891097347); public static readonly PrefabGUID Chain_Pickup_Cotton_03 = new PrefabGUID(1264161361); public static readonly PrefabGUID Chain_Pickup_FireBlossom_01 = new PrefabGUID(2058107274); public static readonly PrefabGUID Chain_Pickup_GhostShroom_01 = new PrefabGUID(252434434); public static readonly PrefabGUID Chain_Pickup_HellsClarion_01 = new PrefabGUID(613922529); public static readonly PrefabGUID Chain_Pickup_Lotus_01 = new PrefabGUID(98063350); public static readonly PrefabGUID Chain_Pickup_MourningLily_01 = new PrefabGUID(-41600625); public static readonly PrefabGUID Chain_Pickup_Plantfiber_MossFiddlehead_Fern01_01 = new PrefabGUID(-888640546); public static readonly PrefabGUID Chain_Pickup_Plantfiber_MossFiddlehead_Fern01_02 = new PrefabGUID(-831586858); public static readonly PrefabGUID Chain_Pickup_Plantfiber_MossFiddlehead_Fern01_03 = new PrefabGUID(532672973); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_BushyTree_01 = new PrefabGUID(-1526154292); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_BushyTree_02 = new PrefabGUID(856427681); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_CorruptedFlower_01 = new PrefabGUID(1399993898); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_CorruptedFlower_02 = new PrefabGUID(-511390230); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigLeaf_01 = new PrefabGUID(1592250223); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigLeaf_02 = new PrefabGUID(2063438108); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigLeaf_03 = new PrefabGUID(1840142015); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigRams_01 = new PrefabGUID(1056657072); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigRams_02 = new PrefabGUID(1983801368); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigRams_03 = new PrefabGUID(-1117675002); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushLeafy_01 = new PrefabGUID(1269180745); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushLeafy_02 = new PrefabGUID(1116756631); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushSmallRound_01 = new PrefabGUID(715018998); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushSmallRound_02 = new PrefabGUID(233678318); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushSmallRound_03 = new PrefabGUID(596409819); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_RoundLeaf_01 = new PrefabGUID(1043450136); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_RoundLeaf_02 = new PrefabGUID(-1323932168); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_RoundLeaf_03 = new PrefabGUID(1164864019); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_01 = new PrefabGUID(-1696840268); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_02 = new PrefabGUID(207923784); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_03 = new PrefabGUID(-200102582); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_Cursed01 = new PrefabGUID(960646422); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_Cursed02 = new PrefabGUID(1934776688); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_Cursed03 = new PrefabGUID(-1489319254); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleaf_01 = new PrefabGUID(1155322261); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleaf_02 = new PrefabGUID(2071221931); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleaf_03 = new PrefabGUID(2057725401); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleafSnow_01 = new PrefabGUID(1071171950); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleafSnow_02 = new PrefabGUID(-808380173); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleafSnow_03 = new PrefabGUID(-1449103174); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_Gloomrot01 = new PrefabGUID(-1420887679); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_Gloomrot02 = new PrefabGUID(1781662189); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_GloomrotToxicPool01 = new PrefabGUID(-557504539); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_GloomrotToxicPool02 = new PrefabGUID(-1322344739); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_01 = new PrefabGUID(1195716523); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_02 = new PrefabGUID(-147955175); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_Cursed01 = new PrefabGUID(-1176033499); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_Cursed02 = new PrefabGUID(1233599733); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeAutumn_01 = new PrefabGUID(1313923291); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeAutumn_02 = new PrefabGUID(-327146613); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeAutumn_03 = new PrefabGUID(1567289522); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeSnow_01 = new PrefabGUID(-1743944480); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeSnow_02 = new PrefabGUID(-1526018811); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushMapleAutumn_01 = new PrefabGUID(995586517); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushMapleAutumn_02 = new PrefabGUID(952851231); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushMapleAutumn_03 = new PrefabGUID(15884169); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushNeedle_01 = new PrefabGUID(111691529); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushNeedleRed_01 = new PrefabGUID(-1395396829); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushNeedleSnow_01 = new PrefabGUID(-383903025); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushPlain_01 = new PrefabGUID(1584887555); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushPlainAutumn_01 = new PrefabGUID(-1155639000); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushPlainAutumn_02 = new PrefabGUID(583886838); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_01 = new PrefabGUID(148870031); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_02 = new PrefabGUID(1109930272); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_03 = new PrefabGUID(425129617); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_04 = new PrefabGUID(695846701); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_01 = new PrefabGUID(1086773590); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_02 = new PrefabGUID(584021349); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_03 = new PrefabGUID(-1665973534); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_04 = new PrefabGUID(917151003); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_01 = new PrefabGUID(-321461217); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_02 = new PrefabGUID(1520800090); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_03 = new PrefabGUID(-787146670); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_04 = new PrefabGUID(380695101); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_05 = new PrefabGUID(1118849132); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_06 = new PrefabGUID(-1142558640); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_07 = new PrefabGUID(-650236624); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTree_01 = new PrefabGUID(144188139); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTree_02 = new PrefabGUID(-722233463); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeCursed_01 = new PrefabGUID(1600915888); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeCursed_02 = new PrefabGUID(1844956357); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeSnow_01 = new PrefabGUID(212756512); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeSnow_02 = new PrefabGUID(-2097170201); public static readonly PrefabGUID Chain_Pickup_PlantfiberCorn_01 = new PrefabGUID(-467956079); public static readonly PrefabGUID Chain_Pickup_PlantfiberCorn_02 = new PrefabGUID(1304294729); public static readonly PrefabGUID Chain_Pickup_PlantfiberCorn_03 = new PrefabGUID(-1479312760); public static readonly PrefabGUID Chain_Pickup_PlantfiberFern_Silverhills_01 = new PrefabGUID(-1820027728); public static readonly PrefabGUID Chain_Pickup_PlantfiberFern_Silverhills_02 = new PrefabGUID(-690747085); public static readonly PrefabGUID Chain_Pickup_PlantfiberFern_Silverhills_03 = new PrefabGUID(63970191); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_01 = new PrefabGUID(1046846841); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_02 = new PrefabGUID(-1130060605); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_03 = new PrefabGUID(-534923664); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_04 = new PrefabGUID(1772243998); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_05 = new PrefabGUID(-1637965636); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_06 = new PrefabGUID(1613358131); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_01 = new PrefabGUID(-1083751061); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_01_Harvested = new PrefabGUID(1644710634); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_02 = new PrefabGUID(1717136620); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_03 = new PrefabGUID(-410483252); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_04 = new PrefabGUID(698083737); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta_Cursed01 = new PrefabGUID(2016390983); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta_Cursed02 = new PrefabGUID(995479102); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta01 = new PrefabGUID(110545320); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta02 = new PrefabGUID(618843782); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniper_01 = new PrefabGUID(1310526618); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniper_02 = new PrefabGUID(1478974983); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniperSnow_01 = new PrefabGUID(452201513); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniperSnow_02 = new PrefabGUID(-101739398); public static readonly PrefabGUID Chain_Pickup_PlantfiberLeafyNoctem_01 = new PrefabGUID(-993446321); public static readonly PrefabGUID Chain_Pickup_PlantfiberLeafyNoctem_02 = new PrefabGUID(537718457); public static readonly PrefabGUID Chain_Pickup_PlantfiberLeafyNoctem_03 = new PrefabGUID(1573607480); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_01 = new PrefabGUID(501981657); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_02 = new PrefabGUID(90678420); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_03 = new PrefabGUID(307286483); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_04 = new PrefabGUID(1371125562); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_01 = new PrefabGUID(1641476693); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_02 = new PrefabGUID(1046236670); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_03 = new PrefabGUID(667214051); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_04 = new PrefabGUID(366902373); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Cursed01 = new PrefabGUID(-9776583); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Cursed02 = new PrefabGUID(-422408774); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Gloomrot01 = new PrefabGUID(74135467); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Gloomrot02 = new PrefabGUID(-283832825); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_GloomrotHills01 = new PrefabGUID(-79229718); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_GloomrotHills02 = new PrefabGUID(865352867); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyNoctem_01 = new PrefabGUID(299473333); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyNoctem_02 = new PrefabGUID(-1308630626); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyNoctem_03 = new PrefabGUID(-1866235932); public static readonly PrefabGUID Chain_Pickup_PlantfiberSunflower_01 = new PrefabGUID(-197179745); public static readonly PrefabGUID Chain_Pickup_PlantfiberSunflower_02 = new PrefabGUID(-2088318249); public static readonly PrefabGUID Chain_Pickup_PlantfiberSunflower_03 = new PrefabGUID(-2137055798); public static readonly PrefabGUID Chain_Pickup_PlantfiberWheat_01 = new PrefabGUID(-84264079); public static readonly PrefabGUID Chain_Pickup_PlantfiberWheat_02 = new PrefabGUID(761988044); public static readonly PrefabGUID Chain_Pickup_PlantfiberWheat_03 = new PrefabGUID(-1391986440); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_01 = new PrefabGUID(28315283); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_02 = new PrefabGUID(-1468986169); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_03 = new PrefabGUID(460338586); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_Silver_01 = new PrefabGUID(-73658084); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_Silver_02 = new PrefabGUID(-327324527); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_Silver_03 = new PrefabGUID(-1857713718); public static readonly PrefabGUID Chain_Pickup_SnowFlower_01 = new PrefabGUID(-1016815904); public static readonly PrefabGUID Chain_Pickup_SpiderWeb01 = new PrefabGUID(-377027333); public static readonly PrefabGUID Chain_Pickup_SpiderWeb02 = new PrefabGUID(640447322); public static readonly PrefabGUID Chain_Pickup_Sunflower_01 = new PrefabGUID(-2006971228); public static readonly PrefabGUID Chain_Pickup_Thistle_01 = new PrefabGUID(-1345391205); public static readonly PrefabGUID Chain_Pickup_TrippyShroom_01 = new PrefabGUID(1094601351); public static readonly PrefabGUID Chain_Resource_BloodCrystal01 = new PrefabGUID(-1377471953); public static readonly PrefabGUID Chain_Resource_BloodCrystal02 = new PrefabGUID(47383817); public static readonly PrefabGUID Chain_Resource_BloodCrystal03 = new PrefabGUID(490819473); public static readonly PrefabGUID Chain_Resource_Coal01 = new PrefabGUID(1925249177); public static readonly PrefabGUID Chain_Resource_Coal02 = new PrefabGUID(-12230132); public static readonly PrefabGUID Chain_Resource_Coal03 = new PrefabGUID(-113035689); public static readonly PrefabGUID Chain_Resource_Coal04 = new PrefabGUID(-1073919585); public static readonly PrefabGUID Chain_Resource_Copper01 = new PrefabGUID(-1476501902); public static readonly PrefabGUID Chain_Resource_Copper02 = new PrefabGUID(-1382557002); public static readonly PrefabGUID Chain_Resource_Copper03 = new PrefabGUID(-217985196); public static readonly PrefabGUID Chain_Resource_Copper04 = new PrefabGUID(762957866); public static readonly PrefabGUID Chain_Resource_CopperBig01 = new PrefabGUID(1952929291); public static readonly PrefabGUID Chain_Resource_CopperMedium01 = new PrefabGUID(1293957126); public static readonly PrefabGUID Chain_Resource_Crystal01 = new PrefabGUID(1881668130); public static readonly PrefabGUID Chain_Resource_Emery01 = new PrefabGUID(-691104327); public static readonly PrefabGUID Chain_Resource_Emery02 = new PrefabGUID(-1145069805); public static readonly PrefabGUID Chain_Resource_Emery03 = new PrefabGUID(639901103); public static readonly PrefabGUID Chain_Resource_EmeryBig01 = new PrefabGUID(-1189124343); public static readonly PrefabGUID Chain_Resource_EmeryMedium01 = new PrefabGUID(-179888839); public static readonly PrefabGUID Chain_Resource_GemCrude_01 = new PrefabGUID(-1285648022); public static readonly PrefabGUID Chain_Resource_GemFlawless_01 = new PrefabGUID(-813541622); public static readonly PrefabGUID Chain_Resource_GemRegular_01 = new PrefabGUID(-1020064079); public static readonly PrefabGUID Chain_Resource_GhostCrystal01 = new PrefabGUID(-798023161); public static readonly PrefabGUID Chain_Resource_GhostCrystal02 = new PrefabGUID(1966483785); public static readonly PrefabGUID Chain_Resource_GhostCrystal03 = new PrefabGUID(526225948); public static readonly PrefabGUID Chain_Resource_Gold01 = new PrefabGUID(676287933); public static readonly PrefabGUID Chain_Resource_Gold02 = new PrefabGUID(1927189438); public static readonly PrefabGUID Chain_Resource_Gold03 = new PrefabGUID(-1740342424); public static readonly PrefabGUID Chain_Resource_Gold04 = new PrefabGUID(-570597741); public static readonly PrefabGUID Chain_Resource_Iron01 = new PrefabGUID(586784110); public static readonly PrefabGUID Chain_Resource_Iron02 = new PrefabGUID(-917289021); public static readonly PrefabGUID Chain_Resource_Iron03 = new PrefabGUID(962593298); public static readonly PrefabGUID Chain_Resource_Iron04 = new PrefabGUID(1256549000); public static readonly PrefabGUID Chain_Resource_IronBig01 = new PrefabGUID(1487438772); public static readonly PrefabGUID Chain_Resource_IronMedium01 = new PrefabGUID(-640063587); public static readonly PrefabGUID Chain_Resource_Mech01 = new PrefabGUID(-1680959695); public static readonly PrefabGUID Chain_Resource_Mech02 = new PrefabGUID(-764961774); public static readonly PrefabGUID Chain_Resource_Mech03 = new PrefabGUID(-2023481231); public static readonly PrefabGUID Chain_Resource_Obsidian01 = new PrefabGUID(2112549903); public static readonly PrefabGUID Chain_Resource_Obsidian02 = new PrefabGUID(-1146434501); public static readonly PrefabGUID Chain_Resource_Obsidian03 = new PrefabGUID(1991708864); public static readonly PrefabGUID Chain_Resource_Obsidian04 = new PrefabGUID(971888901); public static readonly PrefabGUID Chain_Resource_Quartz01 = new PrefabGUID(140114537); public static readonly PrefabGUID Chain_Resource_Quartz02 = new PrefabGUID(1926653869); public static readonly PrefabGUID Chain_Resource_Quartz03 = new PrefabGUID(1044892198); public static readonly PrefabGUID Chain_Resource_Rock01 = new PrefabGUID(-1475579727); public static readonly PrefabGUID Chain_Resource_Rock02 = new PrefabGUID(-520472337); public static readonly PrefabGUID Chain_Resource_Rock03 = new PrefabGUID(1551951647); public static readonly PrefabGUID Chain_Resource_Rock04 = new PrefabGUID(-1000988156); public static readonly PrefabGUID Chain_Resource_RockBig01 = new PrefabGUID(-260309519); public static readonly PrefabGUID Chain_Resource_RockMedium01 = new PrefabGUID(-855449070); public static readonly PrefabGUID Chain_Resource_Silver01 = new PrefabGUID(1283782485); public static readonly PrefabGUID Chain_Resource_Silver02 = new PrefabGUID(-1794866404); public static readonly PrefabGUID Chain_Resource_Silver03 = new PrefabGUID(253262643); public static readonly PrefabGUID Chain_Resource_Sulfur01 = new PrefabGUID(-1277530511); public static readonly PrefabGUID Chain_Resource_Sulfur02 = new PrefabGUID(-1283425763); public static readonly PrefabGUID Chain_Resource_Sulfur03 = new PrefabGUID(202548362); public static readonly PrefabGUID Chain_Resource_SulfurBig01 = new PrefabGUID(578980978); public static readonly PrefabGUID Chain_Resource_SulfurMedium01 = new PrefabGUID(108132619); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_01 = new PrefabGUID(-298243743); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_02 = new PrefabGUID(850300666); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_03 = new PrefabGUID(-82129727); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_04 = new PrefabGUID(1679076060); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_05 = new PrefabGUID(28782923); public static readonly PrefabGUID Chain_Ruin_CastleIsland_ShortWall_01 = new PrefabGUID(679168595); public static readonly PrefabGUID Chain_Ruin_CastleIsland_ShortWall_02 = new PrefabGUID(511148969); public static readonly PrefabGUID Chain_Ruin_CastleIsland_ShortWall_03 = new PrefabGUID(425308404); public static readonly PrefabGUID Chain_Ruin_Pillar_01 = new PrefabGUID(-1469950224); public static readonly PrefabGUID Chain_Ruin_Pillar_02 = new PrefabGUID(-2040738983); public static readonly PrefabGUID Chain_Ruin_Pillar_03 = new PrefabGUID(-594678670); public static readonly PrefabGUID Chain_Ruin_Pillar_04 = new PrefabGUID(903649447); public static readonly PrefabGUID Chain_Ruin_Pillar_05 = new PrefabGUID(-1338313176); public static readonly PrefabGUID Chain_Ruin_Pillar_06_Noctem = new PrefabGUID(-145107425); public static readonly PrefabGUID Chain_Ruin_Pillar_07_Noctem = new PrefabGUID(1463232255); public static readonly PrefabGUID Chain_Ruin_Pillar_08_Noctem = new PrefabGUID(-345300905); public static readonly PrefabGUID Chain_Ruin_Pillar_09_Noctem = new PrefabGUID(-1841176138); public static readonly PrefabGUID Chain_Ruin_Pillar_10_Noctem = new PrefabGUID(-236305133); public static readonly PrefabGUID Chain_Ruin_ShortWall_01 = new PrefabGUID(-974100524); public static readonly PrefabGUID Chain_Ruin_ShortWall_02 = new PrefabGUID(1202602297); public static readonly PrefabGUID Chain_Ruin_ShortWall_03 = new PrefabGUID(830130874); public static readonly PrefabGUID Chain_Ruin_ShortWall_End_01 = new PrefabGUID(863752157); public static readonly PrefabGUID Chain_RuinCursed_Pillar_01 = new PrefabGUID(355348320); public static readonly PrefabGUID Chain_RuinCursed_Pillar_02 = new PrefabGUID(678764001); public static readonly PrefabGUID Chain_RuinCursed_Pillar_03 = new PrefabGUID(1505138749); public static readonly PrefabGUID Chain_RuinCursed_Pillar_04 = new PrefabGUID(-1104605080); public static readonly PrefabGUID Chain_RuinCursed_Pillar_05 = new PrefabGUID(695289762); public static readonly PrefabGUID Chain_RuinCursed_ShortWall_01 = new PrefabGUID(989676784); public static readonly PrefabGUID Chain_RuinCursed_ShortWall_02 = new PrefabGUID(1808624323); public static readonly PrefabGUID Chain_RuinCursed_ShortWall_03 = new PrefabGUID(1859311619); public static readonly PrefabGUID Chain_Runestone_fading02_Breakable = new PrefabGUID(-791661968); public static readonly PrefabGUID Chain_Silverhills_Banner01 = new PrefabGUID(222319959); public static readonly PrefabGUID Chain_Silverhills_Banner02 = new PrefabGUID(7933938); public static readonly PrefabGUID Chain_Silverhills_Banner03 = new PrefabGUID(1209148427); public static readonly PrefabGUID Chain_Silverhills_Flowerpot01 = new PrefabGUID(-984790079); public static readonly PrefabGUID Chain_Silverhills_Flowerpot02 = new PrefabGUID(574441401); public static readonly PrefabGUID Chain_Silverhills_Flowerpot03 = new PrefabGUID(-777779911); public static readonly PrefabGUID Chain_Silverhills_Flowerpot04 = new PrefabGUID(1210478350); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFish01 = new PrefabGUID(-600877015); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFish02 = new PrefabGUID(1216714915); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishCrab01 = new PrefabGUID(814081749); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishCrab02 = new PrefabGUID(1194151211); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishFlounder01 = new PrefabGUID(-986729393); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishFlounder02 = new PrefabGUID(1363229546); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelNet01 = new PrefabGUID(-866711214); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelNet02 = new PrefabGUID(1299159621); public static readonly PrefabGUID Chain_Silverhills_JettyCrate01 = new PrefabGUID(1224184841); public static readonly PrefabGUID Chain_Silverhills_JettyCrate02 = new PrefabGUID(-1783844415); public static readonly PrefabGUID Chain_Silverhills_JettyCrate03 = new PrefabGUID(1137262593); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFish01 = new PrefabGUID(568706574); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFish02 = new PrefabGUID(-395304501); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFish03 = new PrefabGUID(-456404944); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishCrab01 = new PrefabGUID(-486240872); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishCrab02 = new PrefabGUID(35884401); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishFlounder01 = new PrefabGUID(-987993821); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishFlounder02 = new PrefabGUID(1558755021); public static readonly PrefabGUID Chain_Silverhills_JettyCrateNet01 = new PrefabGUID(-960186826); public static readonly PrefabGUID Chain_Silverhills_JettyCrateNet02 = new PrefabGUID(600169886); public static readonly PrefabGUID Chain_Silverhills_JettyNetRack01 = new PrefabGUID(436988855); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_01 = new PrefabGUID(-1463730922); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_02 = new PrefabGUID(-1642448870); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_03 = new PrefabGUID(1450009475); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_04 = new PrefabGUID(1868789546); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_05 = new PrefabGUID(-2038632793); public static readonly PrefabGUID Chain_Silverhills_Sign01 = new PrefabGUID(1763693514); public static readonly PrefabGUID Chain_Silverhills_Sign02 = new PrefabGUID(59924722); public static readonly PrefabGUID Chain_Silverhills_Sign03 = new PrefabGUID(1932867619); public static readonly PrefabGUID Chain_Silverhills_Sign04 = new PrefabGUID(1367477537); public static readonly PrefabGUID Chain_Silverhills_StoneSymbol01 = new PrefabGUID(1390252457); public static readonly PrefabGUID Chain_Silverhills_StoneSymbol02 = new PrefabGUID(411454988); public static readonly PrefabGUID Chain_SilverMines_Cage01_Door01 = new PrefabGUID(-1323477366); public static readonly PrefabGUID Chain_SilverMines_StoneSymbol03 = new PrefabGUID(-2069905213); public static readonly PrefabGUID Chain_SmallTent_01 = new PrefabGUID(-1408591674); public static readonly PrefabGUID Chain_SmallTent_02 = new PrefabGUID(1237019602); public static readonly PrefabGUID Chain_SmallTent_03_Dunley = new PrefabGUID(-505993307); public static readonly PrefabGUID Chain_SmallTent_04_Dunley = new PrefabGUID(1751871475); public static readonly PrefabGUID Chain_Spider_Cocoon01 = new PrefabGUID(1234655120); public static readonly PrefabGUID Chain_Spider_Cocoon02 = new PrefabGUID(-241625672); public static readonly PrefabGUID Chain_Spider_Cocoon03 = new PrefabGUID(-449313464); public static readonly PrefabGUID Chain_Spider_Cocoon04 = new PrefabGUID(-43538197); public static readonly PrefabGUID Chain_Spider_Cocoon05 = new PrefabGUID(1731454518); public static readonly PrefabGUID Chain_Spider_Cocoon06_MicroPOI = new PrefabGUID(2085157240); public static readonly PrefabGUID Chain_Spider_Cocoon07_MicroPOI = new PrefabGUID(1653415279); public static readonly PrefabGUID Chain_Spider_Cocoon08_MicroPOI = new PrefabGUID(1523231468); public static readonly PrefabGUID Chain_Spider_Cocoon09_MicroPOI = new PrefabGUID(-2023095960); public static readonly PrefabGUID Chain_Statue_02SmallBreakable = new PrefabGUID(1258000620); public static readonly PrefabGUID Chain_Statue_07SmallBreakable = new PrefabGUID(427797102); public static readonly PrefabGUID Chain_Statue_11SmallBreakable = new PrefabGUID(2019641137); public static readonly PrefabGUID Chain_Statue_13SmallBreakable = new PrefabGUID(1403586837); public static readonly PrefabGUID Chain_Statue_22SmallBreakable = new PrefabGUID(1903568218); public static readonly PrefabGUID Chain_StoneUrn_01 = new PrefabGUID(964648474); public static readonly PrefabGUID Chain_StoneUrn_02 = new PrefabGUID(1962347179); public static readonly PrefabGUID Chain_StoneUrn_03 = new PrefabGUID(906858975); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_FlowerPress01 = new PrefabGUID(-1230214358); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_SeedSack01 = new PrefabGUID(-1891942756); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_SeedSack02 = new PrefabGUID(940399176); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_SeedSack03 = new PrefabGUID(-1117332495); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table01 = new PrefabGUID(578544016); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table02_Interactable = new PrefabGUID(1610207460); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table03 = new PrefabGUID(-485043615); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table03_Interactable = new PrefabGUID(44387398); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table04 = new PrefabGUID(-991010100); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table04_Interactable = new PrefabGUID(825651488); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table05 = new PrefabGUID(809396837); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table06_Interactable = new PrefabGUID(-770330706); public static readonly PrefabGUID Chain_Strongblade_Banner01 = new PrefabGUID(-858444955); public static readonly PrefabGUID Chain_Strongblade_Banner02 = new PrefabGUID(595563700); public static readonly PrefabGUID Chain_Strongblade_Banner03 = new PrefabGUID(1503589876); public static readonly PrefabGUID Chain_Strongblade_Barrel01 = new PrefabGUID(727131848); public static readonly PrefabGUID Chain_Strongblade_Barrel02 = new PrefabGUID(-1959579491); public static readonly PrefabGUID Chain_Strongblade_Bed01 = new PrefabGUID(-373944270); public static readonly PrefabGUID Chain_Strongblade_Bed03 = new PrefabGUID(-1929204488); public static readonly PrefabGUID Chain_Strongblade_Brazier01 = new PrefabGUID(-1925153495); public static readonly PrefabGUID Chain_Strongblade_Brazier02 = new PrefabGUID(-41274655); public static readonly PrefabGUID Chain_Strongblade_Brazier02_IdleInteraction = new PrefabGUID(-160764074); public static readonly PrefabGUID Chain_Strongblade_Brazier03 = new PrefabGUID(-506550578); public static readonly PrefabGUID Chain_Strongblade_Brazier03_IdleInteraction = new PrefabGUID(819422446); public static readonly PrefabGUID Chain_Strongblade_BunkBed01 = new PrefabGUID(-486131720); public static readonly PrefabGUID Chain_Strongblade_BunkBed02 = new PrefabGUID(-245861659); public static readonly PrefabGUID Chain_Strongblade_BunkBed03 = new PrefabGUID(-2105232776); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench01 = new PrefabGUID(1408221860); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench02 = new PrefabGUID(-776794047); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench03 = new PrefabGUID(-1580128981); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench03_IdleInteraction = new PrefabGUID(-320205516); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench04 = new PrefabGUID(-1264055467); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench04_IdleInteraction = new PrefabGUID(-1018004112); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench05 = new PrefabGUID(1476656656); public static readonly PrefabGUID Chain_Strongblade_Chair01 = new PrefabGUID(-1277552557); public static readonly PrefabGUID Chain_Strongblade_Chair01_02 = new PrefabGUID(1201125343); public static readonly PrefabGUID Chain_Strongblade_Chair02 = new PrefabGUID(-1661988892); public static readonly PrefabGUID Chain_Strongblade_Chair03 = new PrefabGUID(1577108776); public static readonly PrefabGUID Chain_Strongblade_Chair04 = new PrefabGUID(365338979); public static readonly PrefabGUID Chain_Strongblade_Crate01 = new PrefabGUID(1412118366); public static readonly PrefabGUID Chain_Strongblade_Crate01_Flasks01 = new PrefabGUID(-964680267); public static readonly PrefabGUID Chain_Strongblade_Crate01_Flasks02 = new PrefabGUID(-1601326404); public static readonly PrefabGUID Chain_Strongblade_Crate02 = new PrefabGUID(-1706051395); public static readonly PrefabGUID Chain_Strongblade_Crate03 = new PrefabGUID(1970254698); public static readonly PrefabGUID Chain_Strongblade_Crate03_Flasks01 = new PrefabGUID(1422218579); public static readonly PrefabGUID Chain_Strongblade_Crate03_Flasks02 = new PrefabGUID(1463103980); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack01 = new PrefabGUID(-394727239); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack02 = new PrefabGUID(-222866655); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack03 = new PrefabGUID(567280065); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack04 = new PrefabGUID(-1816883501); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerWorkbench_01 = new PrefabGUID(197349366); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerWorkbench_02 = new PrefabGUID(221077444); public static readonly PrefabGUID Chain_Strongblade_Emery01_Crate01 = new PrefabGUID(-1001264970); public static readonly PrefabGUID Chain_Strongblade_Emery01_Crate02 = new PrefabGUID(2085193683); public static readonly PrefabGUID Chain_Strongblade_Emery01_ToolRack01 = new PrefabGUID(1844361244); public static readonly PrefabGUID Chain_Strongblade_Emery01_Wheelbarrow01 = new PrefabGUID(1348848480); public static readonly PrefabGUID Chain_Strongblade_Mantrap_Cage_Door01 = new PrefabGUID(1320721063); public static readonly PrefabGUID Chain_Strongblade_Ruin_Pillar_Destructable01 = new PrefabGUID(2092863418); public static readonly PrefabGUID Chain_Strongblade_Ruin_Pillar_Destructable02 = new PrefabGUID(-848816516); public static readonly PrefabGUID Chain_Strongblade_Ruin_Pillar_Destructable03 = new PrefabGUID(-1659874132); public static readonly PrefabGUID Chain_Strongblade_Table_Carver01 = new PrefabGUID(1053188736); public static readonly PrefabGUID Chain_Strongblade_Table_Carver02 = new PrefabGUID(2104966700); public static readonly PrefabGUID Chain_Strongblade_Table01 = new PrefabGUID(1796387098); public static readonly PrefabGUID Chain_Strongblade_Table01_02 = new PrefabGUID(-977284338); public static readonly PrefabGUID Chain_Strongblade_Table02 = new PrefabGUID(-417727620); public static readonly PrefabGUID Chain_Strongblade_Table02_02 = new PrefabGUID(151823651); public static readonly PrefabGUID Chain_Strongblade_Table03 = new PrefabGUID(880815904); public static readonly PrefabGUID Chain_Strongblade_Table03_02 = new PrefabGUID(22794486); public static readonly PrefabGUID Chain_Strongblade_Target01 = new PrefabGUID(-198141023); public static readonly PrefabGUID Chain_Strongblade_Target01_IdleInteraction = new PrefabGUID(-945798103); public static readonly PrefabGUID Chain_Strongblade_Target02 = new PrefabGUID(-248793307); public static readonly PrefabGUID Chain_Strongblade_Target03 = new PrefabGUID(1347115052); public static readonly PrefabGUID Chain_Strongblade_ToolRack01 = new PrefabGUID(-936465792); public static readonly PrefabGUID Chain_Strongblade_ToolRack02 = new PrefabGUID(598784669); public static readonly PrefabGUID Chain_Strongblade_WeaponRack01 = new PrefabGUID(489013238); public static readonly PrefabGUID Chain_Strongblade_WeaponRack02 = new PrefabGUID(2041861410); public static readonly PrefabGUID Chain_Strongblade_WeaponRack03 = new PrefabGUID(-1471743139); public static readonly PrefabGUID Chain_Strongblade_Wheelbarrow01 = new PrefabGUID(-858638245); public static readonly PrefabGUID Chain_StrongBladeBirchTree_01 = new PrefabGUID(1053056472); public static readonly PrefabGUID Chain_StrongBladeBirchTree_02 = new PrefabGUID(-1476940778); public static readonly PrefabGUID Chain_StrongBladeBirchTree_03 = new PrefabGUID(2020854480); public static readonly PrefabGUID Chain_StrongBladeBirchTree_04 = new PrefabGUID(-1738748603); public static readonly PrefabGUID Chain_StrongBladeBirchTree_05 = new PrefabGUID(1495492131); public static readonly PrefabGUID Chain_StrongBladeBirchTree_06 = new PrefabGUID(1513073894); public static readonly PrefabGUID Chain_StrongBladeCorruptTree_01 = new PrefabGUID(-1520232123); public static readonly PrefabGUID Chain_StrongBladeCorruptTree_02 = new PrefabGUID(-415954633); public static readonly PrefabGUID Chain_StrongBladeCorruptTree_03 = new PrefabGUID(-1892831390); public static readonly PrefabGUID Chain_StrongBladeHalfCorruptTree_01 = new PrefabGUID(615708900); public static readonly PrefabGUID Chain_StrongBladeHalfCorruptTree_02 = new PrefabGUID(-1916009518); public static readonly PrefabGUID Chain_StrongBladeHornbeamTree_01 = new PrefabGUID(1011488402); public static readonly PrefabGUID Chain_StrongBladeHornbeamTree_02 = new PrefabGUID(-1557871039); public static readonly PrefabGUID Chain_StrongBladeHornbeamTree_03 = new PrefabGUID(1865158174); public static readonly PrefabGUID Chain_StrongBladeOakTree_01 = new PrefabGUID(906261873); public static readonly PrefabGUID Chain_StrongBladeOakTree_02 = new PrefabGUID(-979785824); public static readonly PrefabGUID Chain_StrongBladeOakTree_03 = new PrefabGUID(1715976157); public static readonly PrefabGUID Chain_StrongBladeOakTree_04 = new PrefabGUID(-912516777); public static readonly PrefabGUID Chain_SwampTree_01 = new PrefabGUID(1480646047); public static readonly PrefabGUID Chain_SwampTree_02 = new PrefabGUID(1622370540); public static readonly PrefabGUID Chain_SwampTree_03 = new PrefabGUID(-608525826); public static readonly PrefabGUID Chain_TargetDummy_01 = new PrefabGUID(1659084022); public static readonly PrefabGUID Chain_TargetDummy_01_IdleInteraction = new PrefabGUID(-1692663337); public static readonly PrefabGUID Chain_TargetDummy_02 = new PrefabGUID(-1036635830); public static readonly PrefabGUID Chain_TargetDummy_02_IdleInteraction = new PrefabGUID(-1390873694); public static readonly PrefabGUID Chain_Tree_Apple_01 = new PrefabGUID(-536996441); public static readonly PrefabGUID Chain_Tree_Apple_02 = new PrefabGUID(1110161091); public static readonly PrefabGUID Chain_Tree_Apple_03 = new PrefabGUID(113696482); public static readonly PrefabGUID Chain_Tree_AppleCursed_01 = new PrefabGUID(1817848778); public static readonly PrefabGUID Chain_Tree_AppleCursed_02 = new PrefabGUID(575862327); public static readonly PrefabGUID Chain_Tree_AppleCursed_03 = new PrefabGUID(2009018257); public static readonly PrefabGUID Chain_Tree_AppleCursed_Symbol_01 = new PrefabGUID(-1497641772); public static readonly PrefabGUID Chain_Tree_AppleCursed_Symbol_02 = new PrefabGUID(1004759062); public static readonly PrefabGUID Chain_Tree_AppleCursed_Symbol_03 = new PrefabGUID(-340890152); public static readonly PrefabGUID Chain_Tree_Aspen_01 = new PrefabGUID(-1232343594); public static readonly PrefabGUID Chain_Tree_Aspen_02 = new PrefabGUID(-498630941); public static readonly PrefabGUID Chain_Tree_Aspen_03 = new PrefabGUID(-1396931038); public static readonly PrefabGUID Chain_Tree_AspenAutumn_01 = new PrefabGUID(59180168); public static readonly PrefabGUID Chain_Tree_AspenAutumn_02 = new PrefabGUID(-866851080); public static readonly PrefabGUID Chain_Tree_AspenAutumn_03 = new PrefabGUID(-162404184); public static readonly PrefabGUID Chain_Tree_AspenAutumn_04 = new PrefabGUID(-783892926); public static readonly PrefabGUID Chain_Tree_AspenAutumn_05 = new PrefabGUID(-547915359); public static readonly PrefabGUID Chain_Tree_AspenAutumn_06 = new PrefabGUID(-1681530932); public static readonly PrefabGUID Chain_Tree_Beech_01 = new PrefabGUID(-385800984); public static readonly PrefabGUID Chain_Tree_Beech_02 = new PrefabGUID(1961987303); public static readonly PrefabGUID Chain_Tree_Beech_03 = new PrefabGUID(1738464877); public static readonly PrefabGUID Chain_Tree_Birch_01 = new PrefabGUID(-403858007); public static readonly PrefabGUID Chain_Tree_Birch_02 = new PrefabGUID(-1252315032); public static readonly PrefabGUID Chain_Tree_Birch_03 = new PrefabGUID(115426173); public static readonly PrefabGUID Chain_Tree_Birch_04 = new PrefabGUID(2009944438); public static readonly PrefabGUID Chain_Tree_BirchAutumn_01 = new PrefabGUID(-1939554381); public static readonly PrefabGUID Chain_Tree_BirchAutumn_02 = new PrefabGUID(-93669271); public static readonly PrefabGUID Chain_Tree_BirchAutumn_03 = new PrefabGUID(-761082980); public static readonly PrefabGUID Chain_Tree_BirchAutumn_04 = new PrefabGUID(-448121609); public static readonly PrefabGUID Chain_Tree_BirchAutumn_05 = new PrefabGUID(1337887526); public static readonly PrefabGUID Chain_Tree_BirchAutumn_06 = new PrefabGUID(387731099); public static readonly PrefabGUID Chain_Tree_BirchAutumn_07 = new PrefabGUID(72057266); public static readonly PrefabGUID Chain_Tree_BirchAutumn_08 = new PrefabGUID(534846867); public static readonly PrefabGUID Chain_Tree_BirchAutumn_09 = new PrefabGUID(662248236); public static readonly PrefabGUID Chain_Tree_BirchAutumn_10 = new PrefabGUID(-340459004); public static readonly PrefabGUID Chain_Tree_BirchAutumn_11 = new PrefabGUID(1792496950); public static readonly PrefabGUID Chain_Tree_BirchAutumn_12 = new PrefabGUID(-1475451501); public static readonly PrefabGUID Chain_Tree_BlightbringerAltar_01 = new PrefabGUID(1478612221); public static readonly PrefabGUID Chain_Tree_BlightbringerAltar_02 = new PrefabGUID(1356362100); public static readonly PrefabGUID Chain_Tree_BlightbringerAltar_07 = new PrefabGUID(1366610117); public static readonly PrefabGUID Chain_Tree_Cherry_01 = new PrefabGUID(832803425); public static readonly PrefabGUID Chain_Tree_Cherry_02 = new PrefabGUID(1635098534); public static readonly PrefabGUID Chain_Tree_Cherry_White_01 = new PrefabGUID(-322796087); public static readonly PrefabGUID Chain_Tree_Cherry_White_02 = new PrefabGUID(545378607); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_01 = new PrefabGUID(-1855814067); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_02 = new PrefabGUID(737812434); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_03 = new PrefabGUID(652680937); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_04 = new PrefabGUID(-196750256); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_05 = new PrefabGUID(-11391283); public static readonly PrefabGUID Chain_Tree_Cypress_01 = new PrefabGUID(-689657741); public static readonly PrefabGUID Chain_Tree_Cypress_02 = new PrefabGUID(1700028768); public static readonly PrefabGUID Chain_Tree_Cypress_03 = new PrefabGUID(-874057665); public static readonly PrefabGUID Chain_Tree_CypressAutum_01 = new PrefabGUID(1384148944); public static readonly PrefabGUID Chain_Tree_CypressAutum_02 = new PrefabGUID(54380000); public static readonly PrefabGUID Chain_Tree_CypressAutum_03 = new PrefabGUID(1249220565); public static readonly PrefabGUID Chain_Tree_DeadSpooky_01 = new PrefabGUID(1581154671); public static readonly PrefabGUID Chain_Tree_DeadSpooky_02 = new PrefabGUID(2107147138); public static readonly PrefabGUID Chain_Tree_DeadSpooky_03 = new PrefabGUID(-695685644); public static readonly PrefabGUID Chain_Tree_DeadSpooky_04 = new PrefabGUID(-1049648244); public static readonly PrefabGUID Chain_Tree_DeadStump_01 = new PrefabGUID(-361095213); public static readonly PrefabGUID Chain_Tree_DeadStump_02 = new PrefabGUID(1403784536); public static readonly PrefabGUID Chain_Tree_DeadStump_03 = new PrefabGUID(-1964596989); public static readonly PrefabGUID Chain_Tree_DeadStump_CursedForest_01 = new PrefabGUID(1778090839); public static readonly PrefabGUID Chain_Tree_DeadStump_CursedForest_02 = new PrefabGUID(-1567076671); public static readonly PrefabGUID Chain_Tree_DeadStump_CursedForest_03 = new PrefabGUID(-1137236275); public static readonly PrefabGUID Chain_Tree_DryWood_01 = new PrefabGUID(-359669351); public static readonly PrefabGUID Chain_Tree_DryWood_02 = new PrefabGUID(1913359708); public static readonly PrefabGUID Chain_Tree_DryWood_03 = new PrefabGUID(-2091322158); public static readonly PrefabGUID Chain_Tree_Gloomrot_01 = new PrefabGUID(-1842947005); public static readonly PrefabGUID Chain_Tree_Gloomrot_02 = new PrefabGUID(-1590581859); public static readonly PrefabGUID Chain_Tree_Gloomrot_03 = new PrefabGUID(-211369417); public static readonly PrefabGUID Chain_Tree_Gloomrot_04 = new PrefabGUID(1181613181); public static readonly PrefabGUID Chain_Tree_Gloomrot_05 = new PrefabGUID(-1330375890); public static readonly PrefabGUID Chain_Tree_Gloomrot_06 = new PrefabGUID(-1254327137); public static readonly PrefabGUID Chain_Tree_Gloomrot_07 = new PrefabGUID(-1605774160); public static readonly PrefabGUID Chain_Tree_Gloomrot_08 = new PrefabGUID(-1632654657); public static readonly PrefabGUID Chain_Tree_Gloomrot_Stub_01 = new PrefabGUID(-549514044); public static readonly PrefabGUID Chain_Tree_Gloomrot_Stub_02 = new PrefabGUID(-623042674); public static readonly PrefabGUID Chain_Tree_GloomrotHills_01 = new PrefabGUID(288567750); public static readonly PrefabGUID Chain_Tree_GloomrotHills_02 = new PrefabGUID(-781210354); public static readonly PrefabGUID Chain_Tree_GloomrotHills_03 = new PrefabGUID(-1980053082); public static readonly PrefabGUID Chain_Tree_GloomrotHills_04 = new PrefabGUID(-554978394); public static readonly PrefabGUID Chain_Tree_GloomrotHills_05 = new PrefabGUID(-1376201568); public static readonly PrefabGUID Chain_Tree_GloomrotHills_06 = new PrefabGUID(6161423); public static readonly PrefabGUID Chain_Tree_GloomrotHills_07 = new PrefabGUID(842717845); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_01 = new PrefabGUID(214138110); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_02 = new PrefabGUID(1311854097); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_03 = new PrefabGUID(-1157220484); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_04 = new PrefabGUID(830737058); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_05 = new PrefabGUID(-501666390); public static readonly PrefabGUID Chain_Tree_LargeOak_01 = new PrefabGUID(1642032124); public static readonly PrefabGUID Chain_Tree_LargeOak_02 = new PrefabGUID(208901596); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_01 = new PrefabGUID(-258925352); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_02 = new PrefabGUID(-270104638); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_03 = new PrefabGUID(-1291127950); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_04 = new PrefabGUID(1574925506); public static readonly PrefabGUID Chain_Tree_LargeOakCursed_01 = new PrefabGUID(554409717); public static readonly PrefabGUID Chain_Tree_LargeOakCursed_02 = new PrefabGUID(-2008247640); public static readonly PrefabGUID Chain_Tree_LargeOakSkeleton_01 = new PrefabGUID(1343159071); public static readonly PrefabGUID Chain_Tree_LargeOakSkeleton_02 = new PrefabGUID(-380570612); public static readonly PrefabGUID Chain_Tree_LargePine_01 = new PrefabGUID(1392745837); public static readonly PrefabGUID Chain_Tree_LargePine_02 = new PrefabGUID(1258138347); public static readonly PrefabGUID Chain_Tree_LargePine_03 = new PrefabGUID(873854566); public static readonly PrefabGUID Chain_Tree_LargePineOld_01 = new PrefabGUID(1069319783); public static readonly PrefabGUID Chain_Tree_LargePineOld_02 = new PrefabGUID(881545507); public static readonly PrefabGUID Chain_Tree_LargePineOld_03 = new PrefabGUID(662760737); public static readonly PrefabGUID Chain_Tree_LargePineOld_Gloomrot_01 = new PrefabGUID(398593938); public static readonly PrefabGUID Chain_Tree_LargePineOld_Gloomrot_02 = new PrefabGUID(1334962732); public static readonly PrefabGUID Chain_Tree_LargePineOld_Gloomrot_03 = new PrefabGUID(-1959091056); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_01 = new PrefabGUID(-843806614); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_02 = new PrefabGUID(1210299630); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_03 = new PrefabGUID(-273457909); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_04 = new PrefabGUID(-915242629); public static readonly PrefabGUID Chain_Tree_LargePineOldSnow_01 = new PrefabGUID(-2023872669); public static readonly PrefabGUID Chain_Tree_LargePineOldSnow_02 = new PrefabGUID(-1496938626); public static readonly PrefabGUID Chain_Tree_LargePineOldSnow_03 = new PrefabGUID(-2012705019); public static readonly PrefabGUID Chain_Tree_LargePineSnow_01 = new PrefabGUID(324269657); public static readonly PrefabGUID Chain_Tree_LargePineSnow_02 = new PrefabGUID(2012679847); public static readonly PrefabGUID Chain_Tree_LargePineSnow_03 = new PrefabGUID(-320044170); public static readonly PrefabGUID Chain_Tree_Maple_01 = new PrefabGUID(-1886982333); public static readonly PrefabGUID Chain_Tree_Maple_02 = new PrefabGUID(-1659513116); public static readonly PrefabGUID Chain_Tree_MountainBirch01_snow = new PrefabGUID(-1278267989); public static readonly PrefabGUID Chain_Tree_MountainBirch02_snow = new PrefabGUID(1889507584); public static readonly PrefabGUID Chain_Tree_MountainBirch03_snow = new PrefabGUID(-1531494040); public static readonly PrefabGUID Chain_Tree_NoctemNorth_PineLarge_01 = new PrefabGUID(-14219428); public static readonly PrefabGUID Chain_Tree_NoctemSouth_Pine_01 = new PrefabGUID(23677037); public static readonly PrefabGUID Chain_Tree_NoctemSouth_Pine_02 = new PrefabGUID(159674491); public static readonly PrefabGUID Chain_Tree_NoctemSouth_Pine_03 = new PrefabGUID(385718485); public static readonly PrefabGUID Chain_Tree_Pine_01 = new PrefabGUID(1978566190); public static readonly PrefabGUID Chain_Tree_Pine_02 = new PrefabGUID(1138008954); public static readonly PrefabGUID Chain_Tree_Pine_02_Spider = new PrefabGUID(344811677); public static readonly PrefabGUID Chain_Tree_Pine_03 = new PrefabGUID(-1537927716); public static readonly PrefabGUID Chain_Tree_Pine_04 = new PrefabGUID(-315588781); public static readonly PrefabGUID Chain_Tree_Pine_05 = new PrefabGUID(-95118435); public static readonly PrefabGUID Chain_Tree_Pine_05_Spider = new PrefabGUID(1225392920); public static readonly PrefabGUID Chain_Tree_Pine_Snow_01 = new PrefabGUID(2057456511); public static readonly PrefabGUID Chain_Tree_Pine_Snow_02 = new PrefabGUID(-328298118); public static readonly PrefabGUID Chain_Tree_Pine_Snow_03 = new PrefabGUID(206812603); public static readonly PrefabGUID Chain_Tree_Pine_Snow_04 = new PrefabGUID(93287557); public static readonly PrefabGUID Chain_Tree_Pine_Snow_05 = new PrefabGUID(1960416312); public static readonly PrefabGUID Chain_Tree_Spruce_01 = new PrefabGUID(373246919); public static readonly PrefabGUID Chain_Tree_Spruce_02 = new PrefabGUID(-854645335); public static readonly PrefabGUID Chain_Tree_Spruce_03 = new PrefabGUID(415256464); public static readonly PrefabGUID Chain_Tree_SpruceSnow_01 = new PrefabGUID(-298783671); public static readonly PrefabGUID Chain_Tree_SpruceSnow_02 = new PrefabGUID(31080872); public static readonly PrefabGUID Chain_Tree_SpruceSnow_03 = new PrefabGUID(-636059912); public static readonly PrefabGUID Chain_Tree_Stump_Werewolf_01 = new PrefabGUID(772893611); public static readonly PrefabGUID Chain_Tree_Stump_Werewolf_02 = new PrefabGUID(-285571145); public static readonly PrefabGUID Chain_Tree_Stump_Werewolf_03 = new PrefabGUID(314558497); public static readonly PrefabGUID Chain_VampireFencePole_FineIronFencePole_01 = new PrefabGUID(1484599407); public static readonly PrefabGUID Chain_VampireFencePole_IronFencePole_01 = new PrefabGUID(2143543571); public static readonly PrefabGUID Chain_VampireGravestone_Big_01 = new PrefabGUID(-1254163198); public static readonly PrefabGUID Chain_VampireGravestone_Big_02 = new PrefabGUID(-727566802); public static readonly PrefabGUID Chain_VampireGravestone_Big_03 = new PrefabGUID(1486922657); public static readonly PrefabGUID Chain_VampireGravestone01 = new PrefabGUID(-847831092); public static readonly PrefabGUID Chain_VampireGravestone02 = new PrefabGUID(-606548039); public static readonly PrefabGUID Chain_VampireGravestone03 = new PrefabGUID(1661795803); public static readonly PrefabGUID Chain_VampireGravestone04 = new PrefabGUID(46319665); public static readonly PrefabGUID Chain_VampireGravestone05 = new PrefabGUID(-290599915); public static readonly PrefabGUID Chain_VampireGraveyard_Brazier_01 = new PrefabGUID(1050394576); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01 = new PrefabGUID(-178059685); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_Cursed = new PrefabGUID(-450312644); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_GloomRot_North = new PrefabGUID(-1869330413); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_GloomRot_South = new PrefabGUID(-1605136899); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_SilverLight = new PrefabGUID(2061675889); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_Snow = new PrefabGUID(-1700576470); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02 = new PrefabGUID(-700510500); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_Cursed = new PrefabGUID(1679171249); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_GloomRot_North = new PrefabGUID(-1947907654); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_GloomRot_South = new PrefabGUID(954596691); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_SilverLight = new PrefabGUID(360179082); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_Snow = new PrefabGUID(-880663447); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01 = new PrefabGUID(-1515843832); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_Cursed = new PrefabGUID(2124930860); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_GloomRot_North = new PrefabGUID(-344719048); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_GloomRot_South = new PrefabGUID(775917281); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_SilverLight = new PrefabGUID(407029715); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_Snow = new PrefabGUID(-1622127460); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02 = new PrefabGUID(-1576246794); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_Cursed = new PrefabGUID(505322791); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_GloomRot_North = new PrefabGUID(1467965232); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_GloomRot_South = new PrefabGUID(-1641821361); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_SilverLight = new PrefabGUID(806421757); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_Snow = new PrefabGUID(2092613525); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03 = new PrefabGUID(-526328612); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_Cursed = new PrefabGUID(-789237539); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_GloomRot_North = new PrefabGUID(-13602111); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_GloomRot_South = new PrefabGUID(1077646194); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_SilverLight = new PrefabGUID(-289865711); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_Snow = new PrefabGUID(2115145273); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04 = new PrefabGUID(1046632459); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_Cursed = new PrefabGUID(-94732411); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_GloomRot_North = new PrefabGUID(664374074); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_GloomRot_South = new PrefabGUID(-821194340); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_SilverLight = new PrefabGUID(770506718); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_Snow = new PrefabGUID(-1747527633); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01 = new PrefabGUID(-1610571017); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_Cursed = new PrefabGUID(1770297174); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_GloomRot_North = new PrefabGUID(-395361058); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_GloomRot_South = new PrefabGUID(1837482248); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_SilverLight = new PrefabGUID(-1169051388); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_Snow = new PrefabGUID(-1083565582); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02 = new PrefabGUID(3101564); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_Cursed = new PrefabGUID(348587490); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_GloomRot_North = new PrefabGUID(-1440350698); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_GloomRot_South = new PrefabGUID(660971563); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_SilverLight = new PrefabGUID(35974818); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_Snow = new PrefabGUID(-546688167); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01 = new PrefabGUID(1503980136); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_Cursed = new PrefabGUID(-1801598924); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_GloomRot_North = new PrefabGUID(-1984609970); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_GloomRot_South = new PrefabGUID(-1901274261); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_SilverLight = new PrefabGUID(-1829107339); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_Snow = new PrefabGUID(-1849560456); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02 = new PrefabGUID(659193290); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_Cursed = new PrefabGUID(-94338890); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_GloomRot_North = new PrefabGUID(1220167562); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_GloomRot_South = new PrefabGUID(-846936078); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_SilverLight = new PrefabGUID(-413205513); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_Snow = new PrefabGUID(1560401529); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03 = new PrefabGUID(-2058022659); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_Cursed = new PrefabGUID(-1227431611); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_GloomRot_North = new PrefabGUID(1182462480); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_GloomRot_South = new PrefabGUID(348988213); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_SilverLight = new PrefabGUID(-2121019848); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_Snow = new PrefabGUID(-930874983); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04 = new PrefabGUID(838220759); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_Cursed = new PrefabGUID(-148941507); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_GloomRot_North = new PrefabGUID(1799225021); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_GloomRot_South = new PrefabGUID(1867603057); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_SilverLight = new PrefabGUID(-1927681802); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_Snow = new PrefabGUID(-867577145); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05 = new PrefabGUID(302708752); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_Cursed = new PrefabGUID(1702151888); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_GloomRot_North = new PrefabGUID(1724099902); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_GloomRot_South = new PrefabGUID(2068801022); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_SilverLight = new PrefabGUID(-615531872); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_Snow = new PrefabGUID(154866664); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01 = new PrefabGUID(540307022); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_Cursed = new PrefabGUID(113662653); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_GloomRot_North = new PrefabGUID(1635530604); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_GloomRot_South = new PrefabGUID(1366077311); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_SilverHills = new PrefabGUID(219002118); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_Snow = new PrefabGUID(-881915068); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02 = new PrefabGUID(-1742110863); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_Cursed = new PrefabGUID(-604467640); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_GloomRot_North = new PrefabGUID(-21773376); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_GloomRot_South = new PrefabGUID(873849921); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_SilverHills = new PrefabGUID(56852538); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_Snow = new PrefabGUID(1769346996); public static readonly PrefabGUID Chain_Vineyard_BarrelShelf01 = new PrefabGUID(-1522804756); public static readonly PrefabGUID Chain_Vineyard_BarrelShelf02 = new PrefabGUID(-1508892883); public static readonly PrefabGUID Chain_Vineyard_BarrelShelf03 = new PrefabGUID(-1650685762); public static readonly PrefabGUID Chain_Vineyard_Distillery_Breakable01 = new PrefabGUID(-1894560552); public static readonly PrefabGUID Chain_VineyardFence_Diagonal_01 = new PrefabGUID(5031606); public static readonly PrefabGUID Chain_VineyardFence_Diagonal_02 = new PrefabGUID(1250844258); public static readonly PrefabGUID Chain_VineyardFence_End01 = new PrefabGUID(652565918); public static readonly PrefabGUID Chain_VineyardFence01 = new PrefabGUID(-350587589); public static readonly PrefabGUID Chain_VineyardFence02 = new PrefabGUID(2058421982); public static readonly PrefabGUID Chain_VineyardFence03 = new PrefabGUID(-2144361548); public static readonly PrefabGUID Chain_Weaponrack_01 = new PrefabGUID(-991982917); public static readonly PrefabGUID Chain_Weaponrack_02 = new PrefabGUID(-1774928686); public static readonly PrefabGUID Chain_WerewolfTree_01 = new PrefabGUID(-2139259365); public static readonly PrefabGUID Chain_WerewolfTree_02 = new PrefabGUID(1331624709); public static readonly PrefabGUID Chain_WerewolfTree_03 = new PrefabGUID(2001038441); public static readonly PrefabGUID Chain_WerewolfTree_04 = new PrefabGUID(739308541); public static readonly PrefabGUID Chain_WerewolfTree_05 = new PrefabGUID(2009810821); public static readonly PrefabGUID Chain_WerewolfTree_06 = new PrefabGUID(-1182640249); public static readonly PrefabGUID Chain_WerewolfVillage_BigCageDoor01 = new PrefabGUID(1668709998); public static readonly PrefabGUID Chain_WerewolfVillage_BigCageDoor02 = new PrefabGUID(1615250647); public static readonly PrefabGUID Chain_WheelBarrow_01 = new PrefabGUID(-1072062623); public static readonly PrefabGUID Chain_WheelBarrow_01_InteractionIdle = new PrefabGUID(1751660203); public static readonly PrefabGUID Chain_WheelBarrow_02 = new PrefabGUID(-764276565); public static readonly PrefabGUID Chain_WheelBarrow_03 = new PrefabGUID(1095454998); public static readonly PrefabGUID Chain_WheelBarrow_04 = new PrefabGUID(248375332); public static readonly PrefabGUID Chain_WheelBarrow_05 = new PrefabGUID(279430915); public static readonly PrefabGUID Chain_WheelBarrow_06 = new PrefabGUID(631635188); public static readonly PrefabGUID Chain_WheelBarrow_06_InteractionIdle = new PrefabGUID(1976471069); public static readonly PrefabGUID Chain_WheelBarrow_Cursed_01 = new PrefabGUID(-882265623); public static readonly PrefabGUID Chain_WheelBarrow_Snow_01 = new PrefabGUID(318367013); public static readonly PrefabGUID Chain_WheelBarrow_Snow_02 = new PrefabGUID(1987911629); public static readonly PrefabGUID Chain_WheelBarrow_Strongblade_01 = new PrefabGUID(2093572378); public static readonly PrefabGUID Chain_WheelBarrow_Strongblade_02 = new PrefabGUID(-459375088); public static readonly PrefabGUID Chain_Wilderness_Altar_StoneUrn_01 = new PrefabGUID(-1283429980); public static readonly PrefabGUID Chain_Wilderness_Altar_StoneUrn_02 = new PrefabGUID(-502411786); public static readonly PrefabGUID Chain_Wilderness_Altar_StoneUrn_03 = new PrefabGUID(1398367537); public static readonly PrefabGUID Chain_Wilderness_Pyre_Flag_01 = new PrefabGUID(568257433); public static readonly PrefabGUID Chain_Wilderness_Pyre_Flag_02 = new PrefabGUID(-249561369); public static readonly PrefabGUID Chain_WildlingFlag01 = new PrefabGUID(807567347); public static readonly PrefabGUID Chain_WildlingFlag02 = new PrefabGUID(674228687); public static readonly PrefabGUID Chain_WildlingFlag03 = new PrefabGUID(-161204247); public static readonly PrefabGUID Chain_Witch_FrogTree_01 = new PrefabGUID(-1624784024); public static readonly PrefabGUID Chain_Witch_SkullStake_01 = new PrefabGUID(633416023); public static readonly PrefabGUID Chain_Witch_SkullStake_02 = new PrefabGUID(-1788338302); public static readonly PrefabGUID Chain_Witch_SkullStake_03 = new PrefabGUID(-51539496); public static readonly PrefabGUID Chain_Witch_Stake_01 = new PrefabGUID(-1949254602); public static readonly PrefabGUID Chain_Witch_Stake_02 = new PrefabGUID(1200659821); public static readonly PrefabGUID Chain_Witch_Stake_03 = new PrefabGUID(-1341893090); public static readonly PrefabGUID Chain_Witch_Stake_04 = new PrefabGUID(-1806904384); public static readonly PrefabGUID Chain_Witch_Stake_04_Candles = new PrefabGUID(425094962); public static readonly PrefabGUID Chain_Witch_Stake_05 = new PrefabGUID(-1451403539); public static readonly PrefabGUID Chain_Witch_Stake_05_Candles = new PrefabGUID(1152279482); public static readonly PrefabGUID Chain_Witch_Stake_06 = new PrefabGUID(-192426060); public static readonly PrefabGUID Chain_Witch_Stake_07 = new PrefabGUID(-1054582624); public static readonly PrefabGUID Chain_Witch_Stake_08 = new PrefabGUID(1945933109); public static readonly PrefabGUID Chain_Witch_Stake_09 = new PrefabGUID(-700802344); public static readonly PrefabGUID Chain_Witch_Stake_10 = new PrefabGUID(-1332648735); public static readonly PrefabGUID Chain_Witch_Stake_11 = new PrefabGUID(-188743293); public static readonly PrefabGUID Chain_Witch_Stake_12 = new PrefabGUID(1425568148); public static readonly PrefabGUID Chain_Witch_Stake_13 = new PrefabGUID(2091064964); public static readonly PrefabGUID Chain_WoodenCage_Door_01 = new PrefabGUID(1853887736); public static readonly PrefabGUID Chain_WoodenCage_Door_02 = new PrefabGUID(391068872); public static readonly PrefabGUID ChairsBuildMenuGroup = new PrefabGUID(-590392002); public static readonly PrefabGUID Chaos_Vampire_Buff_AgonizingFlames = new PrefabGUID(907164860); public static readonly PrefabGUID Chaos_Vampire_Buff_Combustion = new PrefabGUID(-649999207); public static readonly PrefabGUID Chaos_Vampire_Buff_Heated = new PrefabGUID(-1192081135); public static readonly PrefabGUID Chaos_Vampire_Buff_Ignite = new PrefabGUID(348724578); public static readonly PrefabGUID Chaos_Vampire_Combust_AreaImpact = new PrefabGUID(-198740873); public static readonly PrefabGUID Chaos_Vampire_Ignite_AreaImpact = new PrefabGUID(1687723202); public static readonly PrefabGUID Chaos_Vampire_Ignite_AreaImpact_Soulshard = new PrefabGUID(-1500081937); public static readonly PrefabGUID Chaos_WaveOfDestruction_EaseOutCurve = new PrefabGUID(583484765); public static readonly PrefabGUID ChaosSpellSchoolAsset = new PrefabGUID(597438920); public static readonly PrefabGUID CHAR_ArchMage_FlameSphere = new PrefabGUID(2138173476); public static readonly PrefabGUID CHAR_ArchMage_Summon = new PrefabGUID(805231073); public static readonly PrefabGUID CHAR_ArchMage_VBlood = new PrefabGUID(-2013903325); public static readonly PrefabGUID CHAR_Arena_HealthOrb = new PrefabGUID(692079022); public static readonly PrefabGUID CHAR_Bandit_Bomber = new PrefabGUID(-1128238456); public static readonly PrefabGUID CHAR_Bandit_Bomber_Servant = new PrefabGUID(-450600397); public static readonly PrefabGUID CHAR_Bandit_Bomber_VBlood = new PrefabGUID(1896428751); public static readonly PrefabGUID CHAR_Bandit_Chaosarrow_GateBoss_Minor = new PrefabGUID(1854211210); public static readonly PrefabGUID CHAR_Bandit_Chaosarrow_VBlood = new PrefabGUID(763273073); public static readonly PrefabGUID CHAR_Bandit_Deadeye = new PrefabGUID(-1030822544); public static readonly PrefabGUID CHAR_Bandit_Deadeye_Servant = new PrefabGUID(-2086044081); public static readonly PrefabGUID CHAR_Bandit_Fisherman_VBlood = new PrefabGUID(-2122682556); public static readonly PrefabGUID CHAR_Bandit_Foreman_VBlood = new PrefabGUID(2122229952); public static readonly PrefabGUID CHAR_Bandit_Foreman_VBlood_GateBoss_Minor = new PrefabGUID(17609984); public static readonly PrefabGUID CHAR_Bandit_Frostarrow_VBlood = new PrefabGUID(1124739990); public static readonly PrefabGUID CHAR_Bandit_Hunter = new PrefabGUID(-1301144178); public static readonly PrefabGUID CHAR_Bandit_Hunter_MicroPOI_Cocoon = new PrefabGUID(343676339); public static readonly PrefabGUID CHAR_Bandit_Hunter_Servant = new PrefabGUID(-370708253); public static readonly PrefabGUID CHAR_Bandit_Leader_VBlood_UNUSED = new PrefabGUID(-175381832); public static readonly PrefabGUID CHAR_Bandit_Leader_Wolf_Summon = new PrefabGUID(-671059374); public static readonly PrefabGUID CHAR_Bandit_Miner_Standard_Servant = new PrefabGUID(1112903312); public static readonly PrefabGUID CHAR_Bandit_Mugger = new PrefabGUID(2057508774); public static readonly PrefabGUID CHAR_Bandit_Mugger_Servant = new PrefabGUID(1727426580); public static readonly PrefabGUID CHAR_Bandit_Prisoner_Villager_Female = new PrefabGUID(1069072707); public static readonly PrefabGUID CHAR_Bandit_Prisoner_Villager_Male = new PrefabGUID(286320185); public static readonly PrefabGUID CHAR_Bandit_Rascal = new PrefabGUID(-1194643220); public static readonly PrefabGUID CHAR_Bandit_Rascal_Servant = new PrefabGUID(-1308100049); public static readonly PrefabGUID CHAR_Bandit_Scout = new PrefabGUID(1220569089); public static readonly PrefabGUID CHAR_Bandit_Scout_Servant = new PrefabGUID(1094898203); public static readonly PrefabGUID CHAR_Bandit_Stalker = new PrefabGUID(-309264723); public static readonly PrefabGUID CHAR_Bandit_Stalker_Servant = new PrefabGUID(1453520986); public static readonly PrefabGUID CHAR_Bandit_Stalker_VBlood = new PrefabGUID(1106149033); public static readonly PrefabGUID CHAR_Bandit_StoneBreaker_VBlood = new PrefabGUID(-2025101517); public static readonly PrefabGUID CHAR_Bandit_StoneBreaker_VBlood_GateBoss_Minor = new PrefabGUID(-1420322422); public static readonly PrefabGUID CHAR_Bandit_Thief = new PrefabGUID(923140362); public static readonly PrefabGUID CHAR_Bandit_Thief_Servant = new PrefabGUID(-872078546); public static readonly PrefabGUID CHAR_Bandit_Thug = new PrefabGUID(-301730941); public static readonly PrefabGUID CHAR_Bandit_Thug_MicroPOI_Cocoon = new PrefabGUID(-198252716); public static readonly PrefabGUID CHAR_Bandit_Thug_Servant = new PrefabGUID(1466015976); public static readonly PrefabGUID CHAR_Bandit_Tourok_GateBoss_Minor = new PrefabGUID(478580792); public static readonly PrefabGUID CHAR_Bandit_Tourok_VBlood = new PrefabGUID(-1659822956); public static readonly PrefabGUID CHAR_Bandit_Trapper = new PrefabGUID(-589412777); public static readonly PrefabGUID CHAR_Bandit_Trapper_Servant = new PrefabGUID(2112911542); public static readonly PrefabGUID CHAR_Bandit_Wolf = new PrefabGUID(-1554428547); public static readonly PrefabGUID CHAR_Bandit_Woodcutter_Standard_Servant = new PrefabGUID(51737727); public static readonly PrefabGUID CHAR_Bandit_Worker_Gatherer = new PrefabGUID(1743532914); public static readonly PrefabGUID CHAR_Bandit_Worker_Gatherer_Servant = new PrefabGUID(48283616); public static readonly PrefabGUID CHAR_Bandit_Worker_Miner = new PrefabGUID(-2039670689); public static readonly PrefabGUID CHAR_Bandit_Worker_Woodcutter = new PrefabGUID(1309418594); public static readonly PrefabGUID CHAR_BatVampire_VBlood = new PrefabGUID(1112948824); public static readonly PrefabGUID CHAR_Blackfang_Alchemist = new PrefabGUID(326501064); public static readonly PrefabGUID CHAR_Blackfang_Alchemist_Servant = new PrefabGUID(2142021685); public static readonly PrefabGUID CHAR_Blackfang_CarverBoss_VBlood = new PrefabGUID(-1669199769); public static readonly PrefabGUID CHAR_Blackfang_DartFlinger = new PrefabGUID(1209580976); public static readonly PrefabGUID CHAR_Blackfang_DartFlinger_Servant = new PrefabGUID(-253226787); public static readonly PrefabGUID CHAR_Blackfang_Livith_Illusion = new PrefabGUID(1254601307); public static readonly PrefabGUID CHAR_Blackfang_Livith_VBlood = new PrefabGUID(-1383529374); public static readonly PrefabGUID CHAR_Blackfang_Lucie_VBlood = new PrefabGUID(1295855316); public static readonly PrefabGUID CHAR_Blackfang_Lurker = new PrefabGUID(-1733829912); public static readonly PrefabGUID CHAR_Blackfang_Lurker_Servant = new PrefabGUID(40217214); public static readonly PrefabGUID CHAR_Blackfang_Morgana_VBlood = new PrefabGUID(591725925); public static readonly PrefabGUID CHAR_Blackfang_MorganasTail = new PrefabGUID(-1075824048); public static readonly PrefabGUID CHAR_Blackfang_Peon = new PrefabGUID(-1562098554); public static readonly PrefabGUID CHAR_Blackfang_Peon_Miner = new PrefabGUID(-699233841); public static readonly PrefabGUID CHAR_Blackfang_Peon_Servant = new PrefabGUID(-39008356); public static readonly PrefabGUID CHAR_Blackfang_PeonCarryingBarrel = new PrefabGUID(1924724671); public static readonly PrefabGUID CHAR_Blackfang_PeonLogCarryer = new PrefabGUID(1451256919); public static readonly PrefabGUID CHAR_Blackfang_Sentinel = new PrefabGUID(1531777139); public static readonly PrefabGUID CHAR_Blackfang_Sentinel_Servant = new PrefabGUID(-1287013240); public static readonly PrefabGUID CHAR_Blackfang_Striker = new PrefabGUID(761646020); public static readonly PrefabGUID CHAR_Blackfang_Striker_Servant = new PrefabGUID(-274383877); public static readonly PrefabGUID CHAR_Blackfang_Valyr_VBlood = new PrefabGUID(173259239); public static readonly PrefabGUID CHAR_Blackfang_ValyrCauldron = new PrefabGUID(1439742793); public static readonly PrefabGUID CHAR_Blackfang_Venomblade = new PrefabGUID(1864177126); public static readonly PrefabGUID CHAR_Blackfang_Venomblade_Servant = new PrefabGUID(1906807803); public static readonly PrefabGUID CHAR_Blackfang_Viper = new PrefabGUID(-436956599); public static readonly PrefabGUID CHAR_Blackfang_Viper_Servant = new PrefabGUID(-1108748448); public static readonly PrefabGUID CHAR_Blackfang_WoodCarver = new PrefabGUID(-1508046438); public static readonly PrefabGUID CHAR_Blackfang_WoodCarver_Servant = new PrefabGUID(-2089362645); public static readonly PrefabGUID CHAR_Blackfang_WoodCarver_Worshipper = new PrefabGUID(-625375348); public static readonly PrefabGUID CHAR_BloodBuff_Corrupted_Angel = new PrefabGUID(-932793458); public static readonly PrefabGUID CHAR_BloodBuff_Corrupted_Harpy = new PrefabGUID(-143994147); public static readonly PrefabGUID CHAR_Carriage_BanditAnimal = new PrefabGUID(1900336326); public static readonly PrefabGUID CHAR_Carriage_BanditCopper = new PrefabGUID(1866779672); public static readonly PrefabGUID CHAR_Carriage_BanditPlank = new PrefabGUID(-364183632); public static readonly PrefabGUID CHAR_Carriage_BanditPrisoners = new PrefabGUID(-1190354298); public static readonly PrefabGUID CHAR_Carriage_BanditSulfur = new PrefabGUID(855721879); public static readonly PrefabGUID CHAR_Carriage_BlackfangBastion = new PrefabGUID(-1395711815); public static readonly PrefabGUID CHAR_Carriage_BlackfangSouth = new PrefabGUID(-2075236675); public static readonly PrefabGUID CHAR_Carriage_ChuchGrape = new PrefabGUID(-84975023); public static readonly PrefabGUID CHAR_Carriage_ChuchSilver = new PrefabGUID(-1048977650); public static readonly PrefabGUID CHAR_Carriage_ChurchLegion = new PrefabGUID(177376927); public static readonly PrefabGUID CHAR_Carriage_ChurchMutants = new PrefabGUID(400170781); public static readonly PrefabGUID CHAR_Carriage_MilitiaCotton = new PrefabGUID(213173421); public static readonly PrefabGUID CHAR_Carriage_MilitiaIron = new PrefabGUID(769065062); public static readonly PrefabGUID CHAR_Carriage_MilitiaQuartz = new PrefabGUID(-75106506); public static readonly PrefabGUID CHAR_CarriageHorse_BanditAnimal = new PrefabGUID(-799718518); public static readonly PrefabGUID CHAR_CarriageHorse_BanditCopper = new PrefabGUID(-443327719); public static readonly PrefabGUID CHAR_CarriageHorse_BanditPlank = new PrefabGUID(-1859852856); public static readonly PrefabGUID CHAR_CarriageHorse_BanditPrisoners = new PrefabGUID(-1761137820); public static readonly PrefabGUID CHAR_CarriageHorse_BanditSulfur = new PrefabGUID(-1193126567); public static readonly PrefabGUID CHAR_CarriageHorse_BlackfangBastion = new PrefabGUID(731857280); public static readonly PrefabGUID CHAR_CarriageHorse_BlackfangSouth = new PrefabGUID(96544496); public static readonly PrefabGUID CHAR_CarriageHorse_ChuchGrape = new PrefabGUID(803219139); public static readonly PrefabGUID CHAR_CarriageHorse_ChuchSilver = new PrefabGUID(-1588337666); public static readonly PrefabGUID CHAR_CarriageHorse_ChurchLegion = new PrefabGUID(452018442); public static readonly PrefabGUID CHAR_CarriageHorse_ChurchMutants = new PrefabGUID(-1666526529); public static readonly PrefabGUID CHAR_CarriageHorse_MilitiaCotton = new PrefabGUID(-755774482); public static readonly PrefabGUID CHAR_CarriageHorse_MilitiaIron = new PrefabGUID(1510247015); public static readonly PrefabGUID CHAR_CarriageHorse_MilitiaQuartz = new PrefabGUID(374565592); public static readonly PrefabGUID CHAR_ChurchOfLight_Archer = new PrefabGUID(426583055); public static readonly PrefabGUID CHAR_ChurchOfLight_Archer_Servant = new PrefabGUID(-915884427); public static readonly PrefabGUID CHAR_ChurchOfLight_Cardinal_VBlood = new PrefabGUID(114912615); public static readonly PrefabGUID CHAR_ChurchOfLight_CardinalAide = new PrefabGUID(1745498602); public static readonly PrefabGUID CHAR_ChurchOfLight_Cleric = new PrefabGUID(-1464869978); public static readonly PrefabGUID CHAR_ChurchOfLight_Cleric_Servant = new PrefabGUID(1218339832); public static readonly PrefabGUID CHAR_ChurchOfLight_EnchantedCross = new PrefabGUID(-1449314709); public static readonly PrefabGUID CHAR_ChurchOfLight_Footman = new PrefabGUID(2128996433); public static readonly PrefabGUID CHAR_ChurchOfLight_Footman_Servant = new PrefabGUID(-1719944550); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_2H = new PrefabGUID(-930333806); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_2H_Servant = new PrefabGUID(17367048); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_Shield = new PrefabGUID(794228023); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_Shield_Servant = new PrefabGUID(-694328454); public static readonly PrefabGUID CHAR_ChurchOfLight_Lightweaver = new PrefabGUID(1185952775); public static readonly PrefabGUID CHAR_ChurchOfLight_Lightweaver_Servant = new PrefabGUID(-383158562); public static readonly PrefabGUID CHAR_ChurchOfLight_Miner_Standard = new PrefabGUID(924132254); public static readonly PrefabGUID CHAR_ChurchOfLight_Miner_Standard_Servant = new PrefabGUID(-1988959460); public static readonly PrefabGUID CHAR_ChurchOfLight_Overseer_VBlood = new PrefabGUID(-26105228); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin = new PrefabGUID(1728773109); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin_HomePos = new PrefabGUID(-502558061); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin_Servant = new PrefabGUID(1649578802); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin_VBlood = new PrefabGUID(-740796338); public static readonly PrefabGUID CHAR_ChurchOfLight_Priest = new PrefabGUID(1406393857); public static readonly PrefabGUID CHAR_ChurchOfLight_Priest_Servant = new PrefabGUID(-1728284448); public static readonly PrefabGUID CHAR_ChurchOfLight_Rifleman = new PrefabGUID(1148936156); public static readonly PrefabGUID CHAR_ChurchOfLight_Rifleman_Servant = new PrefabGUID(-268935837); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Enforcer = new PrefabGUID(891705701); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Enforcer_Servant = new PrefabGUID(-2114140065); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Sentry = new PrefabGUID(-240536861); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Sentry_Servant = new PrefabGUID(-442412464); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveRuffian = new PrefabGUID(-1875351031); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveRuffian_Cover = new PrefabGUID(-1387838833); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveRuffian_Servant = new PrefabGUID(-1416355128); public static readonly PrefabGUID CHAR_ChurchOfLight_SmiteOrb = new PrefabGUID(1917502536); public static readonly PrefabGUID CHAR_ChurchOfLight_Sommelier_BarrelMinion = new PrefabGUID(-1917548708); public static readonly PrefabGUID CHAR_ChurchOfLight_Sommelier_VBlood = new PrefabGUID(192051202); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Female = new PrefabGUID(-1224027101); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Female_Servant = new PrefabGUID(1157537604); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Male = new PrefabGUID(-2025921616); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Male_Servant = new PrefabGUID(-1786031969); public static readonly PrefabGUID CHAR_CopperGolem = new PrefabGUID(1107541186); public static readonly PrefabGUID CHAR_Corrupted_Bear_Standard = new PrefabGUID(-1697944553); public static readonly PrefabGUID CHAR_Corrupted_Crow = new PrefabGUID(1029047051); public static readonly PrefabGUID CHAR_Corrupted_Deer = new PrefabGUID(1780171587); public static readonly PrefabGUID CHAR_Corrupted_Wolf = new PrefabGUID(616274140); public static readonly PrefabGUID CHAR_CreatureDeer_Mutated = new PrefabGUID(-575831311); public static readonly PrefabGUID CHAR_CreatureMoose_Mutated = new PrefabGUID(1570140219); public static readonly PrefabGUID CHAR_Critter_Rat = new PrefabGUID(-2072914343); public static readonly PrefabGUID CHAR_Critter_Silkworm = new PrefabGUID(-1587402408); public static readonly PrefabGUID CHAR_Critter_VerminNest_Rat = new PrefabGUID(-372256748); public static readonly PrefabGUID CHAR_Crow_Manticore_Minion = new PrefabGUID(-1476015811); public static readonly PrefabGUID CHAR_Cultist_Pyromancer = new PrefabGUID(2055824593); public static readonly PrefabGUID CHAR_Cultist_Slicer = new PrefabGUID(1807491570); public static readonly PrefabGUID CHAR_Cursed_Bear_Spirit = new PrefabGUID(1105583702); public static readonly PrefabGUID CHAR_Cursed_Bear_Standard = new PrefabGUID(-559819989); public static readonly PrefabGUID CHAR_Cursed_MonsterToad = new PrefabGUID(575918722); public static readonly PrefabGUID CHAR_Cursed_MonsterToad_Minion = new PrefabGUID(-38041784); public static readonly PrefabGUID CHAR_Cursed_Mosquito = new PrefabGUID(-744966291); public static readonly PrefabGUID CHAR_Cursed_MountainBeast_SpiritDouble = new PrefabGUID(-935560085); public static readonly PrefabGUID CHAR_Cursed_MountainBeast_VBlood = new PrefabGUID(-1936575244); public static readonly PrefabGUID CHAR_Cursed_Nightlurker = new PrefabGUID(-2046268156); public static readonly PrefabGUID CHAR_Cursed_ToadKing_VBlood = new PrefabGUID(-203043163); public static readonly PrefabGUID CHAR_Cursed_ToadSpitter = new PrefabGUID(1478790879); public static readonly PrefabGUID CHAR_Cursed_Witch = new PrefabGUID(-56441915); public static readonly PrefabGUID CHAR_Cursed_Witch_Exploding_Mosquito = new PrefabGUID(-1399273168); public static readonly PrefabGUID CHAR_Cursed_Witch_NetherDemon = new PrefabGUID(-54072010); public static readonly PrefabGUID CHAR_Cursed_Witch_VBlood = new PrefabGUID(-910296704); public static readonly PrefabGUID CHAR_Cursed_Wolf = new PrefabGUID(-218175217); public static readonly PrefabGUID CHAR_Cursed_Wolf_Spirit = new PrefabGUID(407089231); public static readonly PrefabGUID CHAR_Cursed_WormTerror = new PrefabGUID(658578725); public static readonly PrefabGUID CHAR_Dracula_BloodSoul = new PrefabGUID(1406266284); public static readonly PrefabGUID CHAR_Dracula_BloodSoul_Heart = new PrefabGUID(55100532); public static readonly PrefabGUID CHAR_Dracula_ShadowBatSwarm = new PrefabGUID(-2092104425); public static readonly PrefabGUID CHAR_Dracula_SpellStone_LargeBlood = new PrefabGUID(32692466); public static readonly PrefabGUID CHAR_EmeryElemental = new PrefabGUID(-1388651766); public static readonly PrefabGUID CHAR_EmeryGolem = new PrefabGUID(1787640747); public static readonly PrefabGUID CHAR_Farmland_Wolf = new PrefabGUID(-578677530); public static readonly PrefabGUID CHAR_Farmlands_Cow = new PrefabGUID(721166952); public static readonly PrefabGUID CHAR_Farmlands_Farmer = new PrefabGUID(-1342764880); public static readonly PrefabGUID CHAR_Farmlands_Farmer_Servant = new PrefabGUID(516718373); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Female_FryingPan = new PrefabGUID(729746981); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Female_Pitchfork = new PrefabGUID(1576267559); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Club = new PrefabGUID(-164116132); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Shovel = new PrefabGUID(-864975423); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Torch = new PrefabGUID(-81727312); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Unarmed = new PrefabGUID(-1353870145); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Werewolf = new PrefabGUID(-951976780); public static readonly PrefabGUID CHAR_Farmlands_Nun_Servant = new PrefabGUID(-1788957652); public static readonly PrefabGUID CHAR_Farmlands_Pig = new PrefabGUID(-1356006948); public static readonly PrefabGUID CHAR_Farmlands_Ram = new PrefabGUID(947731555); public static readonly PrefabGUID CHAR_Farmlands_Sheep = new PrefabGUID(1012307512); public static readonly PrefabGUID CHAR_Farmlands_SheepOld = new PrefabGUID(1635167941); public static readonly PrefabGUID CHAR_Farmlands_SmallPig = new PrefabGUID(1420480270); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female = new PrefabGUID(525027204); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female_Servant = new PrefabGUID(1532829342); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female_Sister = new PrefabGUID(1772642154); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female_Sister_Servant = new PrefabGUID(-444945115); public static readonly PrefabGUID CHAR_Farmlands_Villager_Male = new PrefabGUID(1887807944); public static readonly PrefabGUID CHAR_Farmlands_Villager_Male_Servant = new PrefabGUID(1426964824); public static readonly PrefabGUID CHAR_Farmlands_Woodcutter_Standard = new PrefabGUID(-893091615); public static readonly PrefabGUID CHAR_Farmlands_Woodcutter_Standard_Servant = new PrefabGUID(-1659842473); public static readonly PrefabGUID Char_Fish_General = new PrefabGUID(1559481073); public static readonly PrefabGUID CHAR_Forest_AngryMoose = new PrefabGUID(2097040330); public static readonly PrefabGUID CHAR_Forest_Bear_Dire_Vblood = new PrefabGUID(-1391546313); public static readonly PrefabGUID CHAR_Forest_Bear_Standard = new PrefabGUID(1043643344); public static readonly PrefabGUID CHAR_Forest_Crow = new PrefabGUID(-2002658567); public static readonly PrefabGUID CHAR_Forest_Deer = new PrefabGUID(1897056612); public static readonly PrefabGUID CHAR_Forest_Deer_StayCloseToSpawn = new PrefabGUID(1696014952); public static readonly PrefabGUID CHAR_Forest_Moose = new PrefabGUID(-831097925); public static readonly PrefabGUID CHAR_Forest_Wolf = new PrefabGUID(-1418430647); public static readonly PrefabGUID CHAR_Forest_Wolf_VBlood = new PrefabGUID(-1905691330); public static readonly PrefabGUID CHAR_Frostarrow_GateBoss_Minor = new PrefabGUID(1318855899); public static readonly PrefabGUID CHAR_GateBoss_Pixie = new PrefabGUID(-1084690188); public static readonly PrefabGUID CHAR_Geomancer_Golem_Minion = new PrefabGUID(-2092246077); public static readonly PrefabGUID CHAR_Geomancer_Human_VBlood = new PrefabGUID(-1065970933); public static readonly PrefabGUID CHAR_Gloomrot_AceIncinerator = new PrefabGUID(1756241788); public static readonly PrefabGUID CHAR_Gloomrot_AceIncinerator_Servant = new PrefabGUID(-1897484769); public static readonly PrefabGUID CHAR_Gloomrot_Batoon = new PrefabGUID(-1707267769); public static readonly PrefabGUID CHAR_Gloomrot_Batoon_Servant = new PrefabGUID(657708566); public static readonly PrefabGUID CHAR_Gloomrot_Iva_VBlood = new PrefabGUID(172235178); public static readonly PrefabGUID CHAR_Gloomrot_Monster_VBlood = new PrefabGUID(1233988687); public static readonly PrefabGUID CHAR_Gloomrot_Purifier_VBlood = new PrefabGUID(106480588); public static readonly PrefabGUID CHAR_Gloomrot_Purifier_VBlood_GateBoss_Major = new PrefabGUID(-440174408); public static readonly PrefabGUID CHAR_Gloomrot_Pyro = new PrefabGUID(-322293503); public static readonly PrefabGUID CHAR_Gloomrot_Pyro_Servant = new PrefabGUID(1304434816); public static readonly PrefabGUID CHAR_Gloomrot_Railgunner = new PrefabGUID(1732477970); public static readonly PrefabGUID CHAR_Gloomrot_Railgunner_Servant = new PrefabGUID(-1070366200); public static readonly PrefabGUID CHAR_Gloomrot_RailgunSergeant_HomePos = new PrefabGUID(-1499025256); public static readonly PrefabGUID CHAR_Gloomrot_RailgunSergeant_Minion = new PrefabGUID(1626314708); public static readonly PrefabGUID CHAR_Gloomrot_RailgunSergeant_VBlood = new PrefabGUID(2054432370); public static readonly PrefabGUID CHAR_Gloomrot_SentryOfficer = new PrefabGUID(1401026468); public static readonly PrefabGUID CHAR_Gloomrot_SentryOfficer_Servant = new PrefabGUID(-1213645419); public static readonly PrefabGUID CHAR_Gloomrot_SentryTurret = new PrefabGUID(-1082044089); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_Driller = new PrefabGUID(709450349); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_Gattler = new PrefabGUID(-884401089); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_LightningRod = new PrefabGUID(1655577903); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_Zapper = new PrefabGUID(-2018710724); public static readonly PrefabGUID CHAR_Gloomrot_Tazer = new PrefabGUID(674807351); public static readonly PrefabGUID CHAR_Gloomrot_Tazer_Servant = new PrefabGUID(-924080115); public static readonly PrefabGUID CHAR_Gloomrot_Technician = new PrefabGUID(820492683); public static readonly PrefabGUID CHAR_Gloomrot_Technician_Labworker = new PrefabGUID(-825299465); public static readonly PrefabGUID CHAR_Gloomrot_Technician_Labworker_Servant = new PrefabGUID(-1034892278); public static readonly PrefabGUID CHAR_Gloomrot_Technician_Servant = new PrefabGUID(-775762125); public static readonly PrefabGUID CHAR_Gloomrot_TheProfessor_VBlood = new PrefabGUID(814083983); public static readonly PrefabGUID CHAR_Gloomrot_TractorBeamer = new PrefabGUID(-293507834); public static readonly PrefabGUID CHAR_Gloomrot_TractorBeamer_Servant = new PrefabGUID(565869317); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Female = new PrefabGUID(1216169364); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Female_Servant = new PrefabGUID(-1192403515); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Male = new PrefabGUID(-732208863); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Male_Servant = new PrefabGUID(-2085282780); public static readonly PrefabGUID CHAR_Gloomrot_Voltage_VBlood = new PrefabGUID(-1101874342); public static readonly PrefabGUID CHAR_Gloomrot_Voltage_VBlood_GateBoss_Major = new PrefabGUID(-427888732); public static readonly PrefabGUID CHAR_GoldGolem = new PrefabGUID(192241915); public static readonly PrefabGUID CHAR_Graveyard_Crow = new PrefabGUID(-221278041); public static readonly PrefabGUID CHAR_Harpy_Dasher = new PrefabGUID(-1846851895); public static readonly PrefabGUID CHAR_Harpy_Dasher_SUMMON = new PrefabGUID(1635780151); public static readonly PrefabGUID CHAR_Harpy_FeatherDuster = new PrefabGUID(-1407234470); public static readonly PrefabGUID CHAR_Harpy_Matriarch_VBlood = new PrefabGUID(685266977); public static readonly PrefabGUID CHAR_Harpy_Scratcher = new PrefabGUID(1462269123); public static readonly PrefabGUID CHAR_Harpy_Sorceress = new PrefabGUID(1224283123); public static readonly PrefabGUID CHAR_Harpy_Sorceress_NetherDemon = new PrefabGUID(1405099312); public static readonly PrefabGUID CHAR_IceElemental = new PrefabGUID(302393064); public static readonly PrefabGUID CHAR_Illusion_Mosquito = new PrefabGUID(-303396552); public static readonly PrefabGUID CHAR_IronGolem = new PrefabGUID(763796308); public static readonly PrefabGUID CHAR_IronGolem_NetherDemon = new PrefabGUID(-1794508086); public static readonly PrefabGUID CHAR_Legion_Assassin = new PrefabGUID(-1076780215); public static readonly PrefabGUID CHAR_Legion_Assassin_Servant = new PrefabGUID(1502148822); public static readonly PrefabGUID CHAR_Legion_BatSwarm = new PrefabGUID(593505050); public static readonly PrefabGUID CHAR_Legion_BatSwarm_Lesser = new PrefabGUID(-1055380229); public static readonly PrefabGUID CHAR_Legion_BloodProphet = new PrefabGUID(1912966420); public static readonly PrefabGUID CHAR_Legion_BloodProphet_Lesser = new PrefabGUID(-2080231735); public static readonly PrefabGUID CHAR_Legion_Dreadhorn = new PrefabGUID(981369753); public static readonly PrefabGUID CHAR_Legion_DreadHorn_Lesser = new PrefabGUID(-1140588645); public static readonly PrefabGUID CHAR_Legion_Gargoyle = new PrefabGUID(-65981941); public static readonly PrefabGUID CHAR_Legion_Gargoyle_StatueSpawn = new PrefabGUID(280858720); public static readonly PrefabGUID CHAR_Legion_Gargoyle_Styx = new PrefabGUID(-392776091); public static readonly PrefabGUID CHAR_Legion_Guardian_DraculaMinion = new PrefabGUID(-669027288); public static readonly PrefabGUID CHAR_Legion_Guardian_DraculaMinion_Lesser = new PrefabGUID(1144208724); public static readonly PrefabGUID CHAR_Legion_HighLord_GroundSword = new PrefabGUID(-1266036232); public static readonly PrefabGUID CHAR_Legion_NightMaiden = new PrefabGUID(-494298686); public static readonly PrefabGUID CHAR_Legion_NightMaiden_Lesser = new PrefabGUID(2111003460); public static readonly PrefabGUID CHAR_Legion_NightMaiden_Lesser_Servant = new PrefabGUID(-1099047820); public static readonly PrefabGUID CHAR_Legion_NightMaiden_Servant = new PrefabGUID(-340923989); public static readonly PrefabGUID CHAR_Legion_Nightmare = new PrefabGUID(-1009917656); public static readonly PrefabGUID CHAR_Legion_Nightmare_Lesser = new PrefabGUID(-981051151); public static readonly PrefabGUID CHAR_Legion_Shadowkin = new PrefabGUID(1980594081); public static readonly PrefabGUID CHAR_Legion_Shadowkin_Lesser = new PrefabGUID(-1200074387); public static readonly PrefabGUID CHAR_Legion_Vargulf = new PrefabGUID(-653348998); public static readonly PrefabGUID CHAR_Legion_Vargulf_Lesser = new PrefabGUID(2049379982); public static readonly PrefabGUID CHAR_Manticore_Airborne = new PrefabGUID(-1252779334); public static readonly PrefabGUID CHAR_Manticore_FarbaneSuprise = new PrefabGUID(-767167590); public static readonly PrefabGUID CHAR_Manticore_HomePos = new PrefabGUID(980068444); public static readonly PrefabGUID CHAR_Manticore_VBlood = new PrefabGUID(-393555055); public static readonly PrefabGUID CHAR_Mantrap_Corrupted = new PrefabGUID(1527640414); public static readonly PrefabGUID CHAR_Mantrap_Corrupted_Minion = new PrefabGUID(1906792990); public static readonly PrefabGUID CHAR_Mantrap_Corrupted_XL = new PrefabGUID(-1915060856); public static readonly PrefabGUID CHAR_Mantrap_Dull = new PrefabGUID(-878541676); public static readonly PrefabGUID CHAR_Mantrap_Nest = new PrefabGUID(2016963774); public static readonly PrefabGUID CHAR_Mantrap_Standard = new PrefabGUID(173817657); public static readonly PrefabGUID CHAR_Militia_BellRinger = new PrefabGUID(-1670130821); public static readonly PrefabGUID CHAR_Militia_BellRinger_Servant = new PrefabGUID(-1433235567); public static readonly PrefabGUID CHAR_Militia_BishopOfDunley_VBlood = new PrefabGUID(-680831417); public static readonly PrefabGUID CHAR_Militia_Bomber = new PrefabGUID(847893333); public static readonly PrefabGUID CHAR_Militia_Bomber_Servant = new PrefabGUID(232701971); public static readonly PrefabGUID CHAR_Militia_ConstrainingPole = new PrefabGUID(85290673); public static readonly PrefabGUID CHAR_Militia_Crossbow = new PrefabGUID(956965183); public static readonly PrefabGUID CHAR_Militia_Crossbow_Servant = new PrefabGUID(1481842114); public static readonly PrefabGUID CHAR_Militia_Crossbow_Summon = new PrefabGUID(2036785949); public static readonly PrefabGUID CHAR_Militia_Devoted = new PrefabGUID(1660801216); public static readonly PrefabGUID CHAR_Militia_Devoted_Servant = new PrefabGUID(-823557242); public static readonly PrefabGUID CHAR_Militia_EyeOfGod = new PrefabGUID(-1254618756); public static readonly PrefabGUID CHAR_Militia_Fabian_VBlood = new PrefabGUID(619948378); public static readonly PrefabGUID CHAR_Militia_FabiansSteed = new PrefabGUID(826666431); public static readonly PrefabGUID CHAR_Militia_FabiansSteed_Minion = new PrefabGUID(-1509286426); public static readonly PrefabGUID CHAR_Militia_Glassblower_VBlood = new PrefabGUID(910988233); public static readonly PrefabGUID CHAR_Militia_Guard = new PrefabGUID(1730498275); public static readonly PrefabGUID CHAR_Militia_Guard_Servant = new PrefabGUID(-1447279513); public static readonly PrefabGUID CHAR_Militia_Guard_Summon = new PrefabGUID(1050151632); public static readonly PrefabGUID CHAR_Militia_Guard_VBlood = new PrefabGUID(-29797003); public static readonly PrefabGUID CHAR_Militia_Guard_VBlood_GateBoss_Minor = new PrefabGUID(1494126678); public static readonly PrefabGUID CHAR_Militia_Heavy = new PrefabGUID(2005508157); public static readonly PrefabGUID CHAR_Militia_Heavy_Servant = new PrefabGUID(-1773935659); public static readonly PrefabGUID CHAR_Militia_Horseman = new PrefabGUID(-235172198); public static readonly PrefabGUID CHAR_Militia_Horseman_Mount = new PrefabGUID(-1914181232); public static readonly PrefabGUID CHAR_Militia_Horseman_Summon = new PrefabGUID(-1799461404); public static readonly PrefabGUID CHAR_Militia_Hound = new PrefabGUID(-249647316); public static readonly PrefabGUID CHAR_Militia_Hound_VBlood = new PrefabGUID(-1373413273); public static readonly PrefabGUID CHAR_Militia_HoundMaster_VBlood = new PrefabGUID(-784265984); public static readonly PrefabGUID CHAR_Militia_InkCrawler = new PrefabGUID(2090982759); public static readonly PrefabGUID CHAR_Militia_Leader_VBlood = new PrefabGUID(1688478381); public static readonly PrefabGUID CHAR_Militia_Leader_VBlood_GateBoss_Major = new PrefabGUID(1990744594); public static readonly PrefabGUID CHAR_Militia_Light = new PrefabGUID(-63435588); public static readonly PrefabGUID CHAR_Militia_Light_Servant = new PrefabGUID(169329980); public static readonly PrefabGUID CHAR_Militia_Light_Summon = new PrefabGUID(1772451421); public static readonly PrefabGUID CHAR_Militia_Longbowman = new PrefabGUID(203103783); public static readonly PrefabGUID CHAR_Militia_Longbowman_LightArrow_Vblood = new PrefabGUID(850622034); public static readonly PrefabGUID CHAR_Militia_Longbowman_Servant = new PrefabGUID(-242295780); public static readonly PrefabGUID CHAR_Militia_Longbowman_Summon = new PrefabGUID(1083647444); public static readonly PrefabGUID CHAR_Militia_Miner_Standard = new PrefabGUID(-1072754152); public static readonly PrefabGUID CHAR_Militia_Miner_Standard_Servant = new PrefabGUID(-1363137425); public static readonly PrefabGUID CHAR_Militia_Nun = new PrefabGUID(-700632469); public static readonly PrefabGUID CHAR_Militia_Nun_VBlood = new PrefabGUID(-99012450); public static readonly PrefabGUID CHAR_Militia_Rider = new PrefabGUID(-1719333743); public static readonly PrefabGUID CHAR_Militia_Rider_Mount = new PrefabGUID(-138006205); public static readonly PrefabGUID CHAR_Militia_Scribe_VBlood = new PrefabGUID(1945956671); public static readonly PrefabGUID CHAR_Militia_Torchbearer = new PrefabGUID(37713289); public static readonly PrefabGUID CHAR_Militia_Torchbearer_Servant = new PrefabGUID(986768339); public static readonly PrefabGUID CHAR_Militia_Undead_Infiltrator = new PrefabGUID(-614820237); public static readonly PrefabGUID CHAR_Monster_LightningPillar = new PrefabGUID(-1977168943); public static readonly PrefabGUID CHAR_Mount_Horse = new PrefabGUID(1149585723); public static readonly PrefabGUID CHAR_Mount_Horse_Vampire = new PrefabGUID(-1502865710); public static readonly PrefabGUID CHAR_Mutant_Bear_Standard = new PrefabGUID(1938756250); public static readonly PrefabGUID CHAR_Mutant_FleshGolem = new PrefabGUID(823276204); public static readonly PrefabGUID CHAR_Mutant_FleshGolem_PrisonVariant = new PrefabGUID(-1025552087); public static readonly PrefabGUID CHAR_Mutant_RatHorror = new PrefabGUID(-375581934); public static readonly PrefabGUID CHAR_Mutant_Spitter = new PrefabGUID(1092792896); public static readonly PrefabGUID CHAR_Mutant_Wolf = new PrefabGUID(572729167); public static readonly PrefabGUID CHAR_Noctem_Crow = new PrefabGUID(1239832946); public static readonly PrefabGUID CHAR_Ocean_Blowfish = new PrefabGUID(1786690263); public static readonly PrefabGUID CHAR_Ocean_Piranha = new PrefabGUID(470753758); public static readonly PrefabGUID CHAR_Paladin_DivineAngel = new PrefabGUID(-1737346940); public static readonly PrefabGUID CHAR_Paladin_FallenAngel = new PrefabGUID(-76116724); public static readonly PrefabGUID CHAR_Pixie = new PrefabGUID(1434914085); public static readonly PrefabGUID CHAR_Poloma_VBlood = new PrefabGUID(-484556888); public static readonly PrefabGUID CHAR_Poloma_VBlood_GateBoss_Minor = new PrefabGUID(-1381375644); public static readonly PrefabGUID CHAR_RatHorror_Mutant_MutantBlood = new PrefabGUID(218843465); public static readonly PrefabGUID CHAR_RockElemental = new PrefabGUID(20817667); public static readonly PrefabGUID CHAR_RockElemental_NetherDemon = new PrefabGUID(577495705); public static readonly PrefabGUID CHAR_Scarecrow = new PrefabGUID(-1750347680); public static readonly PrefabGUID CHAR_SeaSerpent = new PrefabGUID(-371347062); public static readonly PrefabGUID CHAR_SeaSerpent_Hard = new PrefabGUID(-694393029); public static readonly PrefabGUID CHAR_Spectral_Guardian = new PrefabGUID(304726480); public static readonly PrefabGUID CHAR_Spectral_SpellSlinger = new PrefabGUID(2065149172); public static readonly PrefabGUID CHAR_Spider_Baneling = new PrefabGUID(-764515001); public static readonly PrefabGUID CHAR_Spider_Baneling_Summon = new PrefabGUID(-1004061470); public static readonly PrefabGUID CHAR_Spider_Broodmother = new PrefabGUID(342127250); public static readonly PrefabGUID CHAR_Spider_Forest = new PrefabGUID(-581295882); public static readonly PrefabGUID CHAR_Spider_Forestling = new PrefabGUID(574276383); public static readonly PrefabGUID CHAR_Spider_Melee = new PrefabGUID(2136899683); public static readonly PrefabGUID CHAR_Spider_Melee_GateBoss_Summon = new PrefabGUID(-725251219); public static readonly PrefabGUID CHAR_Spider_Melee_Summon = new PrefabGUID(2119230788); public static readonly PrefabGUID CHAR_Spider_Queen_VBlood = new PrefabGUID(-548489519); public static readonly PrefabGUID CHAR_Spider_Queen_VBlood_GateBoss_Major = new PrefabGUID(-943858353); public static readonly PrefabGUID CHAR_Spider_Range = new PrefabGUID(2103131615); public static readonly PrefabGUID CHAR_Spider_Range_Summon = new PrefabGUID(1974733695); public static readonly PrefabGUID CHAR_Spider_Spiderling = new PrefabGUID(1078424589); public static readonly PrefabGUID CHAR_Spider_Spiderling_VerminNest = new PrefabGUID(1767714956); public static readonly PrefabGUID CHAR_Spiderling_Summon = new PrefabGUID(-18289884); public static readonly PrefabGUID CHAR_StoneGolem = new PrefabGUID(-779411607); public static readonly PrefabGUID CHAR_SUMMON_Wolf = new PrefabGUID(1825512527); public static readonly PrefabGUID CHAR_TargetDummy_Footman = new PrefabGUID(1479720323); public static readonly PrefabGUID CHAR_Trader_Dunley_Gems_T02 = new PrefabGUID(194933933); public static readonly PrefabGUID CHAR_Trader_Dunley_Herbs_T02 = new PrefabGUID(233171451); public static readonly PrefabGUID CHAR_Trader_Dunley_Knowledge_T02 = new PrefabGUID(281572043); public static readonly PrefabGUID CHAR_Trader_Dunley_RareGoods_T02 = new PrefabGUID(-1594911649); public static readonly PrefabGUID CHAR_Trader_Farbane_Gems_T01 = new PrefabGUID(-1168705805); public static readonly PrefabGUID CHAR_Trader_Farbane_Herbs_T01 = new PrefabGUID(-375258845); public static readonly PrefabGUID CHAR_Trader_Farbane_Knowledge_T01 = new PrefabGUID(-208499374); public static readonly PrefabGUID CHAR_Trader_Farbane_RareGoods_T01 = new PrefabGUID(-1810631919); public static readonly PrefabGUID CHAR_Trader_Gloomrot_T04 = new PrefabGUID(-1292194494); public static readonly PrefabGUID CHAR_Trader_Noctem_Major = new PrefabGUID(1631713257); public static readonly PrefabGUID CHAR_Trader_Noctem_Minor = new PrefabGUID(345283594); public static readonly PrefabGUID CHAR_Trader_Silverlight_Gems_T03 = new PrefabGUID(-1990875761); public static readonly PrefabGUID CHAR_Trader_Silverlight_Herbs_T03 = new PrefabGUID(1687896942); public static readonly PrefabGUID CHAR_Trader_Silverlight_Knowledge_T03 = new PrefabGUID(-915182578); public static readonly PrefabGUID CHAR_Trader_Silverlight_RareGoods_T03 = new PrefabGUID(739223277); public static readonly PrefabGUID CHAR_Treant = new PrefabGUID(-1089337069); public static readonly PrefabGUID CHAR_Treant_Corrupted = new PrefabGUID(1496810447); public static readonly PrefabGUID CHAR_Treant_NetherDemon = new PrefabGUID(-2037006512); public static readonly PrefabGUID CHAR_TreantMantrap_Corrupted_Minion_Left = new PrefabGUID(358623979); public static readonly PrefabGUID CHAR_TreantMantrap_Corrupted_Minion_Right = new PrefabGUID(2107764370); public static readonly PrefabGUID CHAR_Undead_ArenaChampion_VBlood = new PrefabGUID(-753453016); public static readonly PrefabGUID CHAR_Undead_ArmoredSkeletonCrossbow_Dunley = new PrefabGUID(-861407720); public static readonly PrefabGUID CHAR_Undead_ArmoredSkeletonCrossbow_Farbane = new PrefabGUID(-195077008); public static readonly PrefabGUID CHAR_Undead_Assassin = new PrefabGUID(-1365627158); public static readonly PrefabGUID CHAR_Undead_BishopOfDeath_VBlood = new PrefabGUID(577478542); public static readonly PrefabGUID CHAR_Undead_BishopOfDeath_VBlood_GateBoss_Minor = new PrefabGUID(-1822337177); public static readonly PrefabGUID CHAR_Undead_BishopOfShadows_VBlood = new PrefabGUID(939467639); public static readonly PrefabGUID CHAR_Undead_BishopOfShadows_VBlood_GateBoss_Major = new PrefabGUID(-1805216630); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Axe = new PrefabGUID(1971653132); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Base = new PrefabGUID(-1099451233); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Mace = new PrefabGUID(-55245645); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Slashers = new PrefabGUID(769910415); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Spear = new PrefabGUID(233127264); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Sword = new PrefabGUID(-2020619708); public static readonly PrefabGUID CHAR_Undead_CursedSmith_VBlood = new PrefabGUID(326378955); public static readonly PrefabGUID CHAR_Undead_FlyingSkull = new PrefabGUID(-236166535); public static readonly PrefabGUID CHAR_Undead_GhostAssassin = new PrefabGUID(849891426); public static readonly PrefabGUID CHAR_Undead_GhostBanshee = new PrefabGUID(-1146194149); public static readonly PrefabGUID CHAR_Undead_GhostBanshee_MorganaMinion = new PrefabGUID(153561250); public static readonly PrefabGUID CHAR_Undead_GhostBanshee_TombSummon = new PrefabGUID(414648299); public static readonly PrefabGUID CHAR_Undead_GhostGuardian = new PrefabGUID(-458883491); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Crossbow = new PrefabGUID(-85729652); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Crossbow_Summon = new PrefabGUID(348038236); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Light = new PrefabGUID(-1618703048); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Light_Summon = new PrefabGUID(1684831595); public static readonly PrefabGUID CHAR_Undead_Ghoul_Armored_Farmlands = new PrefabGUID(2105565286); public static readonly PrefabGUID CHAR_Undead_Ghoul_TombSummon = new PrefabGUID(937597711); public static readonly PrefabGUID CHAR_Undead_Guardian = new PrefabGUID(-1967480038); public static readonly PrefabGUID CHAR_Undead_Infiltrator_AfterShadow = new PrefabGUID(-558928562); public static readonly PrefabGUID CHAR_Undead_Infiltrator_VBlood = new PrefabGUID(613251918); public static readonly PrefabGUID CHAR_Undead_Infiltrator_VBlood_GateBoss_Major = new PrefabGUID(-982850914); public static readonly PrefabGUID CHAR_Undead_Leader_Vblood = new PrefabGUID(-1365931036); public static readonly PrefabGUID CHAR_Undead_Leader_Vblood_GateBoss_Minor = new PrefabGUID(-989493184); public static readonly PrefabGUID CHAR_Undead_Necromancer = new PrefabGUID(-572568236); public static readonly PrefabGUID CHAR_Undead_Necromancer_TombSummon = new PrefabGUID(2025660438); public static readonly PrefabGUID CHAR_Undead_Priest = new PrefabGUID(-1653554504); public static readonly PrefabGUID CHAR_Undead_Priest_VBlood = new PrefabGUID(153390636); public static readonly PrefabGUID CHAR_Undead_RottingGhoul = new PrefabGUID(-1722506709); public static readonly PrefabGUID CHAR_Undead_ShadowSoldier = new PrefabGUID(678628353); public static readonly PrefabGUID CHAR_Undead_ShadowSoldier_GateBoss = new PrefabGUID(-361904832); public static readonly PrefabGUID CHAR_Undead_SkeletonApprentice = new PrefabGUID(-1789347076); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_Base = new PrefabGUID(597386568); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_Farbane_OLD = new PrefabGUID(1250474035); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_GolemMinion = new PrefabGUID(1706319681); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_Graveyard = new PrefabGUID(1395549638); public static readonly PrefabGUID CHAR_Undead_SkeletonGolem = new PrefabGUID(-1380216646); public static readonly PrefabGUID CHAR_Undead_SkeletonGolem_NetherDemon = new PrefabGUID(-1115032717); public static readonly PrefabGUID CHAR_Undead_SkeletonMage = new PrefabGUID(-1287507270); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Armored_Dunley = new PrefabGUID(952695804); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Armored_Farbane = new PrefabGUID(-837329073); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Base = new PrefabGUID(-603934060); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_GolemMinion = new PrefabGUID(343833814); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Infiltrator = new PrefabGUID(-1642110920); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_TombSummon = new PrefabGUID(-259591573); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Unholy_Minion = new PrefabGUID(-1779239433); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Withered = new PrefabGUID(-1584807109); public static readonly PrefabGUID CHAR_Undead_UndyingGhoul = new PrefabGUID(1640311129); public static readonly PrefabGUID CHAR_Undead_ZealousCultist_Ghost = new PrefabGUID(128488545); public static readonly PrefabGUID CHAR_Undead_ZealousCultist_VBlood = new PrefabGUID(-1208888966); public static readonly PrefabGUID CHAR_Undead_ZealousCultist_VBlood_GateBoss_Major = new PrefabGUID(-1189707552); public static readonly PrefabGUID CHAR_Unholy_DeathKnight = new PrefabGUID(1857865401); public static readonly PrefabGUID CHAR_Unholy_FallenAngel = new PrefabGUID(-1928607398); public static readonly PrefabGUID CHAR_Unholy_SkeletonApprentice_Summon = new PrefabGUID(722671522); public static readonly PrefabGUID CHAR_Unholy_SkeletonWarrior_Summon = new PrefabGUID(1604500740); public static readonly PrefabGUID CHAR_Unholy_UnstableArachnid = new PrefabGUID(834333879); public static readonly PrefabGUID CHAR_Unholy_UnstableArachnid_Small = new PrefabGUID(-1106602776); public static readonly PrefabGUID CHAR_Vampire_BloodKnight_VBlood = new PrefabGUID(495971434); public static readonly PrefabGUID CHAR_Vampire_CrimsonIronMaiden = new PrefabGUID(-1884553416); public static readonly PrefabGUID CHAR_Vampire_Cultist_BloodCrystal = new PrefabGUID(-1671572471); public static readonly PrefabGUID CHAR_Vampire_Cultist_BloodCrystal_Female = new PrefabGUID(-1208066429); public static readonly PrefabGUID CHAR_Vampire_Cultist_Channeling = new PrefabGUID(407967118); public static readonly PrefabGUID CHAR_Vampire_Cultist_Channeling_Female = new PrefabGUID(57255106); public static readonly PrefabGUID CHAR_Vampire_Cultist_Female_Servant = new PrefabGUID(1703325932); public static readonly PrefabGUID CHAR_Vampire_Cultist_Male_Servant = new PrefabGUID(1193263017); public static readonly PrefabGUID CHAR_Vampire_Cultist_Patrolling = new PrefabGUID(2018586909); public static readonly PrefabGUID CHAR_Vampire_Cultist_Patrolling_Female = new PrefabGUID(-1610391169); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingArmsOut = new PrefabGUID(-1438710930); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingArmsOut_Female = new PrefabGUID(-1074322242); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingGround = new PrefabGUID(-1832935107); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingGround_Female = new PrefabGUID(-2086433846); public static readonly PrefabGUID CHAR_Vampire_Cultist_Whittling = new PrefabGUID(-19416663); public static readonly PrefabGUID CHAR_Vampire_Cultist_Whittling_Female = new PrefabGUID(-1925881340); public static readonly PrefabGUID CHAR_Vampire_Dracula_VBlood = new PrefabGUID(-327335305); public static readonly PrefabGUID CHAR_Vampire_Dracula_VeilOfBatsIllusion = new PrefabGUID(1809382006); public static readonly PrefabGUID CHAR_Vampire_Ghost = new PrefabGUID(-1893878700); public static readonly PrefabGUID CHAR_Vampire_HighLord_VBlood = new PrefabGUID(-496360395); public static readonly PrefabGUID CHAR_Vampire_IceRanger_VBlood = new PrefabGUID(795262842); public static readonly PrefabGUID CHAR_Vampire_Withered = new PrefabGUID(-1117581429); public static readonly PrefabGUID CHAR_VampireMale = new PrefabGUID(38526109); public static readonly PrefabGUID CHAR_Vermin_DireRat_VBlood = new PrefabGUID(-2039908510); public static readonly PrefabGUID CHAR_Vermin_GiantRat = new PrefabGUID(-1722278689); public static readonly PrefabGUID CHAR_Vermin_WickedRat_Rare = new PrefabGUID(-19165577); public static readonly PrefabGUID CHAR_VHunter_CastleMan = new PrefabGUID(336560131); public static readonly PrefabGUID CHAR_VHunter_Jade_VBlood = new PrefabGUID(-1968372384); public static readonly PrefabGUID CHAR_VHunter_Jade_VBlood_GateBoss_Major = new PrefabGUID(282791819); public static readonly PrefabGUID CHAR_VHunter_Leader_GateBoss_Minor = new PrefabGUID(2009018555); public static readonly PrefabGUID CHAR_VHunter_Leader_VBlood = new PrefabGUID(-1449631170); public static readonly PrefabGUID CHAR_Villager_CursedWanderer_VBlood = new PrefabGUID(109969450); public static readonly PrefabGUID CHAR_Villager_CursedWanderer_VBlood_GateBoss_Major = new PrefabGUID(-1160778038); public static readonly PrefabGUID CHAR_Villager_Tailor_VBlood = new PrefabGUID(-1942352521); public static readonly PrefabGUID CHAR_Wendigo_GateBoss_Major = new PrefabGUID(468179469); public static readonly PrefabGUID CHAR_Wendigo_VBlood = new PrefabGUID(24378719); public static readonly PrefabGUID CHAR_WerewolfChieftain_Human = new PrefabGUID(-1505705712); public static readonly PrefabGUID CHAR_WerewolfChieftain_ShadowClone = new PrefabGUID(-1699898875); public static readonly PrefabGUID CHAR_WerewolfChieftain_VBlood_GateBoss_Major = new PrefabGUID(2079933370); public static readonly PrefabGUID CHAR_Winter_Bear_Standard = new PrefabGUID(2041915372); public static readonly PrefabGUID CHAR_Winter_Moose = new PrefabGUID(-779632831); public static readonly PrefabGUID CHAR_Winter_Wolf = new PrefabGUID(134039094); public static readonly PrefabGUID CHAR_Winter_Wolf_Dracula_Minion = new PrefabGUID(2145471156); public static readonly PrefabGUID CHAR_Winter_Wolf_WerewolfChief_Minion = new PrefabGUID(-223185284); public static readonly PrefabGUID CHAR_Winter_Yeti_VBlood = new PrefabGUID(-1347412392); public static readonly PrefabGUID CHAR_Winter_Yeti_VBlood_GateBoss_Major = new PrefabGUID(666177656); public static readonly PrefabGUID CharacterCustomizationSettings = new PrefabGUID(1557961364); public static readonly PrefabGUID CharacterHUDCollection = new PrefabGUID(183358570); public static readonly PrefabGUID ChurchOfLight_Cardinal_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1644049435); public static readonly PrefabGUID ChurchOfLight_Overseer_Emote_OnAggro_Buff = new PrefabGUID(-1469343755); public static readonly PrefabGUID ChurchOfLight_Overseer_Iciclel_Dynamics = new PrefabGUID(1447670952); public static readonly PrefabGUID ChurchOfTheDamned_Altar_Shattered01 = new PrefabGUID(572851995); public static readonly PrefabGUID ChurchOfTheDamned_Brazier_Small_Shattered01 = new PrefabGUID(-1471308201); public static readonly PrefabGUID ChurchOfTheDamned_Brazier_Small_Shattered02 = new PrefabGUID(110372705); public static readonly PrefabGUID ChurchOfTheDamned_DecoPillar01_Shattered01 = new PrefabGUID(-80624942); public static readonly PrefabGUID ChurchOfTheDamned_DecoPillar02_Shattered01 = new PrefabGUID(831920069); public static readonly PrefabGUID ClanInviteRequest = new PrefabGUID(192290893); public static readonly PrefabGUID ClanSystemSettings = new PrefabGUID(-594020774); public static readonly PrefabGUID ClanTeam = new PrefabGUID(-501996644); public static readonly PrefabGUID Classical01WallpaperBuildMenuGroup = new PrefabGUID(512781553); public static readonly PrefabGUID Classical02WallpaperBuildMenuGroup = new PrefabGUID(-525296914); public static readonly PrefabGUID ClearWindowsBuildMenuGroup = new PrefabGUID(51080478); public static readonly PrefabGUID ClocksBuildMenuGroup = new PrefabGUID(-1059827237); public static readonly PrefabGUID CO_ArchMage = new PrefabGUID(-726763920); public static readonly PrefabGUID CO_ArchMage_FlameSphere = new PrefabGUID(-1242547076); public static readonly PrefabGUID CO_ArchMage_Summon = new PrefabGUID(955493088); public static readonly PrefabGUID CO_Bandit_Bomber = new PrefabGUID(-1108787568); public static readonly PrefabGUID CO_Bandit_Bomber_VBlood = new PrefabGUID(-1927829198); public static readonly PrefabGUID CO_Bandit_Chaosarrow_GateBoss = new PrefabGUID(127548401); public static readonly PrefabGUID CO_Bandit_Chaosarrow_VBlood = new PrefabGUID(-120985325); public static readonly PrefabGUID CO_Bandit_Deadeye = new PrefabGUID(2056907439); public static readonly PrefabGUID CO_Bandit_Fisherman_VBlood = new PrefabGUID(588595323); public static readonly PrefabGUID CO_Bandit_Foreman_VBlood = new PrefabGUID(812159192); public static readonly PrefabGUID CO_Bandit_Foreman_VBlood_GateBoss = new PrefabGUID(-1202075241); public static readonly PrefabGUID CO_Bandit_FrostArrow_GateBoss = new PrefabGUID(-544449795); public static readonly PrefabGUID CO_Bandit_FrostArrow_Vblood = new PrefabGUID(1875845509); public static readonly PrefabGUID CO_Bandit_Hunter = new PrefabGUID(1464584263); public static readonly PrefabGUID CO_Bandit_Leader = new PrefabGUID(1412702580); public static readonly PrefabGUID CO_Bandit_Mugger = new PrefabGUID(97380603); public static readonly PrefabGUID CO_Bandit_Rascal = new PrefabGUID(601722628); public static readonly PrefabGUID CO_Bandit_Scout = new PrefabGUID(1344899815); public static readonly PrefabGUID CO_Bandit_Stalker = new PrefabGUID(-1389657593); public static readonly PrefabGUID CO_Bandit_Stalker_VBlood = new PrefabGUID(-1499696370); public static readonly PrefabGUID CO_Bandit_StoneBreaker_VBlood = new PrefabGUID(-520625151); public static readonly PrefabGUID CO_Bandit_StoneBreaker_VBlood_GateBoss = new PrefabGUID(1018018754); public static readonly PrefabGUID CO_Bandit_Thief = new PrefabGUID(-2014475190); public static readonly PrefabGUID CO_Bandit_Thug = new PrefabGUID(319525066); public static readonly PrefabGUID CO_Bandit_Tourok_VBlood = new PrefabGUID(1825358542); public static readonly PrefabGUID CO_Bandit_Tourok_VBlood_Shadow = new PrefabGUID(-1431627549); public static readonly PrefabGUID CO_Bandit_Trapper = new PrefabGUID(171535364); public static readonly PrefabGUID CO_Bandit_Worker_Gatherer = new PrefabGUID(690141917); public static readonly PrefabGUID CO_Bandit_Worker_Miner = new PrefabGUID(-821621347); public static readonly PrefabGUID CO_Bandit_Worker_Woodcutter = new PrefabGUID(-642124295); public static readonly PrefabGUID CO_BatVampire = new PrefabGUID(-1393804232); public static readonly PrefabGUID CO_Bear = new PrefabGUID(-1997519238); public static readonly PrefabGUID CO_Bear_Spirit = new PrefabGUID(-1688283116); public static readonly PrefabGUID CO_Blackfang_Alchemist = new PrefabGUID(-1247120172); public static readonly PrefabGUID CO_Blackfang_CarverBoss_VBlood = new PrefabGUID(-2054066259); public static readonly PrefabGUID CO_Blackfang_DartFlinger = new PrefabGUID(-824942713); public static readonly PrefabGUID CO_Blackfang_Livith_VBlood = new PrefabGUID(-8518182); public static readonly PrefabGUID CO_Blackfang_Lucie_VBlood = new PrefabGUID(90523416); public static readonly PrefabGUID CO_Blackfang_Lurker = new PrefabGUID(2040467961); public static readonly PrefabGUID CO_Blackfang_Morgana = new PrefabGUID(1884283291); public static readonly PrefabGUID CO_Blackfang_MorganaHumanoid = new PrefabGUID(-471905299); public static readonly PrefabGUID CO_Blackfang_MorganasTail = new PrefabGUID(-741121296); public static readonly PrefabGUID CO_Blackfang_Peon = new PrefabGUID(-637181845); public static readonly PrefabGUID CO_Blackfang_Peon_Miner = new PrefabGUID(-442265123); public static readonly PrefabGUID CO_Blackfang_PeonCarryingBarrel = new PrefabGUID(316993000); public static readonly PrefabGUID CO_Blackfang_PeonLogCarryer = new PrefabGUID(1059023076); public static readonly PrefabGUID CO_Blackfang_Sentinel = new PrefabGUID(-592114234); public static readonly PrefabGUID CO_Blackfang_Striker = new PrefabGUID(-522998802); public static readonly PrefabGUID CO_Blackfang_Valyr = new PrefabGUID(-1692475297); public static readonly PrefabGUID CO_Blackfang_ValyrCauldron = new PrefabGUID(-542600961); public static readonly PrefabGUID CO_Blackfang_Venomblade = new PrefabGUID(-1878237917); public static readonly PrefabGUID CO_Blackfang_Viper = new PrefabGUID(2138490337); public static readonly PrefabGUID CO_Blackfang_WoodCarver = new PrefabGUID(-1286702157); public static readonly PrefabGUID CO_BloodBuff_Corrupted_Angel = new PrefabGUID(1933154276); public static readonly PrefabGUID CO_BloodBuff_Corrupted_Harpy = new PrefabGUID(1826810292); public static readonly PrefabGUID CO_ChurchOfLight_Archer = new PrefabGUID(362734593); public static readonly PrefabGUID CO_ChurchOfLight_Cardinal_VBlood = new PrefabGUID(-1463951847); public static readonly PrefabGUID CO_ChurchOfLight_CardinalAide = new PrefabGUID(-866271480); public static readonly PrefabGUID CO_ChurchOfLight_Cleric = new PrefabGUID(-228777921); public static readonly PrefabGUID CO_ChurchOfLight_EnchantedCross = new PrefabGUID(-26174327); public static readonly PrefabGUID CO_ChurchOfLight_Footman = new PrefabGUID(142107315); public static readonly PrefabGUID CO_ChurchOfLight_Knight_2H = new PrefabGUID(-851549153); public static readonly PrefabGUID CO_ChurchOfLight_Lightweaver = new PrefabGUID(-2147038016); public static readonly PrefabGUID CO_ChurchOfLight_Overseer = new PrefabGUID(-2059198289); public static readonly PrefabGUID CO_ChurchOfLight_Paladin = new PrefabGUID(-1709264932); public static readonly PrefabGUID CO_ChurchOfLight_Paladin_VBlood = new PrefabGUID(1475114753); public static readonly PrefabGUID CO_ChurchOfLight_Priest_Standard = new PrefabGUID(-1504358745); public static readonly PrefabGUID CO_ChurchOfLight_SlaveMaster_Enforcer = new PrefabGUID(-1675010838); public static readonly PrefabGUID CO_ChurchOfLight_SlaveMaster_Sentry = new PrefabGUID(1352035587); public static readonly PrefabGUID CO_ChurchOfLight_SlaveRuffian = new PrefabGUID(-2005177329); public static readonly PrefabGUID CO_ChurchOfLight_SmiteOrb = new PrefabGUID(-302131499); public static readonly PrefabGUID CO_ChurchOfLight_Sommelier = new PrefabGUID(-1421383092); public static readonly PrefabGUID CO_ChurchOfLight_Sommelier_BarrelMinion = new PrefabGUID(1597406610); public static readonly PrefabGUID CO_CopperGolem = new PrefabGUID(-972365646); public static readonly PrefabGUID CO_Corrupted_Bear = new PrefabGUID(904547130); public static readonly PrefabGUID CO_Corrupted_Crow = new PrefabGUID(-1929345806); public static readonly PrefabGUID CO_Corrupted_Wolf = new PrefabGUID(-1059253804); public static readonly PrefabGUID CO_Crow_Manticore = new PrefabGUID(1026990605); public static readonly PrefabGUID CO_Cultist_Melee = new PrefabGUID(-1605144188); public static readonly PrefabGUID CO_Cultist_Ranged = new PrefabGUID(835810587); public static readonly PrefabGUID CO_Cursed_Bear = new PrefabGUID(-399451530); public static readonly PrefabGUID CO_Cursed_MonsterToad = new PrefabGUID(-1325001695); public static readonly PrefabGUID CO_Cursed_MonsterToad_VBlood = new PrefabGUID(1569981848); public static readonly PrefabGUID CO_Cursed_Mosquito = new PrefabGUID(471295142); public static readonly PrefabGUID CO_Cursed_MountainBeast = new PrefabGUID(1851596382); public static readonly PrefabGUID CO_Cursed_MountainBeast_SpiritDouble = new PrefabGUID(-190890945); public static readonly PrefabGUID CO_Cursed_ToadSpitter = new PrefabGUID(-1573194738); public static readonly PrefabGUID CO_Cursed_Witch = new PrefabGUID(-1966644449); public static readonly PrefabGUID CO_Cursed_Witch_VBlood = new PrefabGUID(838363153); public static readonly PrefabGUID CO_Cursed_Wolf = new PrefabGUID(-672754707); public static readonly PrefabGUID CO_CursedWanderer = new PrefabGUID(21417799); public static readonly PrefabGUID CO_Dracula_BloodSoul = new PrefabGUID(665364376); public static readonly PrefabGUID CO_Dracula_BloodSoul_Heart = new PrefabGUID(-276242059); public static readonly PrefabGUID CO_Dracula_ShadowBatSwarm = new PrefabGUID(-1216038746); public static readonly PrefabGUID CO_Dracula_SpellStone_LargeBlood = new PrefabGUID(-698740959); public static readonly PrefabGUID CO_EmeryElemental = new PrefabGUID(-1685893679); public static readonly PrefabGUID CO_EmeryGolem = new PrefabGUID(1737701225); public static readonly PrefabGUID CO_Forest_AngryMoose = new PrefabGUID(-2082770963); public static readonly PrefabGUID CO_Forest_Bear_Dire_Vblood = new PrefabGUID(1437704949); public static readonly PrefabGUID CO_Forest_Moose = new PrefabGUID(949923642); public static readonly PrefabGUID CO_Geomancer_Golem = new PrefabGUID(-643796591); public static readonly PrefabGUID CO_Geomancer_Golem_Minion = new PrefabGUID(857765377); public static readonly PrefabGUID CO_Geomancer_Human = new PrefabGUID(-1977720510); public static readonly PrefabGUID CO_Gloomrot_AceIncinerator = new PrefabGUID(-1333543242); public static readonly PrefabGUID CO_Gloomrot_Batoon = new PrefabGUID(-2001897958); public static readonly PrefabGUID CO_Gloomrot_Iva = new PrefabGUID(793352943); public static readonly PrefabGUID CO_Gloomrot_Monster_VBlood = new PrefabGUID(128530923); public static readonly PrefabGUID CO_Gloomrot_Purifier_VBlood = new PrefabGUID(1800604363); public static readonly PrefabGUID CO_Gloomrot_Pyro = new PrefabGUID(1387745375); public static readonly PrefabGUID CO_Gloomrot_Railgunner = new PrefabGUID(1300154463); public static readonly PrefabGUID CO_Gloomrot_RailgunSergeant = new PrefabGUID(-727240888); public static readonly PrefabGUID CO_Gloomrot_SentryOfficer = new PrefabGUID(-1603956935); public static readonly PrefabGUID CO_Gloomrot_SentryTurret = new PrefabGUID(-1917424726); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_Driller = new PrefabGUID(153123953); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_Gattler = new PrefabGUID(1691215031); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_LightningRod = new PrefabGUID(290653629); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_Zapper = new PrefabGUID(2035229253); public static readonly PrefabGUID CO_Gloomrot_Tazer = new PrefabGUID(2126939200); public static readonly PrefabGUID CO_Gloomrot_Technician = new PrefabGUID(1492511376); public static readonly PrefabGUID CO_Gloomrot_TheProfessor = new PrefabGUID(-1022070092); public static readonly PrefabGUID CO_Gloomrot_TractorBeamer = new PrefabGUID(872490508); public static readonly PrefabGUID CO_Gloomrot_Voltage = new PrefabGUID(198641253); public static readonly PrefabGUID CO_GoldGolem = new PrefabGUID(1171440258); public static readonly PrefabGUID CO_Harpy_Dasher = new PrefabGUID(-1288765948); public static readonly PrefabGUID CO_Harpy_FeatherDuster = new PrefabGUID(-1450875093); public static readonly PrefabGUID CO_Harpy_Matriarch_VBlood = new PrefabGUID(-1464479007); public static readonly PrefabGUID CO_Harpy_Scratcher = new PrefabGUID(-2014972241); public static readonly PrefabGUID CO_Harpy_Sorceress = new PrefabGUID(741489686); public static readonly PrefabGUID CO_HostileVillager_Melee = new PrefabGUID(1831190826); public static readonly PrefabGUID CO_HostileVillager_Thrower = new PrefabGUID(1204578387); public static readonly PrefabGUID CO_Illusion_Mosquito = new PrefabGUID(-1372177062); public static readonly PrefabGUID CO_IronGolem = new PrefabGUID(-992057455); public static readonly PrefabGUID CO_KnightShield = new PrefabGUID(-428162790); public static readonly PrefabGUID CO_Legion_Assassin = new PrefabGUID(1578531479); public static readonly PrefabGUID CO_Legion_BatSwarm = new PrefabGUID(1667362368); public static readonly PrefabGUID CO_Legion_BloodProphet = new PrefabGUID(673522035); public static readonly PrefabGUID CO_Legion_Dreadhorn = new PrefabGUID(-813769179); public static readonly PrefabGUID CO_Legion_Gargoyle = new PrefabGUID(1967095783); public static readonly PrefabGUID CO_Legion_Gargoyle_StyxVariant = new PrefabGUID(1275875964); public static readonly PrefabGUID CO_Legion_Gargoyle_TailorVariant = new PrefabGUID(-1831546379); public static readonly PrefabGUID CO_Legion_HighLord_GroundSword = new PrefabGUID(-179618267); public static readonly PrefabGUID CO_Legion_NightMaiden = new PrefabGUID(-1602378808); public static readonly PrefabGUID CO_Legion_NightMaiden_Lesser = new PrefabGUID(-467026945); public static readonly PrefabGUID CO_Legion_Shadowkin = new PrefabGUID(-1163937295); public static readonly PrefabGUID CO_Legion_Vargulf = new PrefabGUID(1115204634); public static readonly PrefabGUID CO_Legion_Vargulf_Lesser = new PrefabGUID(-515279445); public static readonly PrefabGUID CO_Legon_Nightmare = new PrefabGUID(398043275); public static readonly PrefabGUID CO_Manticore_Airborne = new PrefabGUID(-853428837); public static readonly PrefabGUID CO_Manticore_VBlood = new PrefabGUID(-257519858); public static readonly PrefabGUID CO_Mantrap_Corrupted = new PrefabGUID(-1246795985); public static readonly PrefabGUID CO_Mantrap_Corrupted_Minion = new PrefabGUID(-1368394802); public static readonly PrefabGUID CO_Mantrap_Dull = new PrefabGUID(-1621696220); public static readonly PrefabGUID CO_Mantrap_Standard = new PrefabGUID(-1734429955); public static readonly PrefabGUID CO_Militia_BellRinger = new PrefabGUID(1283537138); public static readonly PrefabGUID CO_Militia_BellRinger_Servant = new PrefabGUID(-911819069); public static readonly PrefabGUID CO_Militia_BishopOfDunley = new PrefabGUID(1951348277); public static readonly PrefabGUID CO_Militia_Bomber = new PrefabGUID(-1495601849); public static readonly PrefabGUID CO_Militia_ConstrainingPole = new PrefabGUID(1541249097); public static readonly PrefabGUID CO_Militia_Crossbow = new PrefabGUID(1280569660); public static readonly PrefabGUID CO_Militia_Devoted = new PrefabGUID(-1231336774); public static readonly PrefabGUID CO_Militia_EyeOfGod = new PrefabGUID(978552362); public static readonly PrefabGUID CO_Militia_Fabian = new PrefabGUID(910768551); public static readonly PrefabGUID CO_Militia_FabiansSteed = new PrefabGUID(-1351736781); public static readonly PrefabGUID CO_Militia_FabiansSteed_Minion = new PrefabGUID(332941455); public static readonly PrefabGUID CO_Militia_Glassblower = new PrefabGUID(230095818); public static readonly PrefabGUID CO_Militia_Guard = new PrefabGUID(-997126525); public static readonly PrefabGUID CO_Militia_Guard_VBlood = new PrefabGUID(-257184246); public static readonly PrefabGUID CO_Militia_Heavy = new PrefabGUID(1959669035); public static readonly PrefabGUID CO_Militia_Horseman = new PrefabGUID(783818504); public static readonly PrefabGUID CO_Militia_Horseman_Mount = new PrefabGUID(-1822127791); public static readonly PrefabGUID CO_Militia_Hound = new PrefabGUID(-1928340469); public static readonly PrefabGUID CO_Militia_Hound_VBlood = new PrefabGUID(-351939627); public static readonly PrefabGUID CO_Militia_HoundMaster_VBlood = new PrefabGUID(825142113); public static readonly PrefabGUID CO_Militia_InkCrawler = new PrefabGUID(-865710244); public static readonly PrefabGUID CO_Militia_Leader = new PrefabGUID(2063835629); public static readonly PrefabGUID CO_Militia_Leader_GateBoss = new PrefabGUID(1583235120); public static readonly PrefabGUID CO_Militia_Light = new PrefabGUID(-1604030641); public static readonly PrefabGUID CO_Militia_Longbowman = new PrefabGUID(699090488); public static readonly PrefabGUID CO_Militia_Longbowman_LightArrow = new PrefabGUID(269502057); public static readonly PrefabGUID CO_Militia_Nun_VBlood = new PrefabGUID(330153719); public static readonly PrefabGUID CO_Militia_Rider = new PrefabGUID(1303404732); public static readonly PrefabGUID CO_Militia_Scribe = new PrefabGUID(-366014482); public static readonly PrefabGUID CO_Militia_Standard = new PrefabGUID(1890876851); public static readonly PrefabGUID CO_Militia_Torchbearer = new PrefabGUID(-1971404132); public static readonly PrefabGUID CO_Militia_Undead_Infiltrator = new PrefabGUID(192644255); public static readonly PrefabGUID CO_Militia_Worker_Miner = new PrefabGUID(-804962426); public static readonly PrefabGUID CO_Monster_LightningPillar = new PrefabGUID(-916128139); public static readonly PrefabGUID CO_Mutant_Bear = new PrefabGUID(-777812975); public static readonly PrefabGUID CO_Mutant_FleshGolem = new PrefabGUID(1472737467); public static readonly PrefabGUID CO_Mutant_Rat = new PrefabGUID(217223051); public static readonly PrefabGUID CO_Mutant_Rat_MutantBlood = new PrefabGUID(-457693509); public static readonly PrefabGUID CO_Mutant_Spitter = new PrefabGUID(-533665239); public static readonly PrefabGUID CO_Mutant_Wolf = new PrefabGUID(-64367190); public static readonly PrefabGUID CO_Nightlurker = new PrefabGUID(-1157952193); public static readonly PrefabGUID CO_Nun = new PrefabGUID(1521472556); public static readonly PrefabGUID CO_Ocean_Blowfish = new PrefabGUID(1270888987); public static readonly PrefabGUID CO_Ocean_Piranha = new PrefabGUID(1026406957); public static readonly PrefabGUID CO_Paladin_DivineAngel = new PrefabGUID(-227563644); public static readonly PrefabGUID CO_Paladin_FallenAngel = new PrefabGUID(1214705499); public static readonly PrefabGUID CO_Pixie = new PrefabGUID(-733407084); public static readonly PrefabGUID CO_Poloma = new PrefabGUID(2047639378); public static readonly PrefabGUID CO_Poloma_GateBoss = new PrefabGUID(-1383136609); public static readonly PrefabGUID CO_Rifleman = new PrefabGUID(805355179); public static readonly PrefabGUID CO_RockElemental = new PrefabGUID(-1999640100); public static readonly PrefabGUID CO_Scarecrow = new PrefabGUID(-442719468); public static readonly PrefabGUID CO_SeaSerpent = new PrefabGUID(204893615); public static readonly PrefabGUID CO_SeaSerpent_Hard = new PrefabGUID(-1007037745); public static readonly PrefabGUID CO_Shared_Crow = new PrefabGUID(2096743453); public static readonly PrefabGUID CO_Shared_Wolf = new PrefabGUID(-1528347301); public static readonly PrefabGUID CO_Spectral_Guardian = new PrefabGUID(335055806); public static readonly PrefabGUID CO_Spectral_SpellSlinger = new PrefabGUID(1869651851); public static readonly PrefabGUID CO_Spider_Baneling = new PrefabGUID(1989202755); public static readonly PrefabGUID CO_Spider_Broodmother = new PrefabGUID(-522528604); public static readonly PrefabGUID CO_Spider_Forest = new PrefabGUID(1270852761); public static readonly PrefabGUID CO_Spider_Forestling = new PrefabGUID(41241277); public static readonly PrefabGUID CO_Spider_Melee = new PrefabGUID(887607259); public static readonly PrefabGUID CO_Spider_Queen_VBlood = new PrefabGUID(-1915204332); public static readonly PrefabGUID CO_Spider_Queen_VBlood_GateBoss = new PrefabGUID(1527889730); public static readonly PrefabGUID CO_Spider_Range = new PrefabGUID(199571297); public static readonly PrefabGUID CO_Spider_Spiderling = new PrefabGUID(2140239000); public static readonly PrefabGUID CO_StoneGolem = new PrefabGUID(816166304); public static readonly PrefabGUID CO_SUMMON_Wolf = new PrefabGUID(279339239); public static readonly PrefabGUID CO_Tailor = new PrefabGUID(482413851); public static readonly PrefabGUID CO_Trader_Farbane_Stalker_T01 = new PrefabGUID(1202124672); public static readonly PrefabGUID CO_Trader_Farbane_Theif_T01 = new PrefabGUID(-219696922); public static readonly PrefabGUID CO_Trader_Noctem_Major = new PrefabGUID(1982843701); public static readonly PrefabGUID CO_Trader_Noctem_Minor = new PrefabGUID(-1832246484); public static readonly PrefabGUID CO_Treant = new PrefabGUID(395898273); public static readonly PrefabGUID CO_Treant_Corrupted = new PrefabGUID(1613164129); public static readonly PrefabGUID CO_TreantMantrap_Corrupted_Minion = new PrefabGUID(422251091); public static readonly PrefabGUID CO_Undead_ArenaChampion = new PrefabGUID(1118808720); public static readonly PrefabGUID CO_Undead_ArmoredSkeletonCrossbow_Dunley = new PrefabGUID(1100502750); public static readonly PrefabGUID CO_Undead_ArmoredSkeletonCrossbow_Farbane = new PrefabGUID(687501989); public static readonly PrefabGUID CO_Undead_Assassin = new PrefabGUID(1823080523); public static readonly PrefabGUID CO_Undead_BishopOfDeath = new PrefabGUID(662505323); public static readonly PrefabGUID CO_Undead_BishopOfDeath_GateBoss = new PrefabGUID(106347664); public static readonly PrefabGUID CO_Undead_BishopOfShadows = new PrefabGUID(-377981910); public static readonly PrefabGUID CO_Undead_BishopOfShadows_GateBoss = new PrefabGUID(-1217996155); public static readonly PrefabGUID CO_Undead_CursedSmith = new PrefabGUID(268974871); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Axe = new PrefabGUID(-1274795013); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Base = new PrefabGUID(1373773529); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Mace = new PrefabGUID(-2041350912); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Slashers = new PrefabGUID(-1741518409); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Spear = new PrefabGUID(2063777079); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Sword = new PrefabGUID(-968957939); public static readonly PrefabGUID CO_Undead_FlyingSkull = new PrefabGUID(-233366319); public static readonly PrefabGUID CO_Undead_GhostAssassin = new PrefabGUID(1332868659); public static readonly PrefabGUID CO_Undead_GhostBanshee = new PrefabGUID(557935215); public static readonly PrefabGUID CO_Undead_GhostBanshee_MorganaMinion = new PrefabGUID(-709064213); public static readonly PrefabGUID CO_Undead_GhostGuardian = new PrefabGUID(-1574119893); public static readonly PrefabGUID CO_Undead_GhostMilitia_Crossbow = new PrefabGUID(1545459275); public static readonly PrefabGUID CO_Undead_GhostMilitia_Light = new PrefabGUID(-1044101479); public static readonly PrefabGUID CO_Undead_GhostMilitia_Standard = new PrefabGUID(510452386); public static readonly PrefabGUID CO_Undead_Ghoul = new PrefabGUID(927263869); public static readonly PrefabGUID CO_Undead_Guardian = new PrefabGUID(2057596959); public static readonly PrefabGUID CO_Undead_Guardian_DraculaMinion = new PrefabGUID(-1542934598); public static readonly PrefabGUID CO_Undead_Infiltrator_AfterShadow = new PrefabGUID(111398615); public static readonly PrefabGUID CO_Undead_Infiltrator_VBlood = new PrefabGUID(-311060437); public static readonly PrefabGUID CO_Undead_Leader = new PrefabGUID(-873917285); public static readonly PrefabGUID CO_Undead_Necromancer = new PrefabGUID(-1630404104); public static readonly PrefabGUID CO_Undead_Priest = new PrefabGUID(-881694794); public static readonly PrefabGUID CO_Undead_Priest_Elite = new PrefabGUID(579544718); public static readonly PrefabGUID CO_Undead_ShadowSoldier = new PrefabGUID(-1930656222); public static readonly PrefabGUID CO_Undead_ShadowSoldier_GateBoss = new PrefabGUID(1160695966); public static readonly PrefabGUID CO_Undead_SkeletonApprentice = new PrefabGUID(1513638469); public static readonly PrefabGUID CO_Undead_SkeletonCrossbow_Farbane = new PrefabGUID(-454354842); public static readonly PrefabGUID CO_Undead_SkeletonCrossbow_Graveyard = new PrefabGUID(313535532); public static readonly PrefabGUID CO_Undead_SkeletonGolem = new PrefabGUID(-1487249374); public static readonly PrefabGUID CO_Undead_SkeletonMage = new PrefabGUID(653742735); public static readonly PrefabGUID CO_Undead_SkeletonSoldier_Armored_Dunley = new PrefabGUID(1727006333); public static readonly PrefabGUID CO_Undead_SkeletonSoldier_Armored_Farbane = new PrefabGUID(183365368); public static readonly PrefabGUID CO_Undead_SkeletonSoldier_Withered = new PrefabGUID(-974864084); public static readonly PrefabGUID CO_Undead_ZealousCultist = new PrefabGUID(2039844809); public static readonly PrefabGUID CO_Undead_ZealousCultist_Ghost = new PrefabGUID(-1002310319); public static readonly PrefabGUID CO_Unholy_DeathKnight = new PrefabGUID(144216116); public static readonly PrefabGUID CO_Unholy_FallenAngel = new PrefabGUID(1060992284); public static readonly PrefabGUID CO_Unholy_SkeletonApprentice_Summon = new PrefabGUID(380914038); public static readonly PrefabGUID CO_Unholy_SkeletonWarrior_Summon = new PrefabGUID(1706155107); public static readonly PrefabGUID CO_Unholy_UnstableArachnid = new PrefabGUID(-1636008213); public static readonly PrefabGUID CO_Unholy_UnstableArachnid_Small = new PrefabGUID(-2004001670); public static readonly PrefabGUID CO_Vampire_BloodKnight = new PrefabGUID(-574750765); public static readonly PrefabGUID CO_Vampire_CrimsonIronMaiden = new PrefabGUID(-404919682); public static readonly PrefabGUID CO_Vampire_Cultist_BloodCrystal = new PrefabGUID(-1011272049); public static readonly PrefabGUID CO_Vampire_Cultist_Channel = new PrefabGUID(1764560763); public static readonly PrefabGUID CO_Vampire_Cultist_Patrol = new PrefabGUID(760920937); public static readonly PrefabGUID CO_Vampire_Cultist_Praying01 = new PrefabGUID(184969275); public static readonly PrefabGUID CO_Vampire_Cultist_Praying02 = new PrefabGUID(1997551226); public static readonly PrefabGUID CO_Vampire_Cultist_Servant = new PrefabGUID(-1441884697); public static readonly PrefabGUID CO_Vampire_Cultist_Whittling = new PrefabGUID(-1936285349); public static readonly PrefabGUID CO_Vampire_Dracula = new PrefabGUID(2131242094); public static readonly PrefabGUID CO_Vampire_Dracula_SpellPhase = new PrefabGUID(-1785054766); public static readonly PrefabGUID CO_Vampire_Dracula_VeilOfBatsIllusion = new PrefabGUID(-1609674788); public static readonly PrefabGUID CO_Vampire_HighLord_VBlood = new PrefabGUID(529148870); public static readonly PrefabGUID CO_Vampire_IceRanger_VBlood = new PrefabGUID(262864067); public static readonly PrefabGUID CO_Vampire_Withered = new PrefabGUID(-334658510); public static readonly PrefabGUID CO_Vermin_DireRat = new PrefabGUID(-212591729); public static readonly PrefabGUID CO_Vermin_GiantRat = new PrefabGUID(-874783405); public static readonly PrefabGUID CO_VHunter_CastleMan = new PrefabGUID(616943015); public static readonly PrefabGUID CO_VHunter_Jade_VBlood = new PrefabGUID(1267744240); public static readonly PrefabGUID CO_VHunter_Leader_VBlood = new PrefabGUID(1073819632); public static readonly PrefabGUID CO_Villager = new PrefabGUID(1716849062); public static readonly PrefabGUID CO_Villiager_Servant = new PrefabGUID(-1141755924); public static readonly PrefabGUID CO_Wendigo = new PrefabGUID(1557464335); public static readonly PrefabGUID CO_Werewolf = new PrefabGUID(195815988); public static readonly PrefabGUID CO_WerewolfCheiftain_Human = new PrefabGUID(-1788823022); public static readonly PrefabGUID CO_WerewolfChieftain = new PrefabGUID(235390834); public static readonly PrefabGUID CO_WerewolfChieftain_Clone = new PrefabGUID(-847570377); public static readonly PrefabGUID CO_WerewolfChieftain_GateBoss = new PrefabGUID(-843166688); public static readonly PrefabGUID CO_Winter_Moose = new PrefabGUID(1016377877); public static readonly PrefabGUID CO_Winter_Wolf = new PrefabGUID(684912894); public static readonly PrefabGUID CO_Winter_Yeti = new PrefabGUID(1666305403); public static readonly PrefabGUID CO_Wolf_Boss = new PrefabGUID(-672126651); public static readonly PrefabGUID CO_Woodcutter = new PrefabGUID(-1620992523); public static readonly PrefabGUID CO_WormTerror = new PrefabGUID(-1357441150); public static readonly PrefabGUID CoalNode01_Broken = new PrefabGUID(-655909441); public static readonly PrefabGUID CoalNode01_Broken_Small = new PrefabGUID(334327726); public static readonly PrefabGUID CoalNode02_Broken = new PrefabGUID(541318396); public static readonly PrefabGUID CoalNode02_Broken_Small = new PrefabGUID(-1270319756); public static readonly PrefabGUID CoalNode03_Broken = new PrefabGUID(1337407796); public static readonly PrefabGUID CoalNode03_Broken_Small = new PrefabGUID(-564880483); public static readonly PrefabGUID CoalNode04_Broken = new PrefabGUID(-1793202119); public static readonly PrefabGUID CoalNode04_Broken_Small = new PrefabGUID(-1976167167); public static readonly PrefabGUID CobbleStoneBuildMenuGroup = new PrefabGUID(367687460); public static readonly PrefabGUID CobblestonePaths02BuildMenuGroup = new PrefabGUID(-266541601); public static readonly PrefabGUID CobblestonePathsBuildMenuGroup = new PrefabGUID(-1279203881); public static readonly PrefabGUID ConstructionBuilding_Curve = new PrefabGUID(-2122399726); public static readonly PrefabGUID ConsumeAttachedBuff = new PrefabGUID(961715175); public static readonly PrefabGUID ConsumeTargetDebuff = new PrefabGUID(-1903773318); public static readonly PrefabGUID ConsumeTravelBuff = new PrefabGUID(991649996); public static readonly PrefabGUID ContestClientSettings = new PrefabGUID(-1121711197); public static readonly PrefabGUID ControllerScheme_ShoulderCamera = new PrefabGUID(-1891527728); public static readonly PrefabGUID ControllerScheme_StickCamera = new PrefabGUID(1748335998); public static readonly PrefabGUID ConvertedSequenceCollection = new PrefabGUID(-2081576377); public static readonly PrefabGUID CopperNode01_Broken = new PrefabGUID(-1511172154); public static readonly PrefabGUID CopperNode01_Broken_Small = new PrefabGUID(-1313929285); public static readonly PrefabGUID CopperNode02_Broken = new PrefabGUID(994257829); public static readonly PrefabGUID CopperNode02_Broken_Small = new PrefabGUID(-674858743); public static readonly PrefabGUID CopperNode03_Broken = new PrefabGUID(-1022805120); public static readonly PrefabGUID CopperNode03_Broken_Small = new PrefabGUID(897962339); public static readonly PrefabGUID CopperNode04_Broken = new PrefabGUID(-274927282); public static readonly PrefabGUID CopperNode04_Broken_Small = new PrefabGUID(-605760870); public static readonly PrefabGUID CopperNodeBig01_Broken = new PrefabGUID(279071025); public static readonly PrefabGUID CopperNodeMedium01_Broken = new PrefabGUID(-172558721); public static readonly PrefabGUID Cordial01WallpaperBuildMenuGroup = new PrefabGUID(1983264197); public static readonly PrefabGUID CorruptedSkull_Wave_Curve01 = new PrefabGUID(458372050); public static readonly PrefabGUID CorruptedSkull_Wave_Curve02 = new PrefabGUID(862645195); public static readonly PrefabGUID Cosine_Curve = new PrefabGUID(-1013586564); public static readonly PrefabGUID CosineLoop_Curve = new PrefabGUID(917400452); public static readonly PrefabGUID CreatureBat_Ragdoll100_Prefab = new PrefabGUID(-328373532); public static readonly PrefabGUID CreatureBat_Ragdoll240_Prefab = new PrefabGUID(-1467808048); public static readonly PrefabGUID CreatureBatSwarm_Ragdoll80_Prefab_PLACEHOLDER = new PrefabGUID(2130663257); public static readonly PrefabGUID CreatureBear_Ragdoll120_Prefab = new PrefabGUID(-847600702); public static readonly PrefabGUID CreatureBear_Ragdoll130_Prefab = new PrefabGUID(995189556); public static readonly PrefabGUID CreatureBear_Ragdoll170_Prefab = new PrefabGUID(-760729069); public static readonly PrefabGUID CreatureBear_Ragdoll200_Prefab = new PrefabGUID(1896255568); public static readonly PrefabGUID CreatureBigArm_Ragdoll100_Prefab = new PrefabGUID(1363135105); public static readonly PrefabGUID CreatureCorruptedCrow_Ragdoll150_Prefab = new PrefabGUID(320901594); public static readonly PrefabGUID CreatureCow_Ragdoll150_Prefab = new PrefabGUID(463681043); public static readonly PrefabGUID CreatureCow_Ragdoll170_Prefab = new PrefabGUID(-1840673990); public static readonly PrefabGUID CreatureDeer_Mutated_Ragdoll_Prefab = new PrefabGUID(354528964); public static readonly PrefabGUID CreatureDeer_Ragdoll_Prefab = new PrefabGUID(-535937829); public static readonly PrefabGUID CreatureGargoyle_Ragdoll100_Prefab = new PrefabGUID(-1405730011); public static readonly PrefabGUID CreatureGargoyle_Ragdoll100_Prefab_PLACEHOLDER = new PrefabGUID(-1820220966); public static readonly PrefabGUID CreatureGhoul_Ragdoll100_Prefab = new PrefabGUID(-1588485219); public static readonly PrefabGUID CreatureGhoul_Ragdoll115_ClubShield_Prefab = new PrefabGUID(629690083); public static readonly PrefabGUID CreatureGhoul_Ragdoll115_Prefab = new PrefabGUID(305513290); public static readonly PrefabGUID CreatureGhoul_Ragdoll130_ClubShield_Prefab = new PrefabGUID(2050180392); public static readonly PrefabGUID CreatureGhoul_Ragdoll130_Prefab = new PrefabGUID(328954288); public static readonly PrefabGUID CreatureGhoul_Ragdoll150_Prefab = new PrefabGUID(942048191); public static readonly PrefabGUID CreatureGiantCrow_Ragdoll060_Prefab = new PrefabGUID(-360158692); public static readonly PrefabGUID CreatureGiantCrow_Ragdoll080_Prefab = new PrefabGUID(1398672782); public static readonly PrefabGUID CreatureGiantCrow_Ragdoll100_Prefab = new PrefabGUID(1045354892); public static readonly PrefabGUID CreatureHarpy_Ragdoll090_Prefab = new PrefabGUID(245249554); public static readonly PrefabGUID CreatureHarpy_Ragdoll100_Prefab = new PrefabGUID(-711628776); public static readonly PrefabGUID CreatureHarpy_Ragdoll130_Prefab = new PrefabGUID(-180183927); public static readonly PrefabGUID CreatureHarpy_Ragdoll150_Prefab = new PrefabGUID(1320033757); public static readonly PrefabGUID CreatureHarpy_Ragdoll80_Prefab = new PrefabGUID(-1063415894); public static readonly PrefabGUID CreatureHorse_Ragdoll_Prefab = new PrefabGUID(1255759909); public static readonly PrefabGUID CreatureImp_Ragdoll100_Prefab = new PrefabGUID(1444631711); public static readonly PrefabGUID CreatureManticore_Ragdoll200_Prefab = new PrefabGUID(31472678); public static readonly PrefabGUID CreatureManTrap_Ragdoll075_Prefab = new PrefabGUID(366868784); public static readonly PrefabGUID CreatureManTrap_Ragdoll100_Prefab = new PrefabGUID(-234986823); public static readonly PrefabGUID CreatureManTrap_Ragdoll130_Prefab = new PrefabGUID(-1728232719); public static readonly PrefabGUID CreatureManTrap_Ragdoll150_Prefab = new PrefabGUID(2091285795); public static readonly PrefabGUID CreatureManTrapOnTreant_Ragdoll075_Prefab = new PrefabGUID(899984431); public static readonly PrefabGUID CreatureMoose_Dash_Curve = new PrefabGUID(-1227454617); public static readonly PrefabGUID CreatureMoose_RagdollFemale100_Prefab = new PrefabGUID(-783250937); public static readonly PrefabGUID CreatureMoose_RagdollMale120_Prefab = new PrefabGUID(2020966389); public static readonly PrefabGUID CreatureMoose_RagdollMutated_Prefab = new PrefabGUID(-439469200); public static readonly PrefabGUID CreatureMosquito_Ragdoll120_Prefab = new PrefabGUID(-1747046031); public static readonly PrefabGUID CreatureNightlurker_Ragdoll100_Prefab = new PrefabGUID(-1068694609); public static readonly PrefabGUID CreatureNightmare_Ragdoll100_Prefab = new PrefabGUID(-1090843392); public static readonly PrefabGUID CreatureNightmare_Ragdoll90_Prefab = new PrefabGUID(1676286957); public static readonly PrefabGUID CreaturePig_Ragdoll060_Prefab = new PrefabGUID(-1813971530); public static readonly PrefabGUID CreaturePig_Ragdoll100_Prefab = new PrefabGUID(-582670882); public static readonly PrefabGUID CreaturePixie_Ragdoll100_Prefab = new PrefabGUID(1763915421); public static readonly PrefabGUID CreatureProphet_Ragdoll100_Prefab = new PrefabGUID(-909689747); public static readonly PrefabGUID CreatureProphet_Ragdoll110_Prefab = new PrefabGUID(975709405); public static readonly PrefabGUID CreatureProphet_Ragdoll120_Prefab = new PrefabGUID(-888165867); public static readonly PrefabGUID CreatureRat_Ragdoll120_Prefab = new PrefabGUID(1556272996); public static readonly PrefabGUID CreatureRat_Ragdoll160_Prefab = new PrefabGUID(155199943); public static readonly PrefabGUID CreatureRat_Ragdoll250_Prefab = new PrefabGUID(-1029319809); public static readonly PrefabGUID CreatureRat_Ragdoll250_Prefab_PLACEHOLDER = new PrefabGUID(-1139816588); public static readonly PrefabGUID CreatureRat_Ragdoll400_Prefab = new PrefabGUID(814043679); public static readonly PrefabGUID CreatureRatHorror_Ragdoll090_Prefab = new PrefabGUID(1824740400); public static readonly PrefabGUID CreatureScyther_Ragdoll100_Prefab = new PrefabGUID(-2018631012); public static readonly PrefabGUID CreatureScyther_Ragdoll110_Prefab = new PrefabGUID(-1054354793); public static readonly PrefabGUID CreatureScyther_Ragdoll70_Prefab = new PrefabGUID(187591879); public static readonly PrefabGUID CreatureScyther_Ragdoll90_Prefab = new PrefabGUID(858382861); public static readonly PrefabGUID CreatureSheep_Ragdoll150_Prefab = new PrefabGUID(-1681364226); public static readonly PrefabGUID CreatureSkull_Ragdoll100_Prefab = new PrefabGUID(853336263); public static readonly PrefabGUID CreatureSpider_Ragdoll050_Prefab = new PrefabGUID(-2014935130); public static readonly PrefabGUID CreatureSpider_Ragdoll150_Prefab = new PrefabGUID(825386604); public static readonly PrefabGUID CreatureSpider_Ragdoll200_Prefab = new PrefabGUID(756859139); public static readonly PrefabGUID CreatureSpider_Ragdoll400_Prefab = new PrefabGUID(779548576); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll120_Prefab = new PrefabGUID(1521465634); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll160_Prefab = new PrefabGUID(-1660181028); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll200_Prefab = new PrefabGUID(1461815664); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll230_Prefab = new PrefabGUID(-25450616); public static readonly PrefabGUID CreatureSuccubus_Ragdoll100_Prefab = new PrefabGUID(-50621749); public static readonly PrefabGUID CreatureSuccubus_Ragdoll110_Prefab = new PrefabGUID(1914007840); public static readonly PrefabGUID CreatureSuccubus_Ragdoll120_Prefab = new PrefabGUID(2045896993); public static readonly PrefabGUID CreatureTreant_Ragdoll100_Prefab = new PrefabGUID(847770697); public static readonly PrefabGUID CreatureTreant_Ragdoll200_Prefab = new PrefabGUID(-1781189041); public static readonly PrefabGUID CreatureWerewolf_Ragdoll100_Prefab = new PrefabGUID(-1847680802); public static readonly PrefabGUID CreatureWerewolf_Ragdoll150_Prefab = new PrefabGUID(1340663027); public static readonly PrefabGUID CreatureWitheredVampire_Ragdoll100_Prefab = new PrefabGUID(194644392); public static readonly PrefabGUID CreatureWitheredVampire_Ragdoll120_Prefab = new PrefabGUID(-2056261043); public static readonly PrefabGUID CreatureWitheredVampire_Ragdoll130_Prefab = new PrefabGUID(887685147); public static readonly PrefabGUID CreatureWolf_Ragdoll_Test = new PrefabGUID(178501540); public static readonly PrefabGUID CreatureWolf_Ragdoll100_Prefab = new PrefabGUID(-1807047886); public static readonly PrefabGUID CreatureWolf_Ragdoll120_Prefab = new PrefabGUID(2110166064); public static readonly PrefabGUID CreatureWolf_Ragdoll130_Prefab = new PrefabGUID(-1751713457); public static readonly PrefabGUID CreatureWolf_Ragdoll140_Prefab = new PrefabGUID(-1707512034); public static readonly PrefabGUID CreatureWolf_Ragdoll150_Prefab = new PrefabGUID(-1419181702); public static readonly PrefabGUID CritterChar_Bat = new PrefabGUID(1735423645); public static readonly PrefabGUID CritterChar_Bunny = new PrefabGUID(1242469640); public static readonly PrefabGUID CritterChar_Cat = new PrefabGUID(-2118320949); public static readonly PrefabGUID CritterChar_Chicken = new PrefabGUID(1356828000); public static readonly PrefabGUID CritterChar_Cockroach = new PrefabGUID(148342094); public static readonly PrefabGUID CritterChar_Crow = new PrefabGUID(925222623); public static readonly PrefabGUID CritterChar_Mouse = new PrefabGUID(-317994061); public static readonly PrefabGUID CritterChar_Spider = new PrefabGUID(7967807); public static readonly PrefabGUID CritterChar_Squirrel = new PrefabGUID(555302054); public static readonly PrefabGUID CritterGroup_Bat = new PrefabGUID(-1367272613); public static readonly PrefabGUID CritterGroup_Bunny = new PrefabGUID(474612735); public static readonly PrefabGUID CritterGroup_Cat = new PrefabGUID(-1117422489); public static readonly PrefabGUID CritterGroup_Chicken = new PrefabGUID(-364852783); public static readonly PrefabGUID CritterGroup_Cockroach = new PrefabGUID(1989068346); public static readonly PrefabGUID CritterGroup_Crow = new PrefabGUID(-642069358); public static readonly PrefabGUID CritterGroup_Mouse = new PrefabGUID(-1821856556); public static readonly PrefabGUID CritterGroup_Single_Bat = new PrefabGUID(1859694106); public static readonly PrefabGUID CritterGroup_Single_Bunny = new PrefabGUID(-1330227720); public static readonly PrefabGUID CritterGroup_Single_Cat = new PrefabGUID(2096095485); public static readonly PrefabGUID CritterGroup_Single_Chicken = new PrefabGUID(-1657279065); public static readonly PrefabGUID CritterGroup_Single_Cockroach = new PrefabGUID(-1454203981); public static readonly PrefabGUID CritterGroup_Single_Crow = new PrefabGUID(-654812882); public static readonly PrefabGUID CritterGroup_Single_Mouse = new PrefabGUID(-526078649); public static readonly PrefabGUID CritterGroup_Single_Spider = new PrefabGUID(-80668474); public static readonly PrefabGUID CritterGroup_Single_Squirrel = new PrefabGUID(-142454320); public static readonly PrefabGUID CritterGroup_Spider = new PrefabGUID(1076806641); public static readonly PrefabGUID CritterGroup_Squirrel = new PrefabGUID(1369566208); public static readonly PrefabGUID CryptFloorBuildMenuGroup = new PrefabGUID(-779542956); public static readonly PrefabGUID CrystalNode01_Broken = new PrefabGUID(-1281655774); public static readonly PrefabGUID CrystalNode01_Broken_Small = new PrefabGUID(-1316773796); public static readonly PrefabGUID CrystalNode02_Broken = new PrefabGUID(-436044690); public static readonly PrefabGUID CrystalNode02_Broken_Small = new PrefabGUID(853156858); public static readonly PrefabGUID CrystalNode03_Broken = new PrefabGUID(-409507398); public static readonly PrefabGUID CrystalNode03_Broken_Small = new PrefabGUID(1522959044); public static readonly PrefabGUID Cursed_MountainBeast_VBlood_Emote_OnAggro_Buff = new PrefabGUID(575706671); public static readonly PrefabGUID Cursed_ToadKing_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1860135007); public static readonly PrefabGUID Cursed_Witch_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1712502449); public static readonly PrefabGUID CurseOfTheForestCurve = new PrefabGUID(-165949957); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable01 = new PrefabGUID(-984487483); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable02 = new PrefabGUID(-574686002); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable03 = new PrefabGUID(1822226575); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable04 = new PrefabGUID(1174828034); public static readonly PrefabGUID CurtainsBuildMenuGroupWalls = new PrefabGUID(-1412163262); public static readonly PrefabGUID CurtainsBuildMenuGroupWindow = new PrefabGUID(-2141652137); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable01 = new PrefabGUID(1154431287); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable02 = new PrefabGUID(-729759654); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable03 = new PrefabGUID(942021926); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable04 = new PrefabGUID(-1618668180); public static readonly PrefabGUID CurtainsBuildMenuHalloween01 = new PrefabGUID(594242213); public static readonly PrefabGUID Curve_Harvesting_Base_Default = new PrefabGUID(1865742548); public static readonly PrefabGUID Curve_Late_Exponential = new PrefabGUID(-2105699851); public static readonly PrefabGUID Curve_MaterialParameter_Bell = new PrefabGUID(1834241972); public static readonly PrefabGUID Curve_MaterialParameter_Bell_Custom1 = new PrefabGUID(-898395305); public static readonly PrefabGUID Curve_MaterialParameter_Bell_Custom2 = new PrefabGUID(977036292); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickEnd = new PrefabGUID(-1955063252); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickStart = new PrefabGUID(1070677914); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickStartNEnd = new PrefabGUID(-595330675); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickStartNEnd_Dracula = new PrefabGUID(-187583068); public static readonly PrefabGUID Curve_Stats_Base_Default = new PrefabGUID(-1087456774); public static readonly PrefabGUID Curve_Stats_Durability_Default = new PrefabGUID(347547260); public static readonly PrefabGUID Curve_Stats_Health_VBlood_Default = new PrefabGUID(-1088346619); public static readonly PrefabGUID Curve_Stats_PlayerHealth_NPCDamage_Default = new PrefabGUID(-979488854); public static readonly PrefabGUID Curve_Stats_Trash_Health = new PrefabGUID(1757681304); public static readonly PrefabGUID Curve_Stats_Units_Base_LightCurve_Default = new PrefabGUID(-1133129862); public static readonly PrefabGUID Curve_Stats_Units_Base_Linear_Default = new PrefabGUID(613328891); public static readonly PrefabGUID Curve_Stats_Units_Health_Exponential_Default = new PrefabGUID(-595060822); public static readonly PrefabGUID Curve_Stats_Units_Health_VBlood = new PrefabGUID(902260803); public static readonly PrefabGUID Dagger_LeapMovementCurve = new PrefabGUID(1247313737); public static readonly PrefabGUID Darkness_WingOfDarkness_ReturnCurve = new PrefabGUID(638719886); public static readonly PrefabGUID Dash = new PrefabGUID(1664644966); public static readonly PrefabGUID DayNightCycle = new PrefabGUID(-1404365494); public static readonly PrefabGUID DazeCurve = new PrefabGUID(814692040); public static readonly PrefabGUID DeathBuff = new PrefabGUID(-410069552); public static readonly PrefabGUID DeepBlueWindowsBuildMenuGroup = new PrefabGUID(1082128899); public static readonly PrefabGUID Default_ImpactMapping = new PrefabGUID(1838642985); public static readonly PrefabGUID DefaultEquipmentCollection = new PrefabGUID(1870987059); public static readonly PrefabGUID DefaultUnitActiveTimer = new PrefabGUID(871486083); public static readonly PrefabGUID DefaultUnlockedProgression = new PrefabGUID(970543511); public static readonly PrefabGUID DesksBuildMenuGroup = new PrefabGUID(493629648); public static readonly PrefabGUID DG_Blood_Stash_General = new PrefabGUID(-2039926742); public static readonly PrefabGUID DG_Breakable_T01_Cocoon_MicroPOI_Bandits = new PrefabGUID(-2010744344); public static readonly PrefabGUID DG_Breakable_T01_General_Urn = new PrefabGUID(951573169); public static readonly PrefabGUID DG_Breakable_T01_Graveyard_Tomb = new PrefabGUID(-1919795187); public static readonly PrefabGUID DG_Breakable_T01_Graveyard_Urn = new PrefabGUID(1294731904); public static readonly PrefabGUID DG_Breakable_T01_LumberjackCamp = new PrefabGUID(1029332719); public static readonly PrefabGUID DG_Breakable_T01_StartGraveyard_Urn = new PrefabGUID(630345940); public static readonly PrefabGUID DG_Breakable_T02_Farms = new PrefabGUID(328778407); public static readonly PrefabGUID DG_Breakable_T03_Cursed_Cocoon = new PrefabGUID(1966447501); public static readonly PrefabGUID DG_Breakable_T03_Harbor_Fish = new PrefabGUID(-968251067); public static readonly PrefabGUID DG_Breakable_T03_SilverMine = new PrefabGUID(466770945); public static readonly PrefabGUID DG_Breakable_T03_StrongBlade_Disembark_Fish = new PrefabGUID(-272458270); public static readonly PrefabGUID DG_Coins_T01 = new PrefabGUID(1540070901); public static readonly PrefabGUID DG_Coins_T02 = new PrefabGUID(-2130907141); public static readonly PrefabGUID DG_Coins_T03 = new PrefabGUID(-1425533541); public static readonly PrefabGUID DG_Coins_T03_GoldAndSilver = new PrefabGUID(1205484515); public static readonly PrefabGUID DG_Coins_T04 = new PrefabGUID(875180931); public static readonly PrefabGUID DG_Container_T01_Carriage_Animal = new PrefabGUID(433846260); public static readonly PrefabGUID DG_Container_T01_Carriage_Copper = new PrefabGUID(-1058664299); public static readonly PrefabGUID DG_Container_T01_Carriage_Plank = new PrefabGUID(-625024741); public static readonly PrefabGUID DG_Container_T01_Carriage_Sulfur = new PrefabGUID(1040566389); public static readonly PrefabGUID DG_Container_T01_General = new PrefabGUID(1909532227); public static readonly PrefabGUID DG_Container_T01_Graveyard_General = new PrefabGUID(-388824593); public static readonly PrefabGUID DG_Container_T01_Graveyard_Start = new PrefabGUID(220138518); public static readonly PrefabGUID DG_Container_T01_Misc = new PrefabGUID(405699381); public static readonly PrefabGUID DG_Container_T01_Misc_Graveyard = new PrefabGUID(1371269742); public static readonly PrefabGUID DG_Container_T01_Misc_Quarry = new PrefabGUID(295746247); public static readonly PrefabGUID DG_Container_T01_Storage_Rare = new PrefabGUID(-1014348189); public static readonly PrefabGUID DG_Container_T02_Carriage_Cotton = new PrefabGUID(-759984956); public static readonly PrefabGUID DG_Container_T02_Carriage_Iron = new PrefabGUID(-911858738); public static readonly PrefabGUID DG_Container_T02_Carriage_Quartz = new PrefabGUID(-1489279758); public static readonly PrefabGUID DG_Container_T02_Graveyard_General = new PrefabGUID(-1748682486); public static readonly PrefabGUID DG_Container_T02_Misc = new PrefabGUID(-136093668); public static readonly PrefabGUID DG_Container_T02_Misc_Gloomrot_Factory = new PrefabGUID(-1546263079); public static readonly PrefabGUID DG_Container_T02_Misc_Gloomrot_SludgePool = new PrefabGUID(868544561); public static readonly PrefabGUID DG_Container_T02_Misc_GloomrotSouth = new PrefabGUID(-1292478585); public static readonly PrefabGUID DG_Container_T02_Misc_IronMine = new PrefabGUID(698996172); public static readonly PrefabGUID DG_Container_T02_Misc_Magic = new PrefabGUID(-558450784); public static readonly PrefabGUID DG_Container_T02_Misc_MilitiaFort = new PrefabGUID(1169994794); public static readonly PrefabGUID DG_Container_T02_Misc_Noctem = new PrefabGUID(-279875334); public static readonly PrefabGUID DG_Container_T02_Misc_QuartzQuarry = new PrefabGUID(-1131795090); public static readonly PrefabGUID DG_Container_T02_Misc_Village_Fish = new PrefabGUID(-268836842); public static readonly PrefabGUID DG_Container_T02_Noctem_Crystal_T01 = new PrefabGUID(1324684161); public static readonly PrefabGUID DG_Container_T02_Storage_Gloomrot_Rare = new PrefabGUID(1069169028); public static readonly PrefabGUID DG_Container_T02_Storage_Rare = new PrefabGUID(-1809100981); public static readonly PrefabGUID DG_Container_T03_Carriage_Emery = new PrefabGUID(-535905314); public static readonly PrefabGUID DG_Container_T03_Carriage_Grapes = new PrefabGUID(710586900); public static readonly PrefabGUID DG_Container_T03_Carriage_Legion = new PrefabGUID(-342123149); public static readonly PrefabGUID DG_Container_T03_Carriage_Mutant = new PrefabGUID(483646622); public static readonly PrefabGUID DG_Container_T03_Carriage_Sap = new PrefabGUID(1145150323); public static readonly PrefabGUID DG_Container_T03_Carriage_Silver = new PrefabGUID(423285063); public static readonly PrefabGUID DG_Container_T03_GrapeStomperBarrel = new PrefabGUID(-909786548); public static readonly PrefabGUID DG_Container_T03_Misc = new PrefabGUID(1891494897); public static readonly PrefabGUID DG_Container_T03_Misc_Church = new PrefabGUID(141303312); public static readonly PrefabGUID DG_Container_T03_Misc_Cursed = new PrefabGUID(1645409827); public static readonly PrefabGUID DG_Container_T03_Misc_GloomrotNorth = new PrefabGUID(1838040059); public static readonly PrefabGUID DG_Container_T03_Misc_GloomrotNorth_Lab = new PrefabGUID(-1724471008); public static readonly PrefabGUID DG_Container_T03_Misc_Harbor = new PrefabGUID(1428824812); public static readonly PrefabGUID DG_Container_T03_Misc_RoyalSquare = new PrefabGUID(-322796773); public static readonly PrefabGUID DG_Container_T03_Misc_RoyalSquare_Outside = new PrefabGUID(799302546); public static readonly PrefabGUID DG_Container_T03_Misc_SilverMine = new PrefabGUID(1778434762); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade = new PrefabGUID(-696082104); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Alchemy = new PrefabGUID(554058091); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Bastion = new PrefabGUID(-976785199); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Carver = new PrefabGUID(1309881540); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Disembark = new PrefabGUID(-2097709445); public static readonly PrefabGUID DG_Container_T03_Storage_Rare = new PrefabGUID(-1746523783); public static readonly PrefabGUID DG_Container_T03_Storage_Rare_GloomrotNorth = new PrefabGUID(-158916574); public static readonly PrefabGUID DG_Container_T03_Storage_Rare_StrongBlade = new PrefabGUID(2061994638); public static readonly PrefabGUID DG_Container_T03_Storage_RoyalSquare_Rare = new PrefabGUID(-582411595); public static readonly PrefabGUID DG_Container_T04_Misc = new PrefabGUID(99834451); public static readonly PrefabGUID DG_Container_T04_Noctem_Crystal_T02 = new PrefabGUID(297885887); public static readonly PrefabGUID DG_Fish_Cursed_T01 = new PrefabGUID(2052079562); public static readonly PrefabGUID DG_Fish_Dunley_T01 = new PrefabGUID(1760781308); public static readonly PrefabGUID DG_Fish_Farbane_T01 = new PrefabGUID(602192785); public static readonly PrefabGUID DG_Fish_Gloomrot_T01 = new PrefabGUID(1978852852); public static readonly PrefabGUID DG_Fish_Harbor = new PrefabGUID(-426653940); public static readonly PrefabGUID DG_Fish_Silverlight_T01 = new PrefabGUID(58114326); public static readonly PrefabGUID DG_Fish_StrongBlade_T01 = new PrefabGUID(-1663423347); public static readonly PrefabGUID DG_Fishing_Cursed_Items_T01 = new PrefabGUID(1718507145); public static readonly PrefabGUID DG_Fishing_Cursed_T01 = new PrefabGUID(677405472); public static readonly PrefabGUID DG_Fishing_Dunley_Items_T01 = new PrefabGUID(1358948183); public static readonly PrefabGUID DG_Fishing_Dunley_T01 = new PrefabGUID(1949339630); public static readonly PrefabGUID DG_Fishing_Farbane_Items_T01 = new PrefabGUID(1616829799); public static readonly PrefabGUID DG_Fishing_Farbane_T01 = new PrefabGUID(-628470921); public static readonly PrefabGUID DG_Fishing_Gloomrot_T01 = new PrefabGUID(-1698161744); public static readonly PrefabGUID DG_Fishing_Silverlight_Items_T01 = new PrefabGUID(-1494790425); public static readonly PrefabGUID DG_Fishing_Silverlight_T01 = new PrefabGUID(-1790830484); public static readonly PrefabGUID DG_Fishing_StrongBlade_Items_T01 = new PrefabGUID(1181831346); public static readonly PrefabGUID DG_Fishing_StrongBlade_T01 = new PrefabGUID(-1375432277); public static readonly PrefabGUID DG_Gear_T01_Basic_Armors = new PrefabGUID(-1655815009); public static readonly PrefabGUID DG_Gear_T01_Basic_Weapons = new PrefabGUID(-1782949422); public static readonly PrefabGUID DG_Gear_T01_Cloak_Collection = new PrefabGUID(12757113); public static readonly PrefabGUID DG_Gear_T01_General = new PrefabGUID(-2027350737); public static readonly PrefabGUID DG_Gear_T01_Graveyard = new PrefabGUID(-1775916594); public static readonly PrefabGUID DG_Gear_T01_Headgear_Collection = new PrefabGUID(-1756313832); public static readonly PrefabGUID DG_Gear_T02_Cloak_Collection = new PrefabGUID(-635785161); public static readonly PrefabGUID DG_Gear_T02_General = new PrefabGUID(-484171030); public static readonly PrefabGUID DG_Gear_T02_Headgear_Collection = new PrefabGUID(1321005827); public static readonly PrefabGUID DG_Gear_T03_Basic_Armors = new PrefabGUID(-1034830107); public static readonly PrefabGUID DG_Gear_T03_Cloak_Collection = new PrefabGUID(1224959593); public static readonly PrefabGUID DG_Gear_T03_CottonArmor = new PrefabGUID(-294604688); public static readonly PrefabGUID DG_Gear_T03_General = new PrefabGUID(-882656591); public static readonly PrefabGUID DG_Gear_T03_Headgear_Collection = new PrefabGUID(1260315542); public static readonly PrefabGUID DG_Gear_T03_Headgear_VampireHunter = new PrefabGUID(1736981520); public static readonly PrefabGUID DG_Gear_T03_IronEquipment = new PrefabGUID(1058876252); public static readonly PrefabGUID DG_Gear_T04_General = new PrefabGUID(748027089); public static readonly PrefabGUID DG_Human_General_Drop01_T01 = new PrefabGUID(-674633014); public static readonly PrefabGUID DG_Legendary_NetherGate_Major = new PrefabGUID(-1829083414); public static readonly PrefabGUID DG_Legendary_NetherGate_Minor = new PrefabGUID(-2018814609); public static readonly PrefabGUID DG_Legendary_NetherGate_Primal = new PrefabGUID(-1339460540); public static readonly PrefabGUID DG_Mission_Fish_Farbane_Fisherman = new PrefabGUID(1483366252); public static readonly PrefabGUID DG_Mission_T00_No_BloodEssence = new PrefabGUID(232491593); public static readonly PrefabGUID DG_Mission_T01_Farbane_BloodEssence = new PrefabGUID(70843803); public static readonly PrefabGUID DG_Mission_T01_Farbane_Fish = new PrefabGUID(1560988013); public static readonly PrefabGUID DG_Mission_T01_Farbane_General = new PrefabGUID(1030501359); public static readonly PrefabGUID DG_Mission_T01_Farbane_Misc = new PrefabGUID(-235172059); public static readonly PrefabGUID DG_Mission_T02_Dunley_BloodEssence = new PrefabGUID(-1104968431); public static readonly PrefabGUID DG_Mission_T02_Dunley_General = new PrefabGUID(7594625); public static readonly PrefabGUID DG_Mission_T02_Dunley_Misc = new PrefabGUID(2142009812); public static readonly PrefabGUID DG_Mission_T02_Gloomrot_BloodEssence = new PrefabGUID(1953143832); public static readonly PrefabGUID DG_Mission_T02_Gloomrot_General = new PrefabGUID(-318293682); public static readonly PrefabGUID DG_Mission_T02_Gloomrot_Misc = new PrefabGUID(1993285515); public static readonly PrefabGUID DG_Mission_T02_Noctem_Misc = new PrefabGUID(327314955); public static readonly PrefabGUID DG_Mission_T02_Noctem_Ruins = new PrefabGUID(1649596143); public static readonly PrefabGUID DG_Mission_T03_Cursed_BloodEssence = new PrefabGUID(721791474); public static readonly PrefabGUID DG_Mission_T03_Cursed_General = new PrefabGUID(1992517517); public static readonly PrefabGUID DG_Mission_T03_Cursed_Misc = new PrefabGUID(-1274346311); public static readonly PrefabGUID DG_Mission_T04_GloomrotNorth_General = new PrefabGUID(-581804216); public static readonly PrefabGUID DG_Mission_T04_GloomrotNorth_Misc = new PrefabGUID(-518916463); public static readonly PrefabGUID DG_Mission_T04_Noctem_Gardens = new PrefabGUID(1106493133); public static readonly PrefabGUID DG_Mission_T04_Noctem_Misc = new PrefabGUID(431231157); public static readonly PrefabGUID DG_Mission_T04_Silverlight_BloodEssence = new PrefabGUID(1202606318); public static readonly PrefabGUID DG_Mission_T04_Silverlight_Fish = new PrefabGUID(1577769429); public static readonly PrefabGUID DG_Mission_T04_Silverlight_General = new PrefabGUID(571498705); public static readonly PrefabGUID DG_Mission_T04_Silverlight_HarpyGems = new PrefabGUID(-1981823330); public static readonly PrefabGUID DG_Mission_T04_Silverlight_Misc = new PrefabGUID(-857659940); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_BloodEssence = new PrefabGUID(-665041538); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Fish = new PrefabGUID(-90892351); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_General = new PrefabGUID(265831722); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Misc = new PrefabGUID(1152599662); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Plants = new PrefabGUID(-1898212729); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Potions = new PrefabGUID(1000050609); public static readonly PrefabGUID DG_NetherDemon_Alchemy_T02 = new PrefabGUID(1398090605); public static readonly PrefabGUID DG_NetherDemon_Jewels_T01 = new PrefabGUID(-1108693022); public static readonly PrefabGUID DG_NetherDemon_Jewels_T02 = new PrefabGUID(922146749); public static readonly PrefabGUID DG_NetherDemon_Knowledge_T02 = new PrefabGUID(-4875669); public static readonly PrefabGUID DG_NetherDemon_Minerals_T01 = new PrefabGUID(-136726520); public static readonly PrefabGUID DG_NetherDemon_Minerals_T02 = new PrefabGUID(-379846843); public static readonly PrefabGUID DG_NetherDemon_Weapons_T01 = new PrefabGUID(1650585625); public static readonly PrefabGUID DG_NetherDemon_Weapons_T02 = new PrefabGUID(2033414634); public static readonly PrefabGUID DG_NetherDemon_Weapons_Unique = new PrefabGUID(-1244805107); public static readonly PrefabGUID DG_NetherShards_GateBoss_Major = new PrefabGUID(-1743538978); public static readonly PrefabGUID DG_NetherShards_GateBoss_Minor = new PrefabGUID(-626232454); public static readonly PrefabGUID DG_NetherShards_GateBoss_Primal = new PrefabGUID(1265977722); public static readonly PrefabGUID DG_Passives_T01 = new PrefabGUID(362249550); public static readonly PrefabGUID DG_Passives_T02 = new PrefabGUID(263074015); public static readonly PrefabGUID DG_Shared_Clay_T01 = new PrefabGUID(-1072935780); public static readonly PrefabGUID DG_Shared_Coins_T01 = new PrefabGUID(-1779578854); public static readonly PrefabGUID DG_Shared_Coins_T02 = new PrefabGUID(1232631890); public static readonly PrefabGUID DG_Shared_Coins_T03 = new PrefabGUID(-1842569724); public static readonly PrefabGUID DG_Shared_Coins_T04 = new PrefabGUID(-111791197); public static readonly PrefabGUID DG_Shared_Consumables_Elixir = new PrefabGUID(2014537862); public static readonly PrefabGUID DG_Shared_Consumables_T01 = new PrefabGUID(668711866); public static readonly PrefabGUID DG_Shared_Consumables_T02 = new PrefabGUID(-470448469); public static readonly PrefabGUID DG_Shared_Consumables_T03 = new PrefabGUID(-2142241018); public static readonly PrefabGUID DG_Shared_Consumables_T03_Mission_StrongBlade = new PrefabGUID(1054713875); public static readonly PrefabGUID DG_Shared_Container_T02_Farms = new PrefabGUID(128496181); public static readonly PrefabGUID DG_Shared_Container_T02_Lumbermill = new PrefabGUID(-345302350); public static readonly PrefabGUID DG_Shared_Critter_Gloomrot_Rat_T02 = new PrefabGUID(308991376); public static readonly PrefabGUID DG_Shared_Critter_Rat_T01 = new PrefabGUID(-352298778); public static readonly PrefabGUID DG_Shared_Critter_Silkworm_T03 = new PrefabGUID(-1795328310); public static readonly PrefabGUID DG_Shared_Critter_SludgePools_Rat_T02 = new PrefabGUID(-1298356969); public static readonly PrefabGUID DG_Shared_Decoration_T01 = new PrefabGUID(-1444017573); public static readonly PrefabGUID DG_Shared_Gems_T01 = new PrefabGUID(-1897530180); public static readonly PrefabGUID DG_Shared_Gems_T02 = new PrefabGUID(1954210954); public static readonly PrefabGUID DG_Shared_Gems_T03 = new PrefabGUID(-1162005407); public static readonly PrefabGUID DG_Shared_Gems_T04 = new PrefabGUID(1146865701); public static readonly PrefabGUID DG_Shared_NetherShards_Mixed = new PrefabGUID(-2103820473); public static readonly PrefabGUID DG_Shared_Plants_T01 = new PrefabGUID(1744531815); public static readonly PrefabGUID DG_Shared_Plants_T02 = new PrefabGUID(1529104066); public static readonly PrefabGUID DG_Shared_Plants_T03_StrongBlade = new PrefabGUID(-429878285); public static readonly PrefabGUID DG_Shared_Research_T01_Low = new PrefabGUID(-329157745); public static readonly PrefabGUID DG_Shared_Research_T01_Mid = new PrefabGUID(-1278108076); public static readonly PrefabGUID DG_Shared_Research_T02_High = new PrefabGUID(-202022459); public static readonly PrefabGUID DG_Shared_Research_T02_Low = new PrefabGUID(-2074495133); public static readonly PrefabGUID DG_Shared_Research_T02_Mid = new PrefabGUID(1858617172); public static readonly PrefabGUID DG_Shared_Research_T02_Mixed_Big = new PrefabGUID(987964241); public static readonly PrefabGUID DG_Shared_Research_T03_High = new PrefabGUID(-1150682078); public static readonly PrefabGUID DG_Shared_Research_T03_Low = new PrefabGUID(-41567190); public static readonly PrefabGUID DG_Shared_Research_T03_Mid = new PrefabGUID(-1787481141); public static readonly PrefabGUID DG_Shared_Research_T03_Mixed_Big = new PrefabGUID(-340056265); public static readonly PrefabGUID DG_Shared_Resource_Copper = new PrefabGUID(-2102232267); public static readonly PrefabGUID DG_Shared_Resource_GhostCrystal = new PrefabGUID(1749052953); public static readonly PrefabGUID DG_Shared_Resource_Iron = new PrefabGUID(-692372427); public static readonly PrefabGUID DG_Shared_Resource_Quartz = new PrefabGUID(1565167721); public static readonly PrefabGUID DG_Shared_Resource_Rock = new PrefabGUID(1388804882); public static readonly PrefabGUID DG_Shared_Resource_Scrap_Battery = new PrefabGUID(413865332); public static readonly PrefabGUID DG_Shared_Resource_Silver = new PrefabGUID(1995150801); public static readonly PrefabGUID DG_Shared_Resource_Sulfur = new PrefabGUID(1398666807); public static readonly PrefabGUID DG_Shared_Resource_Tree = new PrefabGUID(-1498999730); public static readonly PrefabGUID DG_Shared_Seeds_T01 = new PrefabGUID(419822861); public static readonly PrefabGUID DG_Shared_Seeds_T02 = new PrefabGUID(-1891639833); public static readonly PrefabGUID DG_Shared_Seeds_T02_Gloomrot = new PrefabGUID(703203395); public static readonly PrefabGUID DG_Shared_Seeds_T03_All = new PrefabGUID(125548546); public static readonly PrefabGUID DG_Shared_Seeds_T03_GrapesLotus = new PrefabGUID(1164196464); public static readonly PrefabGUID DG_Shared_Seeds_T03_Saplings = new PrefabGUID(75434282); public static readonly PrefabGUID DG_Shared_Seeds_T03_ShroomsLotus = new PrefabGUID(-179484011); public static readonly PrefabGUID DG_Shared_Seeds_T03_StrongBlade = new PrefabGUID(-906758542); public static readonly PrefabGUID DG_Shared_T01_Components_All = new PrefabGUID(-1503042440); public static readonly PrefabGUID DG_Shared_T01_Components_Blacksmith = new PrefabGUID(-374402390); public static readonly PrefabGUID DG_Shared_T01_Components_BlacksmithVariable = new PrefabGUID(-1082472468); public static readonly PrefabGUID DG_Shared_T01_Components_Construction = new PrefabGUID(-1858386431); public static readonly PrefabGUID DG_Shared_T01_Components_Magic = new PrefabGUID(661131254); public static readonly PrefabGUID DG_Shared_T01_Components_Tailoring = new PrefabGUID(45142596); public static readonly PrefabGUID DG_Shared_T01_Ingredients_Copper = new PrefabGUID(-911361478); public static readonly PrefabGUID DG_Shared_T01_Storage_AnimalCamp = new PrefabGUID(-517036683); public static readonly PrefabGUID DG_Shared_T01_Storage_BanditFort = new PrefabGUID(-1354030434); public static readonly PrefabGUID DG_Shared_T01_Storage_Blacksmith = new PrefabGUID(149789990); public static readonly PrefabGUID DG_Shared_T01_Storage_CopperMine = new PrefabGUID(1305380392); public static readonly PrefabGUID DG_Shared_T01_Storage_General = new PrefabGUID(-922986326); public static readonly PrefabGUID DG_Shared_T01_Storage_LumberCamp = new PrefabGUID(-687064736); public static readonly PrefabGUID DG_Shared_T01_Storage_SulfurQuarry = new PrefabGUID(138926207); public static readonly PrefabGUID DG_Shared_T01_Storage_Tailor = new PrefabGUID(85119732); public static readonly PrefabGUID DG_Shared_T01_Treasure_General = new PrefabGUID(1390217640); public static readonly PrefabGUID DG_Shared_T02_Components_All = new PrefabGUID(802892195); public static readonly PrefabGUID DG_Shared_T02_Components_Blacksmith = new PrefabGUID(-743539691); public static readonly PrefabGUID DG_Shared_T02_Components_Construction = new PrefabGUID(-2105910607); public static readonly PrefabGUID DG_Shared_T02_Components_Gloomrot_Mech = new PrefabGUID(-1328826274); public static readonly PrefabGUID DG_Shared_T02_Components_Magic = new PrefabGUID(1705367945); public static readonly PrefabGUID DG_Shared_T02_Components_Tailoring = new PrefabGUID(-882513946); public static readonly PrefabGUID DG_Shared_T02_Components_TechScrap = new PrefabGUID(1594186200); public static readonly PrefabGUID DG_Shared_T02_Storage_Blacksmith = new PrefabGUID(2076937949); public static readonly PrefabGUID DG_Shared_T02_Storage_ChurchOfTheDamned = new PrefabGUID(227103100); public static readonly PrefabGUID DG_Shared_T02_Storage_General = new PrefabGUID(-2052072226); public static readonly PrefabGUID DG_Shared_T02_Storage_General_GloomrotFactory = new PrefabGUID(-616136117); public static readonly PrefabGUID DG_Shared_T02_Storage_General_GloomrotSouth = new PrefabGUID(244372377); public static readonly PrefabGUID DG_Shared_T02_Storage_General_SludgePools = new PrefabGUID(-287686419); public static readonly PrefabGUID DG_Shared_T02_Storage_Magic = new PrefabGUID(-923792432); public static readonly PrefabGUID DG_Shared_T02_Storage_MilitiaFort_General = new PrefabGUID(1053960050); public static readonly PrefabGUID DG_Shared_T02_Storage_MilitiaFort_Unique = new PrefabGUID(-789692442); public static readonly PrefabGUID DG_Shared_T02_Storage_Noctem = new PrefabGUID(2044390625); public static readonly PrefabGUID DG_Shared_T02_Storage_Village_Fish = new PrefabGUID(684162537); public static readonly PrefabGUID DG_Shared_T02_Treasure_ChurchOfTheDamned = new PrefabGUID(1187114318); public static readonly PrefabGUID DG_Shared_T02_Treasure_General = new PrefabGUID(-794013563); public static readonly PrefabGUID DG_Shared_T02_Treasure_General_Gloomrot = new PrefabGUID(1517832857); public static readonly PrefabGUID DG_Shared_T02_Treasure_General_GloomrotFactory = new PrefabGUID(874487488); public static readonly PrefabGUID DG_Shared_T02_Treasure_General_Noctem = new PrefabGUID(-1796178156); public static readonly PrefabGUID DG_Shared_T03_Components_All = new PrefabGUID(-1488799116); public static readonly PrefabGUID DG_Shared_T03_Components_Blacksmith = new PrefabGUID(-273068064); public static readonly PrefabGUID DG_Shared_T03_Components_Magic = new PrefabGUID(-1374413214); public static readonly PrefabGUID DG_Shared_T03_Components_StrongBlade = new PrefabGUID(-1594211559); public static readonly PrefabGUID DG_Shared_T03_Components_Tailoring = new PrefabGUID(802075336); public static readonly PrefabGUID DG_Shared_T03_Storage_Church = new PrefabGUID(1542093784); public static readonly PrefabGUID DG_Shared_T03_Storage_General = new PrefabGUID(11902470); public static readonly PrefabGUID DG_Shared_T03_Storage_General_Cursed = new PrefabGUID(580371630); public static readonly PrefabGUID DG_Shared_T03_Storage_General_GloomrotNorth = new PrefabGUID(-938773845); public static readonly PrefabGUID DG_Shared_T03_Storage_General_GloomrotNorth_Lab = new PrefabGUID(347624582); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade = new PrefabGUID(1839427455); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade_Alchemy = new PrefabGUID(654306446); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade_Bastion = new PrefabGUID(-445348935); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade_Carver = new PrefabGUID(226252382); public static readonly PrefabGUID DG_Shared_T03_Storage_RoyalSquare = new PrefabGUID(-1323124520); public static readonly PrefabGUID DG_Shared_T03_Storage_RoyalSquare_Outside = new PrefabGUID(484975148); public static readonly PrefabGUID DG_Shared_T03_Storage_SilverMine = new PrefabGUID(-1363291005); public static readonly PrefabGUID DG_Shared_T03_Treasure_General = new PrefabGUID(-1173668301); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_Cursed = new PrefabGUID(-1092013966); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_GloomrotNorth = new PrefabGUID(-789399775); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_RoyalSquare = new PrefabGUID(-1414865113); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_StrongBlade = new PrefabGUID(1255574134); public static readonly PrefabGUID DG_Shared_T03_Treasure_SpiderCavern = new PrefabGUID(337435844); public static readonly PrefabGUID DG_Shared_T04_Components_All = new PrefabGUID(265544065); public static readonly PrefabGUID DG_Shared_T04_Components_Blacksmith = new PrefabGUID(-204804774); public static readonly PrefabGUID DG_Shared_T04_Components_Magic = new PrefabGUID(569496733); public static readonly PrefabGUID DG_Shared_T04_Components_Tailoring = new PrefabGUID(-1559969002); public static readonly PrefabGUID DG_Shared_T04_Storage_General = new PrefabGUID(1755640461); public static readonly PrefabGUID DG_Shared_T04_Treasure_General = new PrefabGUID(-1671990115); public static readonly PrefabGUID DG_Shared_Unit_Bandit_Components_Blacksmith = new PrefabGUID(465131747); public static readonly PrefabGUID DG_Shared_Unit_Bandit_Components_General = new PrefabGUID(1153165721); public static readonly PrefabGUID DG_Shared_Unit_Church_Components_T04T05 = new PrefabGUID(-515919233); public static readonly PrefabGUID DG_Shared_Unit_Components_Blacksmith_T01 = new PrefabGUID(-1796741385); public static readonly PrefabGUID DG_Shared_Unit_Components_Tailoring_T01 = new PrefabGUID(-989279301); public static readonly PrefabGUID DG_Shared_Unit_Creature_T01 = new PrefabGUID(-339679150); public static readonly PrefabGUID DG_Shared_Unit_Farmers_Components_T04 = new PrefabGUID(-75514021); public static readonly PrefabGUID DG_Shared_Unit_Heart_Elite_T01 = new PrefabGUID(546787638); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T01 = new PrefabGUID(2052223836); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T02 = new PrefabGUID(265060786); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T03 = new PrefabGUID(-486851600); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T04 = new PrefabGUID(350474883); public static readonly PrefabGUID DG_Shared_Unit_Heart_Trash_T01 = new PrefabGUID(1877092210); public static readonly PrefabGUID DG_Shared_Unit_Heart_Trash_T02 = new PrefabGUID(-1324079437); public static readonly PrefabGUID DG_Shared_Unit_Heart_Trash_T03 = new PrefabGUID(1485623186); public static readonly PrefabGUID DG_Shared_Unit_Militia_Components_T04T05 = new PrefabGUID(-1943281931); public static readonly PrefabGUID DG_Shared_Unit_Spider_T03_Rank01 = new PrefabGUID(-1429988136); public static readonly PrefabGUID DG_Shared_Unit_Spider_T03_Rank02 = new PrefabGUID(591569771); public static readonly PrefabGUID DG_Shared_Unit_Undead_Components_T03 = new PrefabGUID(-1593721019); public static readonly PrefabGUID DG_Shared_Unit_Woodcutter = new PrefabGUID(-1367721825); public static readonly PrefabGUID DG_Tech_Armor_T04 = new PrefabGUID(38652344); public static readonly PrefabGUID DG_Tech_Armor_T06 = new PrefabGUID(837949078); public static readonly PrefabGUID DG_Tech_Armor_T08 = new PrefabGUID(630635412); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Brute = new PrefabGUID(1000749201); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Rogue = new PrefabGUID(719472173); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Scholar = new PrefabGUID(1215478674); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Warrior = new PrefabGUID(-1286380129); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Brute = new PrefabGUID(-784762788); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Rogue = new PrefabGUID(1875964888); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Scholar = new PrefabGUID(423745265); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Warrior = new PrefabGUID(818102733); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Brute = new PrefabGUID(-2119141808); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Rogue = new PrefabGUID(428176195); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Scholar = new PrefabGUID(-817539232); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Warrior = new PrefabGUID(-1800986678); public static readonly PrefabGUID DG_Tech_Blacksmith_Mid = new PrefabGUID(-1222574513); public static readonly PrefabGUID DG_Tech_Consumables_Early = new PrefabGUID(-1793736962); public static readonly PrefabGUID DG_Tech_Consumables_Late = new PrefabGUID(357745731); public static readonly PrefabGUID DG_Tech_Consumables_Mid = new PrefabGUID(56626266); public static readonly PrefabGUID DG_Tech_Equipment_T04 = new PrefabGUID(1173910708); public static readonly PrefabGUID DG_Tech_Equipment_T06 = new PrefabGUID(-1013137749); public static readonly PrefabGUID DG_Tech_Equipment_T08 = new PrefabGUID(-1190292016); public static readonly PrefabGUID DG_Tech_Floors_Early = new PrefabGUID(-1484409463); public static readonly PrefabGUID DG_Tech_Floors_Mid = new PrefabGUID(586176309); public static readonly PrefabGUID DG_Tech_General_Early = new PrefabGUID(204167049); public static readonly PrefabGUID DG_Tech_General_Late = new PrefabGUID(1903387598); public static readonly PrefabGUID DG_Tech_General_Mid = new PrefabGUID(1295732001); public static readonly PrefabGUID DG_Tech_Gold_VBlood_T04 = new PrefabGUID(1405626554); public static readonly PrefabGUID DG_Tech_Legendary_VBlood_T05 = new PrefabGUID(-809412678); public static readonly PrefabGUID DG_Tech_Magic_Mid = new PrefabGUID(-280553302); public static readonly PrefabGUID DG_Tech_Magic_T04 = new PrefabGUID(-875230249); public static readonly PrefabGUID DG_Tech_Magic_T06 = new PrefabGUID(-546404833); public static readonly PrefabGUID DG_Tech_Magic_T08 = new PrefabGUID(-232334772); public static readonly PrefabGUID DG_Tech_Storage_T01 = new PrefabGUID(-1494906591); public static readonly PrefabGUID DG_Tech_Storage_T02 = new PrefabGUID(-728740676); public static readonly PrefabGUID DG_Tech_Storage_T03 = new PrefabGUID(1068448198); public static readonly PrefabGUID DG_Tech_Structures_Early = new PrefabGUID(-1455022078); public static readonly PrefabGUID DG_Tech_Structures_Late = new PrefabGUID(286927992); public static readonly PrefabGUID DG_Tech_Structures_Mid = new PrefabGUID(1568414755); public static readonly PrefabGUID DG_Tech_Weapons_T04 = new PrefabGUID(-1034484734); public static readonly PrefabGUID DG_Tech_Weapons_T06 = new PrefabGUID(634246934); public static readonly PrefabGUID DG_Tech_Weapons_T08 = new PrefabGUID(1262948191); public static readonly PrefabGUID DG_Treasure_T01_General = new PrefabGUID(-777133436); public static readonly PrefabGUID DG_Treasure_T02_General = new PrefabGUID(-151012894); public static readonly PrefabGUID DG_Treasure_T02_General_GloomrotFactory = new PrefabGUID(-1568336643); public static readonly PrefabGUID DG_Treasure_T02_General_GloomrotSouth = new PrefabGUID(-375071620); public static readonly PrefabGUID DG_Treasure_T02_General_Noctem = new PrefabGUID(386313890); public static readonly PrefabGUID DG_Treasure_T03_General = new PrefabGUID(385615781); public static readonly PrefabGUID DG_Treasure_T03_General_Cursed = new PrefabGUID(42028438); public static readonly PrefabGUID DG_Treasure_T03_General_GloomrotNorth = new PrefabGUID(-626788151); public static readonly PrefabGUID DG_Treasure_T03_General_GloomrotNorth_Lab = new PrefabGUID(1461059924); public static readonly PrefabGUID DG_Treasure_T03_General_StrongBlade = new PrefabGUID(658616962); public static readonly PrefabGUID DG_Treasure_T04_General = new PrefabGUID(1043870457); public static readonly PrefabGUID DG_Unit_Banshee_T07 = new PrefabGUID(-675377960); public static readonly PrefabGUID DG_Unit_Church_Normal_T02_Rank01 = new PrefabGUID(-1231651019); public static readonly PrefabGUID DG_Unit_Church_Normal_T02_Rank02 = new PrefabGUID(-1189919464); public static readonly PrefabGUID DG_Unit_Cursed_Ghost_T01 = new PrefabGUID(-1256340255); public static readonly PrefabGUID DG_Unit_GateBoss_Major = new PrefabGUID(848553339); public static readonly PrefabGUID DG_Unit_GateBoss_Minor = new PrefabGUID(-2129530080); public static readonly PrefabGUID DG_Unit_GateBoss_Primal = new PrefabGUID(1671312901); public static readonly PrefabGUID DG_Unit_Legion_NetherShards_T01 = new PrefabGUID(175586605); public static readonly PrefabGUID DG_Unit_Legion_NetherShards_T02 = new PrefabGUID(-930142020); public static readonly PrefabGUID DG_Unit_Legion_Normal_T02 = new PrefabGUID(-79677213); public static readonly PrefabGUID DG_Unit_Legion_Trash_T01 = new PrefabGUID(-1974518560); public static readonly PrefabGUID DG_Unit_Legion_Trash_T02 = new PrefabGUID(1068408625); public static readonly PrefabGUID DG_Unit_Scarecrow = new PrefabGUID(1616224054); public static readonly PrefabGUID DG_Unit_Scarecrow_Dummy = new PrefabGUID(26803558); public static readonly PrefabGUID DG_Unit_Standard_T01_Misc = new PrefabGUID(-891059270); public static readonly PrefabGUID DG_Unit_Standard_T01_Misc_Legion = new PrefabGUID(-277796224); public static readonly PrefabGUID DG_Unit_Standard_T01_Misc_Militia = new PrefabGUID(-965958658); public static readonly PrefabGUID DG_Unit_Standard_T02_Misc = new PrefabGUID(-477124906); public static readonly PrefabGUID DG_Unit_Standard_T02_Misc_Gloomrot = new PrefabGUID(-311459098); public static readonly PrefabGUID DG_Unit_Standard_T03_Misc = new PrefabGUID(999676671); public static readonly PrefabGUID DG_Unit_Standard_T03_Misc_Legion = new PrefabGUID(906921572); public static readonly PrefabGUID DG_Unit_Standard_T03_Misc_StrongBlade = new PrefabGUID(756645082); public static readonly PrefabGUID DG_Unit_Standard_T04_Misc = new PrefabGUID(160230427); public static readonly PrefabGUID DG_Unit_Undead_Normal_T01 = new PrefabGUID(1344668783); public static readonly PrefabGUID DG_Unit_Undead_Normal_T02 = new PrefabGUID(-1649522396); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Banshee = new PrefabGUID(2067406327); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Ghoul = new PrefabGUID(1541001162); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Necromancer = new PrefabGUID(433255461); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Skeleton = new PrefabGUID(-1346886195); public static readonly PrefabGUID DG_Unit_Undead_Trash_T01 = new PrefabGUID(-993319983); public static readonly PrefabGUID DG_Unit_Undead_WitheredVampire = new PrefabGUID(1926959574); public static readonly PrefabGUID DG_Unit_VBlood_T01_DireRat_Rats = new PrefabGUID(-413328078); public static readonly PrefabGUID DG_Unit_VBlood_T01_Heart_Normal = new PrefabGUID(-725624369); public static readonly PrefabGUID DG_Unit_VBlood_T02_Heart_Normal = new PrefabGUID(-301362355); public static readonly PrefabGUID DG_Unit_VBlood_T03_Heart_Normal = new PrefabGUID(568078443); public static readonly PrefabGUID DG_Unit_VBlood_T04_Gold = new PrefabGUID(-760606378); public static readonly PrefabGUID DG_Unit_VBlood_T04_Heart_Normal = new PrefabGUID(152119371); public static readonly PrefabGUID DiminishingReturn_Buff_Base = new PrefabGUID(22197431); public static readonly PrefabGUID DiminishingReturn_Buff_Fear = new PrefabGUID(-1580179550); public static readonly PrefabGUID DiminishingReturn_Buff_Freeze = new PrefabGUID(725278096); public static readonly PrefabGUID DiminishingReturn_Buff_Stun = new PrefabGUID(-160846617); public static readonly PrefabGUID DiminishingReturn_Buff_ThousandSpears = new PrefabGUID(706085202); public static readonly PrefabGUID DiminishingReturn_Buff_Tornado = new PrefabGUID(-1137877503); public static readonly PrefabGUID DLC01WallpaperBuildMenuGroup = new PrefabGUID(209764618); public static readonly PrefabGUID DLC02WallpaperBuildMenuGroup = new PrefabGUID(-719418586); public static readonly PrefabGUID DLCGloomrot01WallpaperBuildMenuGroup = new PrefabGUID(-1711652344); public static readonly PrefabGUID DLCGloomrot02WallpaperBuildMenuGroup = new PrefabGUID(-1356841125); public static readonly PrefabGUID DLCProjectK01WallpaperBuildMenuGroup = new PrefabGUID(-1770249927); public static readonly PrefabGUID DLCProjectK01WallpaperExpansionBuildMenuGroup = new PrefabGUID(552885243); public static readonly PrefabGUID DLCStrongblade01WallpaperBuildMenuGroup = new PrefabGUID(-277107668); public static readonly PrefabGUID DoorTier02_DLC_ProjectK01_BuildMenuGroup = new PrefabGUID(-709378370); public static readonly PrefabGUID DoorTier02_DLC_ProjectK02_BuildMenuGroup = new PrefabGUID(-958034825); public static readonly PrefabGUID DoorTier02_DLC_StrongbladeDLC01_BuildMenuGroup = new PrefabGUID(-1368456115); public static readonly PrefabGUID DoorTier02_DLC01_DraculasRelic_BuildMenuGroup = new PrefabGUID(-2085323225); public static readonly PrefabGUID DoorTier02_DLC02_Gloomrot_BuildMenuGroup = new PrefabGUID(434369022); public static readonly PrefabGUID DoorTier02_PrisonStyle01_BuildMenuGroup = new PrefabGUID(1610805157); public static readonly PrefabGUID DoorTier02_PrisonStyle02_BuildMenuGroup = new PrefabGUID(1601315396); public static readonly PrefabGUID DoorTier02_Wide_01_BuildMenuGroup = new PrefabGUID(1944873046); public static readonly PrefabGUID DoorTier02_Wide_02_BuildMenuGroup = new PrefabGUID(1960705318); public static readonly PrefabGUID DoorTier02BuildMenuGroup = new PrefabGUID(-265684532); public static readonly PrefabGUID DoorTier02Standard01BuildMenuGroup = new PrefabGUID(545474177); public static readonly PrefabGUID DoorTier02Standard02BuildMenuGroup = new PrefabGUID(386728077); public static readonly PrefabGUID DoorTier02Standard03BuildMenuGroup = new PrefabGUID(-1376033135); public static readonly PrefabGUID Dreadhorn_TrampleRotation_Curve = new PrefabGUID(1066804124); public static readonly PrefabGUID Dreadhorn_TrampleSlowDown_Curve = new PrefabGUID(-1776612184); public static readonly PrefabGUID DropItemSphere = new PrefabGUID(-2054980473); public static readonly PrefabGUID DropItemSphere_VBlood = new PrefabGUID(1725779712); public static readonly PrefabGUID DropItemSphere_WarEvent = new PrefabGUID(496881660); public static readonly PrefabGUID DT_Breakable_General_Urn_T01 = new PrefabGUID(1839404165); public static readonly PrefabGUID DT_Breakable_Graveyard_Tombstone_T01 = new PrefabGUID(-2097442215); public static readonly PrefabGUID DT_Breakable_StartGraveyard_Urn_T01 = new PrefabGUID(-1317603328); public static readonly PrefabGUID DT_Breakables_SpiderCocoon = new PrefabGUID(-200769376); public static readonly PrefabGUID DT_Breakables_SpiderCocoon_MicroPOI_Bandits = new PrefabGUID(1271894991); public static readonly PrefabGUID DT_Breakables_T01_General = new PrefabGUID(-448705278); public static readonly PrefabGUID DT_Breakables_T01_General_AnimalCamp = new PrefabGUID(1897930300); public static readonly PrefabGUID DT_Breakables_T01_General_Blacksmith = new PrefabGUID(-1985426768); public static readonly PrefabGUID DT_Breakables_T01_General_CopperQuarry = new PrefabGUID(1192665766); public static readonly PrefabGUID DT_Breakables_T01_General_Fisherman = new PrefabGUID(-868733446); public static readonly PrefabGUID DT_Breakables_T01_General_LumberjackCamp = new PrefabGUID(-1026191485); public static readonly PrefabGUID DT_Breakables_T01_General_Magic = new PrefabGUID(26098957); public static readonly PrefabGUID DT_Breakables_T01_General_SulfurQuarry = new PrefabGUID(1146512721); public static readonly PrefabGUID DT_Breakables_T01_General_Tailoring = new PrefabGUID(-84176293); public static readonly PrefabGUID DT_Breakables_T02_General = new PrefabGUID(-489297962); public static readonly PrefabGUID DT_Breakables_T02_General_Blacksmith = new PrefabGUID(-107013170); public static readonly PrefabGUID DT_Breakables_T02_General_Farms = new PrefabGUID(-1726883126); public static readonly PrefabGUID DT_Breakables_T02_General_Gloomrot_Factory = new PrefabGUID(195346670); public static readonly PrefabGUID DT_Breakables_T02_General_Gloomrot_SludgePool = new PrefabGUID(1733344505); public static readonly PrefabGUID DT_Breakables_T02_General_Gloomrot_South = new PrefabGUID(1617506862); public static readonly PrefabGUID DT_Breakables_T02_General_IronMines = new PrefabGUID(-42367019); public static readonly PrefabGUID DT_Breakables_T02_General_Magic = new PrefabGUID(1982224752); public static readonly PrefabGUID DT_Breakables_T02_General_MilitiaCrate = new PrefabGUID(2054529563); public static readonly PrefabGUID DT_Breakables_T02_General_MilitiaFort = new PrefabGUID(963714422); public static readonly PrefabGUID DT_Breakables_T02_General_Noctem = new PrefabGUID(2076943224); public static readonly PrefabGUID DT_Breakables_T02_General_QuartzQuarry = new PrefabGUID(2107524813); public static readonly PrefabGUID DT_Breakables_T02_General_Tailoring = new PrefabGUID(-566266591); public static readonly PrefabGUID DT_Breakables_T02_General_Village_Fish = new PrefabGUID(-397862535); public static readonly PrefabGUID DT_Breakables_T02_Noctem_Crystal_T01 = new PrefabGUID(442026639); public static readonly PrefabGUID DT_Breakables_T03_General = new PrefabGUID(79901686); public static readonly PrefabGUID DT_Breakables_T03_General_Blacksmith = new PrefabGUID(1758384213); public static readonly PrefabGUID DT_Breakables_T03_General_Cursed = new PrefabGUID(-1982909202); public static readonly PrefabGUID DT_Breakables_T03_General_Gloomrot_North = new PrefabGUID(1663542347); public static readonly PrefabGUID DT_Breakables_T03_General_Harbor = new PrefabGUID(1226399423); public static readonly PrefabGUID DT_Breakables_T03_General_Magic = new PrefabGUID(1186656314); public static readonly PrefabGUID DT_Breakables_T03_General_SilverMine = new PrefabGUID(1319850626); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade = new PrefabGUID(-783470863); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade_Carver = new PrefabGUID(-2036294154); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade_Disembark = new PrefabGUID(-496004924); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade_EmeryCrate = new PrefabGUID(-1160939688); public static readonly PrefabGUID DT_Breakables_T03_General_Tailoring = new PrefabGUID(-121175022); public static readonly PrefabGUID DT_Breakables_T04_General = new PrefabGUID(165916732); public static readonly PrefabGUID DT_Breakables_T04_General_Blacksmith = new PrefabGUID(-1908758465); public static readonly PrefabGUID DT_Breakables_T04_General_Magic = new PrefabGUID(1338049108); public static readonly PrefabGUID DT_Breakables_T04_General_Tailoring = new PrefabGUID(1332105771); public static readonly PrefabGUID DT_Breakables_T04_Noctem_Crystal_T02 = new PrefabGUID(79577466); public static readonly PrefabGUID DT_Carriage_T01_Animal = new PrefabGUID(-1901291897); public static readonly PrefabGUID DT_Carriage_T01_Copper = new PrefabGUID(-1677509406); public static readonly PrefabGUID DT_Carriage_T01_Plank = new PrefabGUID(-2019913183); public static readonly PrefabGUID DT_Carriage_T01_Sulfur = new PrefabGUID(37249880); public static readonly PrefabGUID DT_Carriage_T02_Cotton = new PrefabGUID(1763923109); public static readonly PrefabGUID DT_Carriage_T02_Iron = new PrefabGUID(1932020854); public static readonly PrefabGUID DT_Carriage_T02_Quartz = new PrefabGUID(1120449851); public static readonly PrefabGUID DT_Carriage_T03_CorruptedSap = new PrefabGUID(298424590); public static readonly PrefabGUID DT_Carriage_T03_Emery = new PrefabGUID(-857810060); public static readonly PrefabGUID DT_Carriage_T03_Grapes = new PrefabGUID(-212217424); public static readonly PrefabGUID DT_Carriage_T03_Legion = new PrefabGUID(332541925); public static readonly PrefabGUID DT_Carriage_T03_Mutant = new PrefabGUID(-1297823967); public static readonly PrefabGUID DT_Carriage_T03_Silver = new PrefabGUID(1249933341); public static readonly PrefabGUID DT_Container_T01_Bookshelf = new PrefabGUID(1517679105); public static readonly PrefabGUID DT_Container_T01_Bookshelf_Poor = new PrefabGUID(1719611762); public static readonly PrefabGUID DT_Container_T01_General = new PrefabGUID(851583643); public static readonly PrefabGUID DT_Container_T01_Graveyard = new PrefabGUID(1312504196); public static readonly PrefabGUID DT_Container_T01_Misc = new PrefabGUID(1272048663); public static readonly PrefabGUID DT_Container_T01_Sarcofag = new PrefabGUID(1409793766); public static readonly PrefabGUID DT_Container_T01_Sarcofag_Big = new PrefabGUID(250672338); public static readonly PrefabGUID DT_Container_T01_Sarcofag_Graveyard_Start = new PrefabGUID(1399162022); public static readonly PrefabGUID DT_Container_T02_Sarcofag = new PrefabGUID(-136587831); public static readonly PrefabGUID DT_Fish_Cursed_Standard_01 = new PrefabGUID(1553238108); public static readonly PrefabGUID DT_Fish_Dunley_Standard_01 = new PrefabGUID(1612482091); public static readonly PrefabGUID DT_Fish_Farbane_Standard_01 = new PrefabGUID(-47980789); public static readonly PrefabGUID DT_Fish_General_Standard_01 = new PrefabGUID(-2110497587); public static readonly PrefabGUID DT_Fish_Gloomrot_Standard_01 = new PrefabGUID(-1478565794); public static readonly PrefabGUID DT_Fish_Silverlight_Standard_01 = new PrefabGUID(711437197); public static readonly PrefabGUID DT_Fish_StrongBlade_Standard_01 = new PrefabGUID(1670470961); public static readonly PrefabGUID DT_Mission_T01_Farbane_SimulateOnly = new PrefabGUID(343185056); public static readonly PrefabGUID DT_Mission_T02_Dunley_SimulateOnly = new PrefabGUID(33179541); public static readonly PrefabGUID DT_Mission_T03_Cursed_SimulateOnly = new PrefabGUID(596296656); public static readonly PrefabGUID DT_Mission_T04_Silverlight_SimulateOnly = new PrefabGUID(-512916640); public static readonly PrefabGUID DT_Missions_Cursed_AncientVillage = new PrefabGUID(-1487881045); public static readonly PrefabGUID DT_Missions_Cursed_Forest = new PrefabGUID(-1932253113); public static readonly PrefabGUID DT_Missions_Cursed_SpiderCave = new PrefabGUID(-1259488220); public static readonly PrefabGUID DT_Missions_Cursed_Swamp = new PrefabGUID(1449781756); public static readonly PrefabGUID DT_Missions_Dunley_ChurchOfTheDamned = new PrefabGUID(-252943757); public static readonly PrefabGUID DT_Missions_Dunley_CottonFarm = new PrefabGUID(-225862906); public static readonly PrefabGUID DT_Missions_Dunley_IronMine = new PrefabGUID(1667938211); public static readonly PrefabGUID DT_Missions_Dunley_MilitiaFort = new PrefabGUID(1467220554); public static readonly PrefabGUID DT_Missions_Dunley_Monastery = new PrefabGUID(-1631779796); public static readonly PrefabGUID DT_Missions_Dunley_Mountains = new PrefabGUID(-1645922036); public static readonly PrefabGUID DT_Missions_Dunley_QuartzQuarry = new PrefabGUID(-1079034636); public static readonly PrefabGUID DT_Missions_Dunley_Village_Dawnbreak = new PrefabGUID(789781855); public static readonly PrefabGUID DT_Missions_Dunley_Village_Mosswick = new PrefabGUID(515501514); public static readonly PrefabGUID DT_Missions_Farbane_AnimalCamp = new PrefabGUID(-1190151670); public static readonly PrefabGUID DT_Missions_Farbane_BanditForge = new PrefabGUID(-555416461); public static readonly PrefabGUID DT_Missions_Farbane_BanditFortress = new PrefabGUID(-1041711330); public static readonly PrefabGUID DT_Missions_Farbane_CopperQuarry = new PrefabGUID(-1216104638); public static readonly PrefabGUID DT_Missions_Farbane_Fisherman = new PrefabGUID(1047770861); public static readonly PrefabGUID DT_Missions_Farbane_FlowerMeadows = new PrefabGUID(-308834086); public static readonly PrefabGUID DT_Missions_Farbane_HauntedGraveyard = new PrefabGUID(1960955296); public static readonly PrefabGUID DT_Missions_Farbane_LumberjackCamp = new PrefabGUID(767824937); public static readonly PrefabGUID DT_Missions_Farbane_SulfurQuarry = new PrefabGUID(-2055799022); public static readonly PrefabGUID DT_Missions_Gloomrot_CoilFactory = new PrefabGUID(1351604823); public static readonly PrefabGUID DT_Missions_Gloomrot_Lab = new PrefabGUID(-19446077); public static readonly PrefabGUID DT_Missions_Gloomrot_Mine = new PrefabGUID(883784375); public static readonly PrefabGUID DT_Missions_Gloomrot_PestPools = new PrefabGUID(-1206022078); public static readonly PrefabGUID DT_Missions_Gloomrot_PowerPlant = new PrefabGUID(682887786); public static readonly PrefabGUID DT_Missions_Gloomrot_Village = new PrefabGUID(-65841947); public static readonly PrefabGUID DT_Missions_HallowedMountain_Mountain = new PrefabGUID(-1447854541); public static readonly PrefabGUID DT_Missions_Noctem_Garden = new PrefabGUID(-1042462624); public static readonly PrefabGUID DT_Missions_Noctem_Ruins = new PrefabGUID(814098336); public static readonly PrefabGUID DT_Missions_Silverlight_ArchmagePOI = new PrefabGUID(-234969286); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenCathedral = new PrefabGUID(713357348); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenHarbor = new PrefabGUID(2035270417); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenSlums = new PrefabGUID(-145806608); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenSquare = new PrefabGUID(1372524183); public static readonly PrefabGUID DT_Missions_Silverlight_HarpyNest = new PrefabGUID(-1250951830); public static readonly PrefabGUID DT_Missions_Silverlight_SilverMines = new PrefabGUID(972850809); public static readonly PrefabGUID DT_Missions_Silverlight_Vineyard = new PrefabGUID(-897370198); public static readonly PrefabGUID DT_Missions_Strongblade_Bastion = new PrefabGUID(1991238618); public static readonly PrefabGUID DT_Missions_Strongblade_CarversLoggingOutpost = new PrefabGUID(1361231679); public static readonly PrefabGUID DT_Missions_Strongblade_MixingOutpost = new PrefabGUID(253393766); public static readonly PrefabGUID DT_Missions_Strongblade_Shoreline = new PrefabGUID(1710641411); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_BleedingHeart = new PrefabGUID(-1352771248); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_BloodRose = new PrefabGUID(-1400627746); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_CorruptedFlower = new PrefabGUID(1917656805); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Cotton = new PrefabGUID(238040940); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_FireBlossom = new PrefabGUID(-212828944); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_GhostShroom = new PrefabGUID(1257500505); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Grapes = new PrefabGUID(1864634743); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_HellsClarion = new PrefabGUID(1744933600); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Lotus = new PrefabGUID(-1714925033); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_MourningLily = new PrefabGUID(949933944); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_SnowFlower_Castle = new PrefabGUID(1953381333); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_SunFlower_Castle = new PrefabGUID(-1120548758); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Thistle = new PrefabGUID(-1399060793); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_TrippyShroom = new PrefabGUID(-350961298); public static readonly PrefabGUID DT_Pickup_Flower_Pollen = new PrefabGUID(1524794047); public static readonly PrefabGUID DT_Pickup_Flower_T01_BleedingHeart = new PrefabGUID(-2024405832); public static readonly PrefabGUID DT_Pickup_Flower_T01_BloodRose = new PrefabGUID(712016759); public static readonly PrefabGUID DT_Pickup_Flower_T01_CorruptedFlower = new PrefabGUID(-973237164); public static readonly PrefabGUID DT_Pickup_Flower_T01_Cotton = new PrefabGUID(313292892); public static readonly PrefabGUID DT_Pickup_Flower_T01_FireBlossom = new PrefabGUID(-1862897619); public static readonly PrefabGUID DT_Pickup_Flower_T01_GhostShroom = new PrefabGUID(1281164954); public static readonly PrefabGUID DT_Pickup_Flower_T01_Grapes = new PrefabGUID(1432632736); public static readonly PrefabGUID DT_Pickup_Flower_T01_Grapes_Harvested = new PrefabGUID(1622701316); public static readonly PrefabGUID DT_Pickup_Flower_T01_HellsClarion = new PrefabGUID(1020580012); public static readonly PrefabGUID DT_Pickup_Flower_T01_Lotus = new PrefabGUID(-1937852201); public static readonly PrefabGUID DT_Pickup_Flower_T01_MourningLily = new PrefabGUID(1218210064); public static readonly PrefabGUID DT_Pickup_Flower_T01_SnowFlower = new PrefabGUID(1085632579); public static readonly PrefabGUID DT_Pickup_Flower_T01_Sunflower = new PrefabGUID(1456771384); public static readonly PrefabGUID DT_Pickup_Flower_T01_Thistle = new PrefabGUID(323728400); public static readonly PrefabGUID DT_Pickup_Flower_T01_TrippyShroom = new PrefabGUID(-132241866); public static readonly PrefabGUID DT_Pickup_T01_Bones = new PrefabGUID(-637053290); public static readonly PrefabGUID DT_Pickup_T01_BonesCarcass = new PrefabGUID(1191362301); public static readonly PrefabGUID DT_Pickup_T01_Hides = new PrefabGUID(931859854); public static readonly PrefabGUID DT_Pickup_T01_PlantFiber = new PrefabGUID(921599876); public static readonly PrefabGUID DT_Pickup_T01_PlantFiber_NotGuaranteed = new PrefabGUID(446889637); public static readonly PrefabGUID DT_Pickup_T01_Rat = new PrefabGUID(-1027981457); public static readonly PrefabGUID DT_Pickup_T03_SilkWorm = new PrefabGUID(-147563786); public static readonly PrefabGUID DT_Resource_Bush_Cotton = new PrefabGUID(559901153); public static readonly PrefabGUID DT_Resource_Bush_General = new PrefabGUID(642149322); public static readonly PrefabGUID DT_Resource_Emery_Erruption_Elemental = new PrefabGUID(52984146); public static readonly PrefabGUID DT_Resource_Emery_Erruption_Golem = new PrefabGUID(1612752582); public static readonly PrefabGUID DT_Resource_FarmRuins_Rock_General = new PrefabGUID(1633277778); public static readonly PrefabGUID DT_Resource_Tree_Corrupted = new PrefabGUID(1435420615); public static readonly PrefabGUID DT_Resource_Tree_Curse = new PrefabGUID(1908620136); public static readonly PrefabGUID DT_Resource_Tree_Destroy_Rare = new PrefabGUID(780274462); public static readonly PrefabGUID DT_Resource_Tree_Destroy_Snow_Rare = new PrefabGUID(2000652983); public static readonly PrefabGUID DT_Resource_Tree_General = new PrefabGUID(970500864); public static readonly PrefabGUID DT_Resource_Tree_Gloom = new PrefabGUID(-804318180); public static readonly PrefabGUID DT_Resource_Tree_Hallowed = new PrefabGUID(535515586); public static readonly PrefabGUID DT_Resource_Tree_Rare = new PrefabGUID(-2034169646); public static readonly PrefabGUID DT_Resource_Tree_Sapling_AppleCursed = new PrefabGUID(-1045049099); public static readonly PrefabGUID DT_Resource_Tree_Sapling_AppleTree = new PrefabGUID(1795167056); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Aspen = new PrefabGUID(1312571976); public static readonly PrefabGUID DT_Resource_Tree_Sapling_AspenAutum = new PrefabGUID(650106278); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Birch = new PrefabGUID(-334626750); public static readonly PrefabGUID DT_Resource_Tree_Sapling_BirchAutum = new PrefabGUID(-274591317); public static readonly PrefabGUID DT_Resource_Tree_Sapling_CherryBlossom = new PrefabGUID(1315524229); public static readonly PrefabGUID DT_Resource_Tree_Sapling_CherryBlossomWhite = new PrefabGUID(-1340237088); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Cypress = new PrefabGUID(1157727831); public static readonly PrefabGUID DT_Resource_Tree_Sapling_GloomTree = new PrefabGUID(641048422); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Oak = new PrefabGUID(1580825037); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Spruce = new PrefabGUID(-805548712); public static readonly PrefabGUID DT_Resource_Tree_Sapling_WeepingWillow = new PrefabGUID(410636876); public static readonly PrefabGUID DT_Resource_VampireRuins_Rock_General = new PrefabGUID(1942260993); public static readonly PrefabGUID DT_Resource_Vein_BloodCrystal_General = new PrefabGUID(-1978587614); public static readonly PrefabGUID DT_Resource_Vein_Coal_General = new PrefabGUID(-1757133766); public static readonly PrefabGUID DT_Resource_Vein_Copper_Big_General = new PrefabGUID(-1784927126); public static readonly PrefabGUID DT_Resource_Vein_Copper_General = new PrefabGUID(875593718); public static readonly PrefabGUID DT_Resource_Vein_Copper_Medium_General = new PrefabGUID(-1830475076); public static readonly PrefabGUID DT_Resource_Vein_Crystal_General = new PrefabGUID(-1823047667); public static readonly PrefabGUID DT_Resource_Vein_Emery_General = new PrefabGUID(1874162344); public static readonly PrefabGUID DT_Resource_Vein_Emery_Rare = new PrefabGUID(-10764975); public static readonly PrefabGUID DT_Resource_Vein_Gem_Destroy_T01 = new PrefabGUID(-1469889648); public static readonly PrefabGUID DT_Resource_Vein_Gem_Destroy_T02 = new PrefabGUID(-10059465); public static readonly PrefabGUID DT_Resource_Vein_Gem_Destroy_T03 = new PrefabGUID(542804739); public static readonly PrefabGUID DT_Resource_Vein_GhostCrystal_Banshee = new PrefabGUID(-1956128016); public static readonly PrefabGUID DT_Resource_Vein_GhostCrystal_General = new PrefabGUID(1133802461); public static readonly PrefabGUID DT_Resource_Vein_Iron_Big = new PrefabGUID(-1893322315); public static readonly PrefabGUID DT_Resource_Vein_Iron_Big_GolemCave = new PrefabGUID(276382997); public static readonly PrefabGUID DT_Resource_Vein_Iron_Big_Rare = new PrefabGUID(326968170); public static readonly PrefabGUID DT_Resource_Vein_Iron_General = new PrefabGUID(-1491248478); public static readonly PrefabGUID DT_Resource_Vein_Iron_GolemCave = new PrefabGUID(1004223833); public static readonly PrefabGUID DT_Resource_Vein_Iron_Medium = new PrefabGUID(387466945); public static readonly PrefabGUID DT_Resource_Vein_Iron_Rare = new PrefabGUID(1813396962); public static readonly PrefabGUID DT_Resource_Vein_Mech_General = new PrefabGUID(1927925502); public static readonly PrefabGUID DT_Resource_Vein_Mech_Rare = new PrefabGUID(-345957318); public static readonly PrefabGUID DT_Resource_Vein_Quartz_General = new PrefabGUID(643205912); public static readonly PrefabGUID DT_Resource_Vein_Rock_Big = new PrefabGUID(-1228204057); public static readonly PrefabGUID DT_Resource_Vein_Rock_General = new PrefabGUID(2009635259); public static readonly PrefabGUID DT_Resource_Vein_Rock_Medium = new PrefabGUID(5330421); public static readonly PrefabGUID DT_Resource_Vein_Rock_Rare = new PrefabGUID(-452263965); public static readonly PrefabGUID DT_Resource_Vein_Silver_Gem_T03 = new PrefabGUID(-1812650972); public static readonly PrefabGUID DT_Resource_Vein_Silver_General = new PrefabGUID(-511837584); public static readonly PrefabGUID DT_Resource_Vein_Sulfur_Big = new PrefabGUID(1129492150); public static readonly PrefabGUID DT_Resource_Vein_Sulfur_General = new PrefabGUID(1616699916); public static readonly PrefabGUID DT_Resource_Vein_Sulfur_Medium = new PrefabGUID(-1976281814); public static readonly PrefabGUID DT_Shared_Breakable_General_T01 = new PrefabGUID(-1976353222); public static readonly PrefabGUID DT_Shared_Breakable_General_T02 = new PrefabGUID(360494659); public static readonly PrefabGUID DT_Shared_Breakable_General_T02_GloomrotFactory = new PrefabGUID(987510593); public static readonly PrefabGUID DT_Shared_Breakable_General_T02_GloomrotSludgePool = new PrefabGUID(-572859333); public static readonly PrefabGUID DT_Shared_Breakable_General_T02_GloomrotSouth = new PrefabGUID(681163014); public static readonly PrefabGUID DT_Shared_Breakable_General_T03 = new PrefabGUID(700118419); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_GloomrotNorth = new PrefabGUID(1440216215); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_GloomrotNorth_Lab = new PrefabGUID(2001771553); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_StrongBlade = new PrefabGUID(837179796); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_StrongBlade_Carver = new PrefabGUID(-950631010); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_StrongBlade_Disembark = new PrefabGUID(-17977530); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T01 = new PrefabGUID(-142736598); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T02 = new PrefabGUID(-1189060110); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T03 = new PrefabGUID(437485622); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T04 = new PrefabGUID(-800124351); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T01 = new PrefabGUID(147048543); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T02 = new PrefabGUID(-1722545618); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T03 = new PrefabGUID(985133476); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T04 = new PrefabGUID(-762037469); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T01 = new PrefabGUID(-1323476857); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T02 = new PrefabGUID(128770731); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T03 = new PrefabGUID(-444051524); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T04 = new PrefabGUID(469007455); public static readonly PrefabGUID DT_Shared_Consume_GlassPotion_01 = new PrefabGUID(-1749706632); public static readonly PrefabGUID DT_Shared_Consume_WaterSkin_01 = new PrefabGUID(971866957); public static readonly PrefabGUID DT_Shared_Jewel_2x_Guaranteed = new PrefabGUID(-289953654); public static readonly PrefabGUID DT_Shared_Jewel_2x_High = new PrefabGUID(966772263); public static readonly PrefabGUID DT_Shared_Jewel_Storage_1x_Low = new PrefabGUID(-151875199); public static readonly PrefabGUID DT_Shared_Jewel_Unit_1x_Low = new PrefabGUID(-1737729899); public static readonly PrefabGUID DT_Shared_Jewel_VBlood_ShardBoss = new PrefabGUID(-2051981395); public static readonly PrefabGUID DT_Shared_Jewel_VBlood_Standard = new PrefabGUID(1909214548); public static readonly PrefabGUID DT_Shared_Legendary_Blood_Stash = new PrefabGUID(1363883586); public static readonly PrefabGUID DT_Shared_Legendary_Treasure_T02 = new PrefabGUID(280780077); public static readonly PrefabGUID DT_Shared_Legendary_Treasure_T03 = new PrefabGUID(1274124802); public static readonly PrefabGUID DT_Shared_Legendary_Treasure_T04 = new PrefabGUID(-1040817229); public static readonly PrefabGUID DT_Shared_Legendary_Units_EndGame_High = new PrefabGUID(-2100962531); public static readonly PrefabGUID DT_Shared_Legendary_Units_EndGame_Low = new PrefabGUID(-663779931); public static readonly PrefabGUID DT_Shared_Legendary_Units_EndGame_Unique_Low = new PrefabGUID(624475009); public static readonly PrefabGUID DT_Shared_Legendary_Units_MidGame = new PrefabGUID(1413172724); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_GateBoss_Major = new PrefabGUID(1057873848); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_GateBoss_Minor = new PrefabGUID(-1584910830); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_GateBoss_Primal = new PrefabGUID(2136385388); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T02 = new PrefabGUID(-608004540); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T03 = new PrefabGUID(-62755341); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T04 = new PrefabGUID(528903576); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T05_EndGame = new PrefabGUID(1059478030); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T06_ShardBoss = new PrefabGUID(-1004742940); public static readonly PrefabGUID DT_Shared_Tech_Reseach01_Low = new PrefabGUID(163169441); public static readonly PrefabGUID DT_Shared_Tech_Reseach02_Low = new PrefabGUID(1156245093); public static readonly PrefabGUID DT_Shared_Tech_Reseach02_Mid = new PrefabGUID(-607110889); public static readonly PrefabGUID DT_Shared_Tech_Reseach03_Low = new PrefabGUID(-1664852919); public static readonly PrefabGUID DT_Shared_Tech_Reseach03_Mid = new PrefabGUID(1556887906); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T01_Bandit = new PrefabGUID(881815799); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T02_Militia = new PrefabGUID(-1262629267); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T03_Church = new PrefabGUID(-1422597072); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T03_StrongBlade = new PrefabGUID(-1747936649); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T01 = new PrefabGUID(-1251911132); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T02 = new PrefabGUID(2018481623); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T02_GloomrotSouth = new PrefabGUID(-87450162); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T02_Noctem = new PrefabGUID(-2014180204); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03 = new PrefabGUID(574013535); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03_GloomrotNorth = new PrefabGUID(1871239961); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03_Silverlight = new PrefabGUID(1887323141); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03_StrongBlade = new PrefabGUID(1255628408); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T04 = new PrefabGUID(-1746879930); public static readonly PrefabGUID DT_Shared_Unit_Cursed_Ghost_Rank01 = new PrefabGUID(-808592560); public static readonly PrefabGUID DT_Shared_Unit_Cursed_Ghost_Rank02 = new PrefabGUID(74967214); public static readonly PrefabGUID DT_Shared_Unit_Harpy_Rank02 = new PrefabGUID(697668818); public static readonly PrefabGUID DT_Shared_Unit_Human_Elite_T07 = new PrefabGUID(-1862068051); public static readonly PrefabGUID DT_Shared_Unit_Human_Elite_T07_StrongBlade = new PrefabGUID(1894155963); public static readonly PrefabGUID DT_Shared_Unit_Human_Gloomrot_Villager = new PrefabGUID(-1060491877); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T01 = new PrefabGUID(-991578659); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T02 = new PrefabGUID(702578523); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T03 = new PrefabGUID(-1714085747); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T05 = new PrefabGUID(-1732604529); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T05_GloomRot = new PrefabGUID(653092055); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T07 = new PrefabGUID(1666714808); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T07_StrongBlade = new PrefabGUID(-1007389304); public static readonly PrefabGUID DT_Shared_Unit_Human_Town_Villager = new PrefabGUID(2032439467); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T01 = new PrefabGUID(-1797488763); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T02 = new PrefabGUID(1933301871); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T07 = new PrefabGUID(-342036396); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T07_StrongBlade = new PrefabGUID(2006825601); public static readonly PrefabGUID DT_Shared_Unit_Legion_Normal_T01 = new PrefabGUID(-2122742635); public static readonly PrefabGUID DT_Shared_Unit_Legion_Normal_T02 = new PrefabGUID(1220995205); public static readonly PrefabGUID DT_Shared_Unit_Legion_Trash_T01 = new PrefabGUID(-920573521); public static readonly PrefabGUID DT_Shared_Unit_Legion_Trash_T02 = new PrefabGUID(307475012); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Gate_Major = new PrefabGUID(1613463595); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Gate_Minor = new PrefabGUID(-188182958); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Gate_Primal = new PrefabGUID(-426637458); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Portal_Major = new PrefabGUID(-423784754); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Portal_Minor = new PrefabGUID(1277394086); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Portal_Primal = new PrefabGUID(-2056614257); public static readonly PrefabGUID DT_Shared_Unit_StrongBlade_Workers_T01 = new PrefabGUID(1017396238); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T01_Early = new PrefabGUID(-2111574931); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T01_Normal = new PrefabGUID(830431682); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T02_Early = new PrefabGUID(-1447491428); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T02_Normal = new PrefabGUID(-435504482); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T03_Normal = new PrefabGUID(-17589516); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T04_Normal = new PrefabGUID(2125107631); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T05_EndGame = new PrefabGUID(1830862057); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T06_ShardBoss = new PrefabGUID(-1455610356); public static readonly PrefabGUID DT_Storage_T01_AnimalCamp = new PrefabGUID(-600923884); public static readonly PrefabGUID DT_Storage_T01_BanditFort = new PrefabGUID(834014885); public static readonly PrefabGUID DT_Storage_T01_Blacksmith = new PrefabGUID(-1874276351); public static readonly PrefabGUID DT_Storage_T01_Bookshelf = new PrefabGUID(1306935906); public static readonly PrefabGUID DT_Storage_T01_CopperMine = new PrefabGUID(1090346288); public static readonly PrefabGUID DT_Storage_T01_General = new PrefabGUID(329347297); public static readonly PrefabGUID DT_Storage_T01_General_Magic = new PrefabGUID(476744433); public static readonly PrefabGUID DT_Storage_T01_General_Shared = new PrefabGUID(-958444180); public static readonly PrefabGUID DT_Storage_T01_LumberjackCamp = new PrefabGUID(-1642141739); public static readonly PrefabGUID DT_Storage_T01_SulfurQuarry = new PrefabGUID(536893477); public static readonly PrefabGUID DT_Storage_T01_Tailor = new PrefabGUID(971609268); public static readonly PrefabGUID DT_Storage_T02_Blacksmith = new PrefabGUID(-85146651); public static readonly PrefabGUID DT_Storage_T02_Bookshelf = new PrefabGUID(-2104093245); public static readonly PrefabGUID DT_Storage_T02_ChurchOfTheDamned = new PrefabGUID(-1141241430); public static readonly PrefabGUID DT_Storage_T02_Farms = new PrefabGUID(-482851019); public static readonly PrefabGUID DT_Storage_T02_General = new PrefabGUID(-1445316990); public static readonly PrefabGUID DT_Storage_T02_General_GloomrotFactory = new PrefabGUID(-1588025482); public static readonly PrefabGUID DT_Storage_T02_General_GloomrotSouth = new PrefabGUID(-1855658173); public static readonly PrefabGUID DT_Storage_T02_General_Shared = new PrefabGUID(-944832907); public static readonly PrefabGUID DT_Storage_T02_IronMine = new PrefabGUID(1556335378); public static readonly PrefabGUID DT_Storage_T02_Lumbermill = new PrefabGUID(-1609555866); public static readonly PrefabGUID DT_Storage_T02_Magic = new PrefabGUID(-1409448730); public static readonly PrefabGUID DT_Storage_T02_MilitiaFort = new PrefabGUID(-1680723944); public static readonly PrefabGUID DT_Storage_T02_Noctem = new PrefabGUID(1250946463); public static readonly PrefabGUID DT_Storage_T02_QuartzQuarry = new PrefabGUID(1752845456); public static readonly PrefabGUID DT_Storage_T02_Village_Fish = new PrefabGUID(946922548); public static readonly PrefabGUID DT_Storage_T03_Bookshelf = new PrefabGUID(-2086951397); public static readonly PrefabGUID DT_Storage_T03_Bookshelf_Cursed = new PrefabGUID(-1117512788); public static readonly PrefabGUID DT_Storage_T03_General = new PrefabGUID(2137904665); public static readonly PrefabGUID DT_Storage_T03_General_Church = new PrefabGUID(-72817839); public static readonly PrefabGUID DT_Storage_T03_General_Cursed = new PrefabGUID(1049541583); public static readonly PrefabGUID DT_Storage_T03_General_GloomrotNorth = new PrefabGUID(331901165); public static readonly PrefabGUID DT_Storage_T03_General_GloomrotNorth_Lab = new PrefabGUID(-1252673924); public static readonly PrefabGUID DT_Storage_T03_General_RoyalSquare = new PrefabGUID(-1900471451); public static readonly PrefabGUID DT_Storage_T03_General_RoyalSquareOutside = new PrefabGUID(2090975738); public static readonly PrefabGUID DT_Storage_T03_General_SilverMine = new PrefabGUID(199755797); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade = new PrefabGUID(1087660265); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Alchemy = new PrefabGUID(-152514359); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Bastion = new PrefabGUID(731944206); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Carver = new PrefabGUID(-229530233); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Disembark = new PrefabGUID(1832297474); public static readonly PrefabGUID DT_Storage_T03_GrapeStomperBarrel = new PrefabGUID(-83857046); public static readonly PrefabGUID DT_Storage_T03_SludgePools = new PrefabGUID(521340042); public static readonly PrefabGUID DT_Storage_T04_Bookshelf = new PrefabGUID(1999372392); public static readonly PrefabGUID DT_Storage_T04_General = new PrefabGUID(355374619); public static readonly PrefabGUID DT_Treasure_T01_General_A = new PrefabGUID(1973823804); public static readonly PrefabGUID DT_Treasure_T01_General_B = new PrefabGUID(-431407932); public static readonly PrefabGUID DT_Treasure_T01_General_Blacksmith = new PrefabGUID(-750126243); public static readonly PrefabGUID DT_Treasure_T01_General_Magic = new PrefabGUID(-968192262); public static readonly PrefabGUID DT_Treasure_T01_General_Tailoring = new PrefabGUID(-1111567797); public static readonly PrefabGUID DT_Treasure_T02_Bookshelf = new PrefabGUID(1705138857); public static readonly PrefabGUID DT_Treasure_T02_General = new PrefabGUID(-4426566); public static readonly PrefabGUID DT_Treasure_T02_General_Blacksmith = new PrefabGUID(2068722516); public static readonly PrefabGUID DT_Treasure_T02_General_ChurchOfTheDamned = new PrefabGUID(1601079450); public static readonly PrefabGUID DT_Treasure_T02_General_Farms = new PrefabGUID(1865006549); public static readonly PrefabGUID DT_Treasure_T02_General_GloomrotFactory = new PrefabGUID(449906310); public static readonly PrefabGUID DT_Treasure_T02_General_GloomrotSouth = new PrefabGUID(1244330298); public static readonly PrefabGUID DT_Treasure_T02_General_Magic = new PrefabGUID(-1097468458); public static readonly PrefabGUID DT_Treasure_T02_General_MilitiaFort = new PrefabGUID(-1169165410); public static readonly PrefabGUID DT_Treasure_T02_General_Noctem = new PrefabGUID(-2136008561); public static readonly PrefabGUID DT_Treasure_T02_General_Tailoring = new PrefabGUID(569386427); public static readonly PrefabGUID DT_Treasure_T02_IronMines = new PrefabGUID(1123992416); public static readonly PrefabGUID DT_Treasure_T03_General = new PrefabGUID(-607181916); public static readonly PrefabGUID DT_Treasure_T03_General_Blacksmith = new PrefabGUID(1287012928); public static readonly PrefabGUID DT_Treasure_T03_General_Cursed = new PrefabGUID(1593152159); public static readonly PrefabGUID DT_Treasure_T03_General_GloomrotNorth = new PrefabGUID(2106221515); public static readonly PrefabGUID DT_Treasure_T03_General_Magic = new PrefabGUID(784378299); public static readonly PrefabGUID DT_Treasure_T03_General_RoyalSquare = new PrefabGUID(-1292453098); public static readonly PrefabGUID DT_Treasure_T03_General_Silverlight = new PrefabGUID(-1990393138); public static readonly PrefabGUID DT_Treasure_T03_General_SilverMine = new PrefabGUID(-2045660620); public static readonly PrefabGUID DT_Treasure_T03_General_SpiderCavern = new PrefabGUID(-793105753); public static readonly PrefabGUID DT_Treasure_T03_General_StrongBlade = new PrefabGUID(1421307326); public static readonly PrefabGUID DT_Treasure_T03_General_Tailoring = new PrefabGUID(1131805965); public static readonly PrefabGUID DT_Treasure_T04_General = new PrefabGUID(1814990067); public static readonly PrefabGUID DT_Treasure_T04_General_Blacksmith = new PrefabGUID(797976026); public static readonly PrefabGUID DT_Treasure_T04_General_Magic = new PrefabGUID(1053354224); public static readonly PrefabGUID DT_Treasure_T04_General_Tailoring = new PrefabGUID(-1762757506); public static readonly PrefabGUID DT_Unit_Corrupted_Bear = new PrefabGUID(-2094923684); public static readonly PrefabGUID DT_Unit_Corrupted_Crow = new PrefabGUID(-564521621); public static readonly PrefabGUID DT_Unit_Corrupted_Deer = new PrefabGUID(897170906); public static readonly PrefabGUID DT_Unit_Corrupted_Wolf = new PrefabGUID(1601565820); public static readonly PrefabGUID DT_Unit_Cursed_Bear = new PrefabGUID(-1703387309); public static readonly PrefabGUID DT_Unit_Cursed_Creature_Spider_Rank01 = new PrefabGUID(-751010131); public static readonly PrefabGUID DT_Unit_Cursed_Creature_Spider_Rank02 = new PrefabGUID(498560037); public static readonly PrefabGUID DT_Unit_Cursed_Creature_Werewolf = new PrefabGUID(-728620058); public static readonly PrefabGUID DT_Unit_Cursed_MonsterToad = new PrefabGUID(-1929056981); public static readonly PrefabGUID DT_Unit_Cursed_Mosquito = new PrefabGUID(-993326673); public static readonly PrefabGUID DT_Unit_Cursed_Nightlurker = new PrefabGUID(-1849214024); public static readonly PrefabGUID DT_Unit_Cursed_ToadSpitter = new PrefabGUID(-929463755); public static readonly PrefabGUID DT_Unit_Cursed_Witch = new PrefabGUID(297346186); public static readonly PrefabGUID DT_Unit_Cursed_Wolf = new PrefabGUID(835924128); public static readonly PrefabGUID DT_Unit_Cursed_Worm = new PrefabGUID(1676869781); public static readonly PrefabGUID DT_Unit_Demon = new PrefabGUID(-325161796); public static readonly PrefabGUID DT_Unit_Dunley_Church_Rank01 = new PrefabGUID(6420838); public static readonly PrefabGUID DT_Unit_Dunley_Church_Rank02 = new PrefabGUID(158785619); public static readonly PrefabGUID DT_Unit_Dunley_Church_Trash = new PrefabGUID(1803308844); public static readonly PrefabGUID DT_Unit_Dunley_Creature_Cow = new PrefabGUID(541451364); public static readonly PrefabGUID DT_Unit_Dunley_Creature_General = new PrefabGUID(-1236501040); public static readonly PrefabGUID DT_Unit_Dunley_Creature_Pig = new PrefabGUID(-89843525); public static readonly PrefabGUID DT_Unit_Dunley_Farmers = new PrefabGUID(-1151186724); public static readonly PrefabGUID DT_Unit_Dunley_Militia_Rank01 = new PrefabGUID(-810965603); public static readonly PrefabGUID DT_Unit_Dunley_Militia_Rank02 = new PrefabGUID(-729874259); public static readonly PrefabGUID DT_Unit_Dunley_Militia_Rank03 = new PrefabGUID(1222326002); public static readonly PrefabGUID DT_Unit_Dunley_RockElemental = new PrefabGUID(1042687092); public static readonly PrefabGUID DT_Unit_Dunley_Scarecrow = new PrefabGUID(-2046528903); public static readonly PrefabGUID DT_Unit_Dunley_Scarecrow_Dummy = new PrefabGUID(-1525496782); public static readonly PrefabGUID DT_Unit_Dunley_Undead_Normal_Rank01 = new PrefabGUID(-1252580640); public static readonly PrefabGUID DT_Unit_Dunley_Undead_Normal_Rank02 = new PrefabGUID(891253714); public static readonly PrefabGUID DT_Unit_Dunley_Undead_Trash_Rank01 = new PrefabGUID(-1613225106); public static readonly PrefabGUID DT_Unit_Dunley_Villagers = new PrefabGUID(997800352); public static readonly PrefabGUID DT_Unit_Farbane_Bandit_Normal_Rank01 = new PrefabGUID(2057203303); public static readonly PrefabGUID DT_Unit_Farbane_Bandit_Normal_Rank02 = new PrefabGUID(1067194618); public static readonly PrefabGUID DT_Unit_Farbane_Bandit_WoodCutter = new PrefabGUID(-1244119862); public static readonly PrefabGUID DT_Unit_Farbane_CopperGolem = new PrefabGUID(-1386605226); public static readonly PrefabGUID DT_Unit_Farbane_Creature_Bear = new PrefabGUID(113668998); public static readonly PrefabGUID DT_Unit_Farbane_Creature_Deer = new PrefabGUID(200001274); public static readonly PrefabGUID DT_Unit_Farbane_Creature_ForestCrow = new PrefabGUID(1758005653); public static readonly PrefabGUID DT_Unit_Farbane_Creature_ForestSpider = new PrefabGUID(1977850073); public static readonly PrefabGUID DT_Unit_Farbane_Creature_General = new PrefabGUID(1618997668); public static readonly PrefabGUID DT_Unit_Farbane_Creature_GiantRat = new PrefabGUID(-217442927); public static readonly PrefabGUID DT_Unit_Farbane_Creature_GraveyardCrow = new PrefabGUID(-1563252515); public static readonly PrefabGUID DT_Unit_Farbane_Creature_Moose = new PrefabGUID(949107101); public static readonly PrefabGUID DT_Unit_Farbane_IronGolem = new PrefabGUID(-1833617477); public static readonly PrefabGUID DT_Unit_Farbane_Mantrap = new PrefabGUID(-188826639); public static readonly PrefabGUID DT_Unit_Farbane_Rare_WickedRat = new PrefabGUID(-1772066863); public static readonly PrefabGUID DT_Unit_Farbane_SkeletonGolem = new PrefabGUID(-644899121); public static readonly PrefabGUID DT_Unit_Farbane_StoneGolem = new PrefabGUID(-443137065); public static readonly PrefabGUID DT_Unit_Farbane_Treant = new PrefabGUID(698427411); public static readonly PrefabGUID DT_Unit_Farbane_Undead_Normal_Rank01 = new PrefabGUID(875214906); public static readonly PrefabGUID DT_Unit_Farbane_Undead_Normal_Rank02 = new PrefabGUID(109676916); public static readonly PrefabGUID DT_Unit_Farbane_Undead_Trash_Rank01 = new PrefabGUID(1954673959); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_Creature_T01 = new PrefabGUID(-275522567); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_DireBear_T01 = new PrefabGUID(1386511898); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_DireRat_T01 = new PrefabGUID(-348808090); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_DireWolf_T01 = new PrefabGUID(-952119416); public static readonly PrefabGUID DT_Unit_Fish_Piranha = new PrefabGUID(-476884784); public static readonly PrefabGUID DT_Unit_Gloomrot_Mech_Rank01 = new PrefabGUID(825228519); public static readonly PrefabGUID DT_Unit_Gloomrot_Mech_Rank02 = new PrefabGUID(-1663330146); public static readonly PrefabGUID DT_Unit_Gloomrot_Mech_Rank03 = new PrefabGUID(-116432822); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Bear = new PrefabGUID(78942656); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Deer = new PrefabGUID(1958987992); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Golem = new PrefabGUID(1609599355); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Golem_PrisonVariant = new PrefabGUID(-916730493); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Moose = new PrefabGUID(302238558); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Rat = new PrefabGUID(-712272657); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Spitter = new PrefabGUID(-1121990122); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Wolf = new PrefabGUID(-573603385); public static readonly PrefabGUID DT_Unit_Gloomrot_Rank01 = new PrefabGUID(-1024925083); public static readonly PrefabGUID DT_Unit_Gloomrot_Rank02 = new PrefabGUID(-1174421397); public static readonly PrefabGUID DT_Unit_Gloomrot_Villager = new PrefabGUID(-165521883); public static readonly PrefabGUID DT_Unit_Hallowed_Creature_Bear_Arctic = new PrefabGUID(-1324178436); public static readonly PrefabGUID DT_Unit_Hallowed_Creature_Moose_Arctic = new PrefabGUID(-2071907671); public static readonly PrefabGUID DT_Unit_Hallowed_Creature_Wolf_Arctic = new PrefabGUID(1378499548); public static readonly PrefabGUID DT_Unit_Necromancer_UnitAndTomb = new PrefabGUID(1842801503); public static readonly PrefabGUID DT_Unit_NetherDemon_Alchemy_T02 = new PrefabGUID(611831222); public static readonly PrefabGUID DT_Unit_NetherDemon_Knowledge_T01 = new PrefabGUID(1734056745); public static readonly PrefabGUID DT_Unit_NetherDemon_Knowledge_T02 = new PrefabGUID(1477065648); public static readonly PrefabGUID DT_Unit_NetherDemon_Minerals_T01 = new PrefabGUID(1019895494); public static readonly PrefabGUID DT_Unit_NetherDemon_Minerals_T02 = new PrefabGUID(-149079634); public static readonly PrefabGUID DT_Unit_NetherDemon_Seeds_T01 = new PrefabGUID(1630515133); public static readonly PrefabGUID DT_Unit_NetherDemon_Weapon_T01 = new PrefabGUID(2022294238); public static readonly PrefabGUID DT_Unit_NetherDemon_Weapon_T02 = new PrefabGUID(-410818462); public static readonly PrefabGUID DT_Unit_Noctem_Creature_NoctemCrow = new PrefabGUID(-530014440); public static readonly PrefabGUID DT_Unit_Noctem_WItheredVampire = new PrefabGUID(-1147731982); public static readonly PrefabGUID DT_Unit_Relic_Behemoth = new PrefabGUID(845132690); public static readonly PrefabGUID DT_Unit_Relic_Behemoth_Unique = new PrefabGUID(71657148); public static readonly PrefabGUID DT_Unit_Relic_Dracula_Unique = new PrefabGUID(-191917509); public static readonly PrefabGUID DT_Unit_Relic_Manticore = new PrefabGUID(-2091539428); public static readonly PrefabGUID DT_Unit_Relic_Manticore_Unique = new PrefabGUID(-454715368); public static readonly PrefabGUID DT_Unit_Relic_Monster = new PrefabGUID(1252550842); public static readonly PrefabGUID DT_Unit_Relic_Monster_Unique = new PrefabGUID(492631484); public static readonly PrefabGUID DT_Unit_Relic_Morgana_Unique = new PrefabGUID(1273222726); public static readonly PrefabGUID DT_Unit_Relic_Paladin = new PrefabGUID(1167843091); public static readonly PrefabGUID DT_Unit_Relic_Paladin_Unique = new PrefabGUID(-1629745461); public static readonly PrefabGUID DT_Unit_Silver_Harpy_Rank01 = new PrefabGUID(226592651); public static readonly PrefabGUID DT_Unit_Silver_Harpy_Rank02 = new PrefabGUID(-1647082571); public static readonly PrefabGUID DT_Unit_Silver_Town_Rank01 = new PrefabGUID(-1943982529); public static readonly PrefabGUID DT_Unit_Silver_Town_Rank02 = new PrefabGUID(373677249); public static readonly PrefabGUID DT_Unit_Silver_Town_Rank03 = new PrefabGUID(162031204); public static readonly PrefabGUID DT_Unit_Strongblade_CorruptedTreant = new PrefabGUID(-465235630); public static readonly PrefabGUID DT_Unit_StrongBlade_EmeryElemental = new PrefabGUID(-887571934); public static readonly PrefabGUID DT_Unit_StrongBlade_EmeryGolem = new PrefabGUID(-264725405); public static readonly PrefabGUID DT_Unit_Strongblade_GoldGolem = new PrefabGUID(806336876); public static readonly PrefabGUID DT_Unit_StrongBlade_Mantrap = new PrefabGUID(1387969144); public static readonly PrefabGUID DT_Unit_StrongBlade_Mantrap_XL = new PrefabGUID(-1869477551); public static readonly PrefabGUID DT_Unit_StrongBlade_Rank01 = new PrefabGUID(-438086091); public static readonly PrefabGUID DT_Unit_StrongBlade_Rank02 = new PrefabGUID(2115747457); public static readonly PrefabGUID DT_Unit_StrongBlade_Rank03 = new PrefabGUID(-1593943953); public static readonly PrefabGUID DT_Unit_Undead_Banshee = new PrefabGUID(194466860); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Banshee = new PrefabGUID(1126579847); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Ghoul = new PrefabGUID(-1373492135); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Necromancer = new PrefabGUID(1608313061); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Skeleton = new PrefabGUID(-473107370); public static readonly PrefabGUID DT_Unit_VBlood_BishopOfDunley_MagicSource = new PrefabGUID(402308651); public static readonly PrefabGUID DT_Unit_VBlood_Bomber_Weapon = new PrefabGUID(152807706); public static readonly PrefabGUID DT_Unit_VBlood_Geomancer_MagicSource = new PrefabGUID(-2136955642); public static readonly PrefabGUID DT_Unit_VBlood_Infiltrator_Armor = new PrefabGUID(1639850227); public static readonly PrefabGUID DT_Unit_VBlood_Jade_Weapon = new PrefabGUID(-847478692); public static readonly PrefabGUID DT_Unit_VBlood_LightArrow_Weapon = new PrefabGUID(-857120861); public static readonly PrefabGUID DT_Unit_VBlood_MilitiaLeader_Armor = new PrefabGUID(-546249947); public static readonly PrefabGUID DT_Unit_VBlood_Priest_MagicSource = new PrefabGUID(-293956848); public static readonly PrefabGUID DT_Unit_VBlood_Purifier_Armor = new PrefabGUID(-115385631); public static readonly PrefabGUID DT_Unit_VBlood_Stalker_Armor = new PrefabGUID(1084892181); public static readonly PrefabGUID DT_Unit_VBlood_VampireHunter_Headgear = new PrefabGUID(843971231); public static readonly PrefabGUID DT_Unit_VerminNest_Spiderling = new PrefabGUID(-2086173662); public static readonly PrefabGUID DTS_Elite_Bandit_Active = new PrefabGUID(-1357798592); public static readonly PrefabGUID DTS_Everyday_AllDay = new PrefabGUID(482895609); public static readonly PrefabGUID DTS_Everyday_Day = new PrefabGUID(-684975497); public static readonly PrefabGUID DTS_Everyday_Evening = new PrefabGUID(-222879949); public static readonly PrefabGUID DTS_Everyday_Morning = new PrefabGUID(-214564695); public static readonly PrefabGUID DTS_Everyday_Night = new PrefabGUID(2115694930); public static readonly PrefabGUID DTS_VampireHunters_Active = new PrefabGUID(863827908); public static readonly PrefabGUID Dummy_Trigger_RandomUnitSpawn_BloodSoul_T01 = new PrefabGUID(-2084736434); public static readonly PrefabGUID Dummy_Trigger_RandomUnitSpawn_BloodSoul_T02 = new PrefabGUID(-1129363767); public static readonly PrefabGUID DyableWindowsBuildMenuGroup = new PrefabGUID(809247413); public static readonly PrefabGUID DyeCollection_Biomes = new PrefabGUID(1962056086); public static readonly PrefabGUID DyeCollection_CurtainRipped = new PrefabGUID(2144002412); public static readonly PrefabGUID DyeCollection_Default = new PrefabGUID(-1386881146); public static readonly PrefabGUID DyeCollection_Default_CastleParticles01 = new PrefabGUID(1360647732); public static readonly PrefabGUID DyeCollection_Default_Marble = new PrefabGUID(9976084); public static readonly PrefabGUID DyeCollection_Default_Metal = new PrefabGUID(-592971806); public static readonly PrefabGUID DyeCollection_Light = new PrefabGUID(75478852); public static readonly PrefabGUID DyeCollection_LightSources = new PrefabGUID(1937922011); public static readonly PrefabGUID DyeCollection_SilverGoldWood = new PrefabGUID(-92813615); public static readonly PrefabGUID DyeCollection_Wood_Exterior = new PrefabGUID(-110790076); public static readonly PrefabGUID DyeSwatch_Color_Banners01_Fabric = new PrefabGUID(1957504428); public static readonly PrefabGUID DyeSwatch_Color_CastleFurnitureTints01_Fabric = new PrefabGUID(1311039488); public static readonly PrefabGUID DyeSwatch_Color_CurtainRipped01 = new PrefabGUID(-1800437511); public static readonly PrefabGUID DyeSwatch_Color_Curtains01_Fabric = new PrefabGUID(1905382819); public static readonly PrefabGUID DyeSwatch_Color_Default_CastleParticles01 = new PrefabGUID(1546040671); public static readonly PrefabGUID DyeSwatch_Color_Default_Fabric = new PrefabGUID(1477653874); public static readonly PrefabGUID DyeSwatch_Color_Default_Glass = new PrefabGUID(-426080229); public static readonly PrefabGUID DyeSwatch_Color_Default_Light = new PrefabGUID(1371655305); public static readonly PrefabGUID DyeSwatch_Color_Default_Metal = new PrefabGUID(1502811106); public static readonly PrefabGUID DyeSwatch_Color_Default_TailorFloor01 = new PrefabGUID(-1786333437); public static readonly PrefabGUID DyeSwatch_Color_Default_TailorFloor02 = new PrefabGUID(330868378); public static readonly PrefabGUID DyeSwatch_Color_Default_TailorFloor03 = new PrefabGUID(1767919182); public static readonly PrefabGUID DyeSwatch_Color_Default_Wood = new PrefabGUID(-355048464); public static readonly PrefabGUID DyeSwatch_Color_Garden_Wisteria01 = new PrefabGUID(1988241282); public static readonly PrefabGUID DyeSwatch_Color_Gothic_Window01_Glass = new PrefabGUID(1817456314); public static readonly PrefabGUID DyeSwatch_Color_Gothic_Window02_Glass = new PrefabGUID(1331823499); public static readonly PrefabGUID DyeSwatch_Color_Gothic_Window03_Glass = new PrefabGUID(-1118320747); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Curtains01_Fabric = new PrefabGUID(-602659164); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Glass01 = new PrefabGUID(888401290); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_MagicalBalls01 = new PrefabGUID(-527058323); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Marble01 = new PrefabGUID(-881116857); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Marble01_UDIM = new PrefabGUID(1146071772); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_ModularCarpets = new PrefabGUID(-1408736701); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Sofas01 = new PrefabGUID(1830415904); public static readonly PrefabGUID DyeSwatch_Color_Wood_Exterior = new PrefabGUID(743769356); public static readonly PrefabGUID DyeSwatch_FX_Candle_Materials = new PrefabGUID(1263024964); public static readonly PrefabGUID DyeSwatch_FX_Fire_Flames = new PrefabGUID(-1761179250); public static readonly PrefabGUID DyeSwatch_FX_Fire_Glow = new PrefabGUID(365319245); public static readonly PrefabGUID DyeSwatch_Textures_Banners01_Fabric = new PrefabGUID(1075450445); public static readonly PrefabGUID DyeSwatch_Textures_CabalVases_Color = new PrefabGUID(-1671749800); public static readonly PrefabGUID DyeSwatch_Textures_Carpets01_Fabric = new PrefabGUID(1844297844); public static readonly PrefabGUID DyeSwatch_Textures_CastleFloorOutdoor02_Color = new PrefabGUID(1488888181); public static readonly PrefabGUID DyeSwatch_Textures_CastleFloorOutdoor03_Color = new PrefabGUID(-1795291291); public static readonly PrefabGUID DyeSwatch_Textures_CastleFloorOutdoorGrass01_Color = new PrefabGUID(-252860726); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms_Banner_Color = new PrefabGUID(2070460603); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms_Symbol_Color = new PrefabGUID(135844611); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms02_Banner_Color = new PrefabGUID(2142973078); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms02_Symbol_Color = new PrefabGUID(-1306131544); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms03_Banner_Color = new PrefabGUID(-284246998); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms03_Symbol_Color = new PrefabGUID(-1457272300); public static readonly PrefabGUID DyeSwatch_Textures_CordialRugs_Color = new PrefabGUID(-1315655439); public static readonly PrefabGUID DyeSwatch_Textures_CrystalLamps_Color = new PrefabGUID(1347814641); public static readonly PrefabGUID DyeSwatch_Textures_Curtains01_Fabric = new PrefabGUID(-364088137); public static readonly PrefabGUID DyeSwatch_Textures_Doorbell01_Color = new PrefabGUID(456431078); public static readonly PrefabGUID DyeSwatch_Textures_FancyRugs_Color = new PrefabGUID(1308372330); public static readonly PrefabGUID DyeSwatch_Textures_FancyRugs2_Color = new PrefabGUID(-1380865884); public static readonly PrefabGUID DyeSwatch_Textures_FancyVases_Gold_Color = new PrefabGUID(1397527096); public static readonly PrefabGUID DyeSwatch_Textures_FancyVases_Silver_Color = new PrefabGUID(-311257604); public static readonly PrefabGUID DyeSwatch_Textures_GothicRugs_Color = new PrefabGUID(1778275305); public static readonly PrefabGUID DyeSwatch_Textures_GothicRugs2_Color = new PrefabGUID(-1582209766); public static readonly PrefabGUID DyeSwatch_Textures_Hedges_Color = new PrefabGUID(-896547351); public static readonly PrefabGUID DyeSwatch_Textures_MarbleVases_Color = new PrefabGUID(685796746); public static readonly PrefabGUID DyeSwatch_Textures_MetalVases_Color = new PrefabGUID(-2138794869); public static readonly PrefabGUID DyeSwatch_Textures_MetalWood_decor = new PrefabGUID(1678804859); public static readonly PrefabGUID DyeSwatch_Textures_MetalWood_decor2 = new PrefabGUID(1245357845); public static readonly PrefabGUID DyeSwatch_Textures_MetalWood_trims = new PrefabGUID(-1095568350); public static readonly PrefabGUID DyeSwatch_Textures_PaintingFrames = new PrefabGUID(-1364093516); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Carpets01_Color = new PrefabGUID(218304212); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Carpets02_Color = new PrefabGUID(1750255925); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Chairs01_Color = new PrefabGUID(2013109059); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_FloorPillows_Color = new PrefabGUID(530662417); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Lamps_Color = new PrefabGUID(1980306918); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_PrisonCell_Color = new PrefabGUID(-1462114187); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Tables_Color = new PrefabGUID(-1396573132); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Throne_texture = new PrefabGUID(1673392018); public static readonly PrefabGUID DyeSwatch_Textures_Tablecloth01_Fabric = new PrefabGUID(989505523); public static readonly PrefabGUID DyeSwatch_Textures_Wallpapers01_Fabric = new PrefabGUID(765687286); public static readonly PrefabGUID Dynamic_AnimalGraintank01 = new PrefabGUID(1086771358); public static readonly PrefabGUID Dynamic_Animalpen_Gate01 = new PrefabGUID(-984390644); public static readonly PrefabGUID Dynamic_AnimalWatertank01 = new PrefabGUID(1271895314); public static readonly PrefabGUID Dynamic_Anvil_Destory01 = new PrefabGUID(-1467280229); public static readonly PrefabGUID Dynamic_ArcheryTarget01 = new PrefabGUID(-527783404); public static readonly PrefabGUID Dynamic_Bandit_Banner01 = new PrefabGUID(1892346071); public static readonly PrefabGUID Dynamic_Bandit_Banner02 = new PrefabGUID(1098052565); public static readonly PrefabGUID Dynamic_Bandit_Barricade_01 = new PrefabGUID(-396981743); public static readonly PrefabGUID Dynamic_Bandit_Bonfire01 = new PrefabGUID(1584282990); public static readonly PrefabGUID Dynamic_Bandit_Bonfire02 = new PrefabGUID(-1545958360); public static readonly PrefabGUID Dynamic_Bandit_Chair01 = new PrefabGUID(1926372834); public static readonly PrefabGUID Dynamic_Bandit_Gate01 = new PrefabGUID(-751061787); public static readonly PrefabGUID Dynamic_Bandit_SmallTent01 = new PrefabGUID(-1089570335); public static readonly PrefabGUID Dynamic_Bandit_SmallTent02 = new PrefabGUID(-870699449); public static readonly PrefabGUID Dynamic_Bandit_TargetDummy01 = new PrefabGUID(-140896529); public static readonly PrefabGUID Dynamic_Bandit_TargetDummy02 = new PrefabGUID(1190038041); public static readonly PrefabGUID Dynamic_Bandit_WeaponRack01 = new PrefabGUID(-702480070); public static readonly PrefabGUID Dynamic_Bandit_WeaponRack02 = new PrefabGUID(985845921); public static readonly PrefabGUID Dynamic_Bandit_Wood01 = new PrefabGUID(377406377); public static readonly PrefabGUID Dynamic_Bandit_WoodenCageDoor01 = new PrefabGUID(-1501899954); public static readonly PrefabGUID Dynamic_BanditBanner01 = new PrefabGUID(-1033344247); public static readonly PrefabGUID Dynamic_BanditFortress_Bench01 = new PrefabGUID(-1569079864); public static readonly PrefabGUID Dynamic_BanditFortress_Stairs01 = new PrefabGUID(207890229); public static readonly PrefabGUID Dynamic_BanditFortress_Stairs02 = new PrefabGUID(1685808660); public static readonly PrefabGUID Dynamic_BanditTailor_Hides02 = new PrefabGUID(1548087703); public static readonly PrefabGUID Dynamic_BanditTailor_Hides03 = new PrefabGUID(1709577897); public static readonly PrefabGUID Dynamic_BanditTailor_Hides04 = new PrefabGUID(1443243928); public static readonly PrefabGUID Dynamic_BanditTailor_HidesBeam01 = new PrefabGUID(734876611); public static readonly PrefabGUID Dynamic_BanditTailor_SkinningTable01 = new PrefabGUID(1787164331); public static readonly PrefabGUID Dynamic_BanditTailor_TanningRack01 = new PrefabGUID(-1638455956); public static readonly PrefabGUID Dynamic_BanditTailor_TanningRack02 = new PrefabGUID(-1562433345); public static readonly PrefabGUID Dynamic_BanditTailor_TarBucket01 = new PrefabGUID(46279698); public static readonly PrefabGUID Dynamic_BanditTailor_TarBucket02 = new PrefabGUID(391254323); public static readonly PrefabGUID Dynamic_BarCounter01 = new PrefabGUID(1778133133); public static readonly PrefabGUID Dynamic_BarCounter02 = new PrefabGUID(1489199008); public static readonly PrefabGUID Dynamic_Barrel_Destory01 = new PrefabGUID(-1737754071); public static readonly PrefabGUID Dynamic_Barrel_Destory01_ForgeMaster01 = new PrefabGUID(1574308556); public static readonly PrefabGUID Dynamic_Barrel_Destory01_ForgeMaster02 = new PrefabGUID(-1680159870); public static readonly PrefabGUID Dynamic_Barrel_Destory01_NoLid = new PrefabGUID(-423507443); public static readonly PrefabGUID Dynamic_Barrel_DestoryOak01 = new PrefabGUID(-1635659418); public static readonly PrefabGUID Dynamic_Barrel_DestoryOak01_NoLid = new PrefabGUID(-1149553586); public static readonly PrefabGUID Dynamic_Battlement_Pillar01ShatterGroup = new PrefabGUID(1030377094); public static readonly PrefabGUID Dynamic_Battlement_Pillar01ShatterGroup_Noctem = new PrefabGUID(1925541125); public static readonly PrefabGUID Dynamic_Battlement_Pillar02ShatterGroup = new PrefabGUID(-1358618991); public static readonly PrefabGUID Dynamic_Battlement_Pillar02ShatterGroup_Noctem = new PrefabGUID(2055991204); public static readonly PrefabGUID Dynamic_Battlement_Pillar03ShatterGroup = new PrefabGUID(-1536990813); public static readonly PrefabGUID Dynamic_Battlement_Pillar03ShatterGroup_Noctem = new PrefabGUID(1321483971); public static readonly PrefabGUID Dynamic_Battlement_Pillar04ShatterGroup = new PrefabGUID(2102168806); public static readonly PrefabGUID Dynamic_Battlement_Pillar04ShatterGroup_Noctem = new PrefabGUID(1053708805); public static readonly PrefabGUID Dynamic_Battlement_Pillar05ShatterGroup = new PrefabGUID(783663360); public static readonly PrefabGUID Dynamic_Battlement_Pillar05ShatterGroup_Noctem = new PrefabGUID(1082147443); public static readonly PrefabGUID Dynamic_Battlement_Wall_End01ShatterGroup = new PrefabGUID(-224858630); public static readonly PrefabGUID Dynamic_Battlement_Wall01ShatterGroup = new PrefabGUID(-2056675794); public static readonly PrefabGUID Dynamic_Battlement_Wall02ShatterGroup = new PrefabGUID(-151635550); public static readonly PrefabGUID Dynamic_Battlement_Wall03ShatterGroup = new PrefabGUID(458548879); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar01ShatterGroup = new PrefabGUID(-1104984593); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar02ShatterGroup = new PrefabGUID(1684180923); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar03ShatterGroup = new PrefabGUID(40971045); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar04ShatterGroup = new PrefabGUID(1975605689); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar05ShatterGroup = new PrefabGUID(-1613348599); public static readonly PrefabGUID Dynamic_BattlementCursed_Wall01ShatterGroup = new PrefabGUID(101455271); public static readonly PrefabGUID Dynamic_BattlementCursed_Wall02ShatterGroup = new PrefabGUID(1328208739); public static readonly PrefabGUID Dynamic_BattlementCursed_Wall03ShatterGroup = new PrefabGUID(1351269912); public static readonly PrefabGUID Dynamic_BedFine01 = new PrefabGUID(-642820823); public static readonly PrefabGUID Dynamic_BedSimple01 = new PrefabGUID(1363628421); public static readonly PrefabGUID Dynamic_Beehive01 = new PrefabGUID(190555136); public static readonly PrefabGUID Dynamic_BeerBarrel_Destory01 = new PrefabGUID(1519534746); public static readonly PrefabGUID Dynamic_Bellow_Destory01 = new PrefabGUID(1084774354); public static readonly PrefabGUID Dynamic_Blacksmith_Table_Destory01 = new PrefabGUID(-399565792); public static readonly PrefabGUID Dynamic_Brazier_Bandit01 = new PrefabGUID(-380643934); public static readonly PrefabGUID Dynamic_Brazier_Elris01 = new PrefabGUID(835363541); public static readonly PrefabGUID Dynamic_Brazier_Militia01 = new PrefabGUID(1831192217); public static readonly PrefabGUID Dynamic_Brazier_SilverHills_Breakable01 = new PrefabGUID(998090717); public static readonly PrefabGUID Dynamic_BunkbedVar01 = new PrefabGUID(-510528648); public static readonly PrefabGUID Dynamic_BunkbedVar02 = new PrefabGUID(-213112222); public static readonly PrefabGUID Dynamic_BunkbedVar03 = new PrefabGUID(1885918652); public static readonly PrefabGUID Dynamic_Castle_Fence_Iron01 = new PrefabGUID(1881201265); public static readonly PrefabGUID Dynamic_Castle_Fence_IronGate01 = new PrefabGUID(131638455); public static readonly PrefabGUID Dynamic_Catacomb_Brazier01 = new PrefabGUID(-2015774183); public static readonly PrefabGUID Dynamic_Church_bench01 = new PrefabGUID(760875747); public static readonly PrefabGUID Dynamic_Church_CandleHolder01 = new PrefabGUID(1606046656); public static readonly PrefabGUID Dynamic_Church_CandleHolder02 = new PrefabGUID(2041403769); public static readonly PrefabGUID Dynamic_Church_Fence01 = new PrefabGUID(1482372114); public static readonly PrefabGUID Dynamic_Crate_Destory01 = new PrefabGUID(-914566303); public static readonly PrefabGUID Dynamic_CrateLarge_Destory01 = new PrefabGUID(-1509057274); public static readonly PrefabGUID Dynamic_CrateOak_Destory01 = new PrefabGUID(1043963275); public static readonly PrefabGUID Dynamic_CrateOakLarge_Destory01 = new PrefabGUID(1494095660); public static readonly PrefabGUID Dynamic_CursedForest_AltarLantern_01 = new PrefabGUID(1707639505); public static readonly PrefabGUID Dynamic_CursedForest_AltarLantern_02 = new PrefabGUID(-418864724); public static readonly PrefabGUID Dynamic_CursedForest_AltarLantern_03 = new PrefabGUID(1057347553); public static readonly PrefabGUID Dynamic_CursedForest_AltarStub01 = new PrefabGUID(1114316751); public static readonly PrefabGUID Dynamic_Destructible_DraculasCastle_Pillar01 = new PrefabGUID(1457203023); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Clean01 = new PrefabGUID(-2138539114); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Ruin01 = new PrefabGUID(602354452); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Ruin02 = new PrefabGUID(-178874916); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Ruin03 = new PrefabGUID(-2015107489); public static readonly PrefabGUID Dynamic_Elris_Bag_01 = new PrefabGUID(646782579); public static readonly PrefabGUID Dynamic_Elris_Bag_02 = new PrefabGUID(894221760); public static readonly PrefabGUID Dynamic_Elris_Bag_03 = new PrefabGUID(-1641495452); public static readonly PrefabGUID Dynamic_Elris_Bags_01 = new PrefabGUID(-1241395961); public static readonly PrefabGUID Dynamic_Elris_Bed_01 = new PrefabGUID(1063753566); public static readonly PrefabGUID Dynamic_Elris_Bench_01 = new PrefabGUID(1250708573); public static readonly PrefabGUID Dynamic_Elris_CookingFireplace01 = new PrefabGUID(-1980569507); public static readonly PrefabGUID Dynamic_Elris_Fishpole_01 = new PrefabGUID(579734563); public static readonly PrefabGUID Dynamic_Elris_Fishpole_02 = new PrefabGUID(-1448115504); public static readonly PrefabGUID Dynamic_Elris_Hangingfish_01 = new PrefabGUID(783659627); public static readonly PrefabGUID Dynamic_Elris_Hidebag_01 = new PrefabGUID(1903287583); public static readonly PrefabGUID Dynamic_Elris_Sled01 = new PrefabGUID(-67723803); public static readonly PrefabGUID Dynamic_Elris_Sled02 = new PrefabGUID(3826923); public static readonly PrefabGUID Dynamic_Elris_Sled03 = new PrefabGUID(258865468); public static readonly PrefabGUID Dynamic_Elris_Stool_01 = new PrefabGUID(1024853637); public static readonly PrefabGUID Dynamic_Elris_Stool_02 = new PrefabGUID(335113069); public static readonly PrefabGUID Dynamic_Elris_Table_01 = new PrefabGUID(373144099); public static readonly PrefabGUID Dynamic_Elris_Table_02 = new PrefabGUID(-572614181); public static readonly PrefabGUID Dynamic_Elris_Table_03 = new PrefabGUID(-1939878847); public static readonly PrefabGUID Dynamic_FarmRuin_Pillar01 = new PrefabGUID(822146782); public static readonly PrefabGUID Dynamic_FarmRuin_Pillar02 = new PrefabGUID(-953237463); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Pillar01 = new PrefabGUID(910871983); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Pillar02 = new PrefabGUID(-15760090); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Wall01 = new PrefabGUID(531052136); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Wall03 = new PrefabGUID(975887975); public static readonly PrefabGUID Dynamic_FarmRuin_Wall01 = new PrefabGUID(250699641); public static readonly PrefabGUID Dynamic_FarmRuin_Wall02 = new PrefabGUID(-430641886); public static readonly PrefabGUID Dynamic_FarmRuin_Wall03 = new PrefabGUID(1073708029); public static readonly PrefabGUID Dynamic_FineLamp01 = new PrefabGUID(-1607370012); public static readonly PrefabGUID Dynamic_FineLamp02 = new PrefabGUID(572958762); public static readonly PrefabGUID Dynamic_FineLamp03 = new PrefabGUID(-1862881706); public static readonly PrefabGUID Dynamic_ForgeMaster_Weaponrack01 = new PrefabGUID(2074961222); public static readonly PrefabGUID Dynamic_Fortressoflight_Altar01 = new PrefabGUID(300811828); public static readonly PrefabGUID Dynamic_Fortressoflight_Brazier01 = new PrefabGUID(-851864200); public static readonly PrefabGUID Dynamic_Fortressoflight_Brazier02 = new PrefabGUID(1143887851); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_01 = new PrefabGUID(619715655); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_01_Flipped = new PrefabGUID(273690450); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_02 = new PrefabGUID(1148467754); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_03 = new PrefabGUID(713962412); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_03_Flipped = new PrefabGUID(439094574); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_Pillar_04 = new PrefabGUID(1701056478); public static readonly PrefabGUID Dynamic_Gazebo_Alchemyboard01 = new PrefabGUID(1799771806); public static readonly PrefabGUID Dynamic_Gazebo_Alchemytable01 = new PrefabGUID(254540711); public static readonly PrefabGUID Dynamic_GhostCrate_Destroy01 = new PrefabGUID(-581025681); public static readonly PrefabGUID Dynamic_GhostCrate_Destroy02 = new PrefabGUID(1795001137); public static readonly PrefabGUID Dynamic_GhostHouseBed = new PrefabGUID(1499532815); public static readonly PrefabGUID Dynamic_GhostHouseTable_01 = new PrefabGUID(-675745848); public static readonly PrefabGUID Dynamic_GhostHouseTable_02 = new PrefabGUID(-236141268); public static readonly PrefabGUID Dynamic_GhostHouseTable_03 = new PrefabGUID(-1623478757); public static readonly PrefabGUID Dynamic_Glassblower_Barrel01_Destroy01 = new PrefabGUID(-1222865119); public static readonly PrefabGUID Dynamic_Glassblower_Barrel01_Destroy02 = new PrefabGUID(-1938047265); public static readonly PrefabGUID Dynamic_Glassblower_Barrel01_Destroy03 = new PrefabGUID(16050951); public static readonly PrefabGUID Dynamic_Glassblower_Crate_Destroy01 = new PrefabGUID(318244958); public static readonly PrefabGUID Dynamic_Glassblower_Crate_Destroy02 = new PrefabGUID(2129338175); public static readonly PrefabGUID Dynamic_Glassblower_Crate_Destroy03 = new PrefabGUID(-79652628); public static readonly PrefabGUID Dynamic_Glassblower_Minecart01 = new PrefabGUID(-1631320691); public static readonly PrefabGUID Dynamic_Glassblower_Table_Destroy01 = new PrefabGUID(-511447458); public static readonly PrefabGUID Dynamic_Glassblower_Table_Destroy02 = new PrefabGUID(761535130); public static readonly PrefabGUID Dynamic_Glassblower_Wheelbarrow_Destroy01 = new PrefabGUID(1067710829); public static readonly PrefabGUID Dynamic_Glassblower_Wheelbarrow_Destroy02 = new PrefabGUID(-1815715810); public static readonly PrefabGUID Dynamic_Glassblower_Wheelbarrow_Destroy03 = new PrefabGUID(-1359614999); public static readonly PrefabGUID Dynamic_GloomRot_Cage01 = new PrefabGUID(-836503865); public static readonly PrefabGUID Dynamic_GloomRot_Cage02 = new PrefabGUID(1902390869); public static readonly PrefabGUID Dynamic_GloomRot_Cage03 = new PrefabGUID(412882056); public static readonly PrefabGUID Dynamic_GloomRot_Cage04 = new PrefabGUID(1579494508); public static readonly PrefabGUID Dynamic_GloomRot_Chair01 = new PrefabGUID(721048029); public static readonly PrefabGUID Dynamic_GloomRot_CoilFactory_Lamp01 = new PrefabGUID(1761667755); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_Screen01 = new PrefabGUID(-1687787215); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_Screen02 = new PrefabGUID(1144199079); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy01 = new PrefabGUID(-2050341478); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy02 = new PrefabGUID(739572587); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy03 = new PrefabGUID(1770839808); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy04 = new PrefabGUID(-1747404762); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Table01_Destroy01 = new PrefabGUID(67745759); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Table01_Destroy02 = new PrefabGUID(1506168614); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Table01_Destroy03 = new PrefabGUID(-1824590049); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy01 = new PrefabGUID(-1706975911); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy02 = new PrefabGUID(-33017482); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy03 = new PrefabGUID(550537653); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy04 = new PrefabGUID(-297684467); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01 = new PrefabGUID(-1399140405); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01_01 = new PrefabGUID(-2086712888); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01_02 = new PrefabGUID(1762551023); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01_03 = new PrefabGUID(-1593778122); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02 = new PrefabGUID(-1733222827); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_01 = new PrefabGUID(-2114837755); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_02 = new PrefabGUID(-2074260788); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_03 = new PrefabGUID(1625091446); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_04 = new PrefabGUID(-1126747157); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_05 = new PrefabGUID(-1508007471); public static readonly PrefabGUID Dynamic_GloomRot_Coppermine_Lamp01 = new PrefabGUID(662443583); public static readonly PrefabGUID Dynamic_GloomRot_Coppermine_Lamp02 = new PrefabGUID(-697667626); public static readonly PrefabGUID Dynamic_GloomRot_Coppermine_Lamp03 = new PrefabGUID(902802336); public static readonly PrefabGUID Dynamic_Gloomrot_Farm_Light01 = new PrefabGUID(1376508951); public static readonly PrefabGUID Dynamic_Gloomrot_Farm_Tank01 = new PrefabGUID(1572136202); public static readonly PrefabGUID Dynamic_GloomRot_Farm01 = new PrefabGUID(-1425711457); public static readonly PrefabGUID Dynamic_Gloomrot_Farm01 = new PrefabGUID(-805017052); public static readonly PrefabGUID Dynamic_Gloomrot_Farm02 = new PrefabGUID(-1054610429); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire_End01 = new PrefabGUID(-1552398508); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire01 = new PrefabGUID(1817215862); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire02 = new PrefabGUID(1777848337); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire03 = new PrefabGUID(-1461709010); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire04 = new PrefabGUID(-1625479771); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Diagonal01 = new PrefabGUID(-1383328815); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Diagonal02 = new PrefabGUID(1957598517); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_End01 = new PrefabGUID(1613176665); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_End02 = new PrefabGUID(-1139487309); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Gate01 = new PrefabGUID(573066022); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Gate02 = new PrefabGUID(-2071380576); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal01 = new PrefabGUID(-843855849); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal02 = new PrefabGUID(-827023172); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Wood_Diagonal01 = new PrefabGUID(-1814917040); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Wood01 = new PrefabGUID(-897139910); public static readonly PrefabGUID Dynamic_Gloomrot_Fireplace01 = new PrefabGUID(1738798508); public static readonly PrefabGUID Dynamic_Gloomrot_Fireplace02 = new PrefabGUID(-1922121570); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair01 = new PrefabGUID(-424896882); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair02 = new PrefabGUID(-1221049326); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair03 = new PrefabGUID(178007939); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair04 = new PrefabGUID(604780461); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Drape01 = new PrefabGUID(705791771); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Drape02 = new PrefabGUID(1008207568); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table01 = new PrefabGUID(1161293007); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table02 = new PrefabGUID(-1481497968); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table03 = new PrefabGUID(-1166883532); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table04 = new PrefabGUID(1009227731); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table05 = new PrefabGUID(-1402553142); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table06 = new PrefabGUID(124887879); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table07 = new PrefabGUID(578736238); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table08 = new PrefabGUID(-1223467651); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_WoodenShelf01 = new PrefabGUID(-1879072413); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_WoodenShelf02 = new PrefabGUID(1429813359); public static readonly PrefabGUID Dynamic_GloomRot_LampPost01 = new PrefabGUID(706073042); public static readonly PrefabGUID Dynamic_Gloomrot_pipes_Stacked01 = new PrefabGUID(518895448); public static readonly PrefabGUID Dynamic_Gloomrot_pipes_Stacked02 = new PrefabGUID(1678691189); public static readonly PrefabGUID Dynamic_Gloomrot_pipes_Stacked03 = new PrefabGUID(-165366541); public static readonly PrefabGUID Dynamic_GloomRot_Screen01 = new PrefabGUID(-887029886); public static readonly PrefabGUID Dynamic_GloomRot_Screen02 = new PrefabGUID(45884364); public static readonly PrefabGUID Dynamic_Gloomrot_Sludgepool_Pipeholder01_Destroy01 = new PrefabGUID(48312854); public static readonly PrefabGUID Dynamic_Gloomrot_Sludgepool_Worktable01_Destroy01 = new PrefabGUID(-505340815); public static readonly PrefabGUID Dynamic_GloomRot_Table01 = new PrefabGUID(-603933123); public static readonly PrefabGUID Dynamic_Gloomrot_TransistorBreakable01 = new PrefabGUID(841932847); public static readonly PrefabGUID Dynamic_Gloomrot_TransistorBreakable02 = new PrefabGUID(305546937); public static readonly PrefabGUID Dynamic_GloomRot_VillageHouses_BreakableBalcony01 = new PrefabGUID(-660674151); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy01 = new PrefabGUID(-1129979758); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy02 = new PrefabGUID(-1235836527); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy03 = new PrefabGUID(-320529867); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy04 = new PrefabGUID(1327519101); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy05 = new PrefabGUID(531205828); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy01 = new PrefabGUID(-612576724); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy02 = new PrefabGUID(-906450303); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy03 = new PrefabGUID(1892193413); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy04 = new PrefabGUID(337016672); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy05 = new PrefabGUID(-859787689); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy06 = new PrefabGUID(1718518885); public static readonly PrefabGUID Dynamic_GloomrotCrate_Destroy01 = new PrefabGUID(-817353800); public static readonly PrefabGUID Dynamic_GloomrotCrateLarge_Destroy01 = new PrefabGUID(-2012822908); public static readonly PrefabGUID Dynamic_GloomrotWoodenBarrel_Destroy01 = new PrefabGUID(-1441097129); public static readonly PrefabGUID Dynamic_Horsetrack_ArcheryTarget01 = new PrefabGUID(1753801346); public static readonly PrefabGUID Dynamic_Horsetrack_Fence01 = new PrefabGUID(918048395); public static readonly PrefabGUID Dynamic_Horsetrack_MilitiaFlag01 = new PrefabGUID(-1988794995); public static readonly PrefabGUID Dynamic_Horsetrack_MilitiaFlag02 = new PrefabGUID(-416944715); public static readonly PrefabGUID Dynamic_Horsetrack_MilitiaFlag03 = new PrefabGUID(1882169557); public static readonly PrefabGUID Dynamic_Horsetrack_Rack01 = new PrefabGUID(1792219266); public static readonly PrefabGUID Dynamic_Horsetrack_TargetDummy01 = new PrefabGUID(466193270); public static readonly PrefabGUID Dynamic_Horsetrack_TargetRings01 = new PrefabGUID(1958706375); public static readonly PrefabGUID Dynamic_HousePlant_Destroy01 = new PrefabGUID(1222567591); public static readonly PrefabGUID Dynamic_HousePlant_Destroy02 = new PrefabGUID(-1542815828); public static readonly PrefabGUID Dynamic_Laboratory_Chair_Leather_01 = new PrefabGUID(-1982053295); public static readonly PrefabGUID Dynamic_Laboratory_Chair_Leather_02 = new PrefabGUID(-383877941); public static readonly PrefabGUID Dynamic_Laboratory_ChalkBoard01 = new PrefabGUID(-1920847241); public static readonly PrefabGUID Dynamic_Laboratory_ChalkBoard02 = new PrefabGUID(-1736980107); public static readonly PrefabGUID Dynamic_LampPost01 = new PrefabGUID(1543892145); public static readonly PrefabGUID Dynamic_LampPost02 = new PrefabGUID(1611213570); public static readonly PrefabGUID Dynamic_LampPost03 = new PrefabGUID(-912195280); public static readonly PrefabGUID Dynamic_Lucie_PotionCabinet_02 = new PrefabGUID(418283489); public static readonly PrefabGUID Dynamic_Lucie_PotionCabinet_03 = new PrefabGUID(-665572988); public static readonly PrefabGUID Dynamic_MageTower_BigDesk01 = new PrefabGUID(975325435); public static readonly PrefabGUID Dynamic_MageTower_Bookcase01 = new PrefabGUID(1203082778); public static readonly PrefabGUID Dynamic_MageTower_Bookcase01_45deg = new PrefabGUID(-124310159); public static readonly PrefabGUID Dynamic_MageTower_Bookcase02 = new PrefabGUID(-1735782424); public static readonly PrefabGUID Dynamic_MageTower_Bookpile01 = new PrefabGUID(279122851); public static readonly PrefabGUID Dynamic_MageTower_CandleHolder01 = new PrefabGUID(1517851702); public static readonly PrefabGUID Dynamic_MageTower_Chair01 = new PrefabGUID(-1557460412); public static readonly PrefabGUID Dynamic_MageTower_Divan01 = new PrefabGUID(-1917779328); public static readonly PrefabGUID Dynamic_MageTower_FlowerPot01 = new PrefabGUID(-684955646); public static readonly PrefabGUID Dynamic_MageTower_Ladder01 = new PrefabGUID(2067924681); public static readonly PrefabGUID Dynamic_MageTower_Ladder02 = new PrefabGUID(1935586131); public static readonly PrefabGUID Dynamic_MageTower_Lantern01 = new PrefabGUID(1532272941); public static readonly PrefabGUID Dynamic_MageTower_Prop_Pillar01 = new PrefabGUID(1104654412); public static readonly PrefabGUID Dynamic_MageTower_SmallDesk01 = new PrefabGUID(392867233); public static readonly PrefabGUID Dynamic_MageTower_SmallDesk02 = new PrefabGUID(1972059895); public static readonly PrefabGUID Dynamic_MageTower_SmallDesk03 = new PrefabGUID(211238099); public static readonly PrefabGUID Dynamic_Militia_Barricade_01 = new PrefabGUID(729192032); public static readonly PrefabGUID Dynamic_MilitiaFlag01 = new PrefabGUID(1208502250); public static readonly PrefabGUID Dynamic_MilitiaFlag02 = new PrefabGUID(615807594); public static readonly PrefabGUID Dynamic_MilitiaFlag03 = new PrefabGUID(-1308887751); public static readonly PrefabGUID Dynamic_MilitiaFlag04 = new PrefabGUID(-148594189); public static readonly PrefabGUID Dynamic_MilitiaTableVar01 = new PrefabGUID(321704408); public static readonly PrefabGUID Dynamic_MilitiaTableVar02 = new PrefabGUID(-1730846693); public static readonly PrefabGUID Dynamic_MilitiaTableVar03 = new PrefabGUID(-1291689116); public static readonly PrefabGUID Dynamic_MineCart01 = new PrefabGUID(-513973549); public static readonly PrefabGUID Dynamic_MineCartBroken01 = new PrefabGUID(-1087086033); public static readonly PrefabGUID Dynamic_MonsterCastle_Door_Destroy01 = new PrefabGUID(-826704870); public static readonly PrefabGUID Dynamic_MonsterCastle_Gate_Destroy01 = new PrefabGUID(-773439332); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable01 = new PrefabGUID(-512363641); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable02 = new PrefabGUID(-930049376); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable03 = new PrefabGUID(-1645625963); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable04 = new PrefabGUID(1023597816); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable05 = new PrefabGUID(-1026667462); public static readonly PrefabGUID Dynamic_Noctem_AlchemyTable01 = new PrefabGUID(-1831354027); public static readonly PrefabGUID Dynamic_Noctem_AlchemyTable02 = new PrefabGUID(-1074565154); public static readonly PrefabGUID Dynamic_Noctem_AlchemyTable03 = new PrefabGUID(-1307978620); public static readonly PrefabGUID Dynamic_Noctem_Banner01 = new PrefabGUID(627540783); public static readonly PrefabGUID Dynamic_Noctem_Barrel01 = new PrefabGUID(1417656045); public static readonly PrefabGUID Dynamic_Noctem_BloodTap01 = new PrefabGUID(1937606846); public static readonly PrefabGUID Dynamic_Noctem_Bonfire01 = new PrefabGUID(-934362571); public static readonly PrefabGUID Dynamic_Noctem_Cage01_Door01 = new PrefabGUID(33269409); public static readonly PrefabGUID Dynamic_Noctem_Candlestand01 = new PrefabGUID(6843061); public static readonly PrefabGUID Dynamic_Noctem_Catacomb_Brazier01 = new PrefabGUID(1511832688); public static readonly PrefabGUID Dynamic_Noctem_Cauldron01 = new PrefabGUID(1044882554); public static readonly PrefabGUID Dynamic_Noctem_Chair01 = new PrefabGUID(2013132153); public static readonly PrefabGUID Dynamic_Noctem_Chair02 = new PrefabGUID(-294303300); public static readonly PrefabGUID Dynamic_Noctem_Crate01 = new PrefabGUID(134628911); public static readonly PrefabGUID Dynamic_Noctem_CrateLarge01 = new PrefabGUID(2026862319); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_Brazier01_Breakable = new PrefabGUID(678016184); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_BrazierAged01_Breakable = new PrefabGUID(-799678876); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_PodiumVase01 = new PrefabGUID(765067965); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_PodiumVaseAged01 = new PrefabGUID(-812293792); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_Vase01 = new PrefabGUID(111407620); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_Vase02 = new PrefabGUID(-438582678); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_VaseAged01 = new PrefabGUID(1081093787); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_VaseAged02 = new PrefabGUID(-674040415); public static readonly PrefabGUID Dynamic_Noctem_DraculaDemise_Barricade01 = new PrefabGUID(-1151571450); public static readonly PrefabGUID Dynamic_Noctem_DraculaYard_ImpalingSpikes02 = new PrefabGUID(1545678837); public static readonly PrefabGUID Dynamic_Noctem_DraculaYard_ImpalingSpikes02_02 = new PrefabGUID(890415818); public static readonly PrefabGUID Dynamic_Noctem_HangingTorch01 = new PrefabGUID(-889241408); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden01 = new PrefabGUID(1318129512); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden02 = new PrefabGUID(-1592853695); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden03 = new PrefabGUID(1183817789); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden04 = new PrefabGUID(-1838057587); public static readonly PrefabGUID Dynamic_Noctem_Lantern01 = new PrefabGUID(-1851233260); public static readonly PrefabGUID Dynamic_Noctem_PillarRuin01_Destructable = new PrefabGUID(-1526738372); public static readonly PrefabGUID Dynamic_Noctem_PillarRuin02_Destructable = new PrefabGUID(-46854891); public static readonly PrefabGUID Dynamic_Noctem_RiftCrystalChild01 = new PrefabGUID(-979374025); public static readonly PrefabGUID Dynamic_Noctem_Tube01 = new PrefabGUID(1637739119); public static readonly PrefabGUID Dynamic_Noctem_Tube02 = new PrefabGUID(828793030); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone01 = new PrefabGUID(445039538); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone02 = new PrefabGUID(-828613254); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone03 = new PrefabGUID(61725534); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone04 = new PrefabGUID(-1155668994); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone05 = new PrefabGUID(1277419644); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestoneBig01 = new PrefabGUID(-1406638343); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestoneBig02 = new PrefabGUID(705125561); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestoneBig03 = new PrefabGUID(1595267882); public static readonly PrefabGUID Dynamic_Noctem_VampireGraveyard_Brazier_01 = new PrefabGUID(1482528245); public static readonly PrefabGUID Dynamic_NoctemRuin_Pillar01 = new PrefabGUID(766271888); public static readonly PrefabGUID Dynamic_NoctemRuin_Wall01 = new PrefabGUID(1368657144); public static readonly PrefabGUID Dynamic_NoctemRuin_WallDiagonal01 = new PrefabGUID(-650488839); public static readonly PrefabGUID Dynamic_Pedestal_Candle01 = new PrefabGUID(1761647302); public static readonly PrefabGUID Dynamic_Pedestal_Lamp01 = new PrefabGUID(1011874261); public static readonly PrefabGUID Dynamic_Pedestal_Plant01 = new PrefabGUID(1592663009); public static readonly PrefabGUID Dynamic_Pole_Destory01 = new PrefabGUID(865388894); public static readonly PrefabGUID Dynamic_Runestone_fading02_Breakable = new PrefabGUID(1419058424); public static readonly PrefabGUID Dynamic_Rustic_Table_01 = new PrefabGUID(1231763100); public static readonly PrefabGUID Dynamic_Sign01 = new PrefabGUID(814466580); public static readonly PrefabGUID Dynamic_Silverhills_Banner01 = new PrefabGUID(33464712); public static readonly PrefabGUID Dynamic_Silverhills_Banner02 = new PrefabGUID(-1201376351); public static readonly PrefabGUID Dynamic_Silverhills_Banner03 = new PrefabGUID(34643548); public static readonly PrefabGUID Dynamic_Silverhills_Flowerpot01 = new PrefabGUID(861937308); public static readonly PrefabGUID Dynamic_Silverhills_Jetty_NetRack01 = new PrefabGUID(-27731895); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFish01_Destroy = new PrefabGUID(515154075); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFish02_Destroy = new PrefabGUID(-1949523505); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishCrab01_Destroy = new PrefabGUID(-625721709); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishCrab02_Destroy = new PrefabGUID(1932134868); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishFlounder01_Destroy = new PrefabGUID(-1968849252); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishFlounder02_Destroy = new PrefabGUID(1812152941); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelNet01_Destroy = new PrefabGUID(133298876); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelNet02_Destroy = new PrefabGUID(-131150295); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrate01_Destroy = new PrefabGUID(-765474328); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrate02_Destroy = new PrefabGUID(1847924261); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrate03_Destroy = new PrefabGUID(-2050580394); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFish01_Destroy = new PrefabGUID(-1051105029); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFish02_Destroy = new PrefabGUID(323682477); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFish03_Destroy = new PrefabGUID(-1268024588); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishCrab01_Destroy = new PrefabGUID(282248430); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishCrab02_Destroy = new PrefabGUID(1878363462); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishFlounder01_Destroy = new PrefabGUID(-773732980); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishFlounder02_Destroy = new PrefabGUID(1125859050); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateNet01_Destroy = new PrefabGUID(1387585737); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateNet02_Destroy = new PrefabGUID(1966813685); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel01 = new PrefabGUID(-1764354460); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel02 = new PrefabGUID(1481764336); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel03 = new PrefabGUID(61478074); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel04 = new PrefabGUID(-559504457); public static readonly PrefabGUID Dynamic_Silverhills_Sign01 = new PrefabGUID(13063903); public static readonly PrefabGUID Dynamic_Silverhills_Sign02 = new PrefabGUID(124210558); public static readonly PrefabGUID Dynamic_Silverhills_Sign03 = new PrefabGUID(43860098); public static readonly PrefabGUID Dynamic_Silverhills_Sign04 = new PrefabGUID(-529886651); public static readonly PrefabGUID Dynamic_Silverhills_StoneSymbol01 = new PrefabGUID(-689051675); public static readonly PrefabGUID Dynamic_Silverhills_StoneSymbol02 = new PrefabGUID(840138011); public static readonly PrefabGUID Dynamic_SilverMine_StoneBench01 = new PrefabGUID(-1814681373); public static readonly PrefabGUID Dynamic_SilverMine_StoneBench02 = new PrefabGUID(-1836215627); public static readonly PrefabGUID Dynamic_SilverMine_StoneBookPedestal01 = new PrefabGUID(1856010207); public static readonly PrefabGUID Dynamic_SilverMine_StoneTable01 = new PrefabGUID(1832333364); public static readonly PrefabGUID Dynamic_SilverMine_StoneTable02 = new PrefabGUID(-750506812); public static readonly PrefabGUID Dynamic_SilverMines_Cage01_Door01 = new PrefabGUID(-1638822576); public static readonly PrefabGUID Dynamic_SilverMines_StoneSymbol03 = new PrefabGUID(2140372796); public static readonly PrefabGUID Dynamic_SimpleWoodenBed = new PrefabGUID(-788101484); public static readonly PrefabGUID Dynamic_SimpleWoodenTable_01 = new PrefabGUID(-1866060148); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_FlowerPress01 = new PrefabGUID(-1175302049); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_SeedSack01 = new PrefabGUID(324332963); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_SeedSack02 = new PrefabGUID(-872202381); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_SeedSack03 = new PrefabGUID(844463790); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table01 = new PrefabGUID(-1048994858); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table02 = new PrefabGUID(-1189070820); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table03 = new PrefabGUID(-617997049); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table04 = new PrefabGUID(-983864675); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table05 = new PrefabGUID(523387146); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table06 = new PrefabGUID(251968437); public static readonly PrefabGUID Dynamic_Strongblade_Banner01 = new PrefabGUID(-1504210290); public static readonly PrefabGUID Dynamic_Strongblade_Banner02 = new PrefabGUID(1108631059); public static readonly PrefabGUID Dynamic_Strongblade_Banner03 = new PrefabGUID(-2140154396); public static readonly PrefabGUID Dynamic_Strongblade_Barrel01 = new PrefabGUID(-2122608214); public static readonly PrefabGUID Dynamic_Strongblade_Barrel02 = new PrefabGUID(8490927); public static readonly PrefabGUID Dynamic_Strongblade_Bed01 = new PrefabGUID(-2093299634); public static readonly PrefabGUID Dynamic_Strongblade_Bed02 = new PrefabGUID(1010369489); public static readonly PrefabGUID Dynamic_Strongblade_Brazier01 = new PrefabGUID(-1551609751); public static readonly PrefabGUID Dynamic_Strongblade_Brazier02 = new PrefabGUID(-814672745); public static readonly PrefabGUID Dynamic_Strongblade_Brazier03 = new PrefabGUID(-631016027); public static readonly PrefabGUID Dynamic_Strongblade_BunkBed01 = new PrefabGUID(1330812402); public static readonly PrefabGUID Dynamic_Strongblade_BunkBed02 = new PrefabGUID(-405712808); public static readonly PrefabGUID Dynamic_Strongblade_BunkBed03 = new PrefabGUID(746971555); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench01 = new PrefabGUID(-1753725304); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench02 = new PrefabGUID(75437562); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench03 = new PrefabGUID(2032984241); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench04 = new PrefabGUID(-1564346557); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench05 = new PrefabGUID(-1367148339); public static readonly PrefabGUID Dynamic_Strongblade_Chair01 = new PrefabGUID(1261965721); public static readonly PrefabGUID Dynamic_Strongblade_Chair01_02 = new PrefabGUID(540931503); public static readonly PrefabGUID Dynamic_Strongblade_Chair02 = new PrefabGUID(1710831571); public static readonly PrefabGUID Dynamic_Strongblade_Chair03 = new PrefabGUID(-1777056595); public static readonly PrefabGUID Dynamic_Strongblade_Chair04 = new PrefabGUID(733466058); public static readonly PrefabGUID Dynamic_Strongblade_Crate01 = new PrefabGUID(-420803614); public static readonly PrefabGUID Dynamic_Strongblade_Crate01_Flasks01 = new PrefabGUID(2094291872); public static readonly PrefabGUID Dynamic_Strongblade_Crate01_Flasks02 = new PrefabGUID(-1078095729); public static readonly PrefabGUID Dynamic_Strongblade_Crate02 = new PrefabGUID(864523526); public static readonly PrefabGUID Dynamic_Strongblade_Crate03 = new PrefabGUID(570702715); public static readonly PrefabGUID Dynamic_Strongblade_Crate03_Flasks01 = new PrefabGUID(-1469972790); public static readonly PrefabGUID Dynamic_Strongblade_Crate03_Flasks02 = new PrefabGUID(-1132554682); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack01 = new PrefabGUID(1028532028); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack02 = new PrefabGUID(816198647); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack03 = new PrefabGUID(1658946590); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack04 = new PrefabGUID(-990332499); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerWorkbench_01 = new PrefabGUID(1464586946); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerWorkbench_02 = new PrefabGUID(-738152404); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Barrel01 = new PrefabGUID(-1611627832); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Barrel02 = new PrefabGUID(-2115447482); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Crate01 = new PrefabGUID(-378734983); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Crate02 = new PrefabGUID(353141106); public static readonly PrefabGUID Dynamic_Strongblade_Emery_ToolRack01 = new PrefabGUID(330803280); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Wheelbarrow01 = new PrefabGUID(1892061460); public static readonly PrefabGUID Dynamic_Strongblade_Mantrap_Cage_Door01 = new PrefabGUID(1062425003); public static readonly PrefabGUID Dynamic_Strongblade_Ruin_Pillar_Destructable01 = new PrefabGUID(-1770056155); public static readonly PrefabGUID Dynamic_Strongblade_Ruin_Pillar_Destructable02 = new PrefabGUID(1804360939); public static readonly PrefabGUID Dynamic_Strongblade_Ruin_Pillar_Destructable03 = new PrefabGUID(-1631620150); public static readonly PrefabGUID Dynamic_Strongblade_Table_Carver01 = new PrefabGUID(-967715247); public static readonly PrefabGUID Dynamic_Strongblade_Table_Carver02 = new PrefabGUID(-1694410543); public static readonly PrefabGUID Dynamic_Strongblade_Table01 = new PrefabGUID(-2109613586); public static readonly PrefabGUID Dynamic_Strongblade_Table01_02 = new PrefabGUID(-1149627997); public static readonly PrefabGUID Dynamic_Strongblade_Table02 = new PrefabGUID(1573826676); public static readonly PrefabGUID Dynamic_Strongblade_Table02_02 = new PrefabGUID(-198513790); public static readonly PrefabGUID Dynamic_Strongblade_Table03 = new PrefabGUID(2026035370); public static readonly PrefabGUID Dynamic_Strongblade_Table03_02 = new PrefabGUID(1093809809); public static readonly PrefabGUID Dynamic_Strongblade_Target01 = new PrefabGUID(937517584); public static readonly PrefabGUID Dynamic_Strongblade_Target02 = new PrefabGUID(836435916); public static readonly PrefabGUID Dynamic_Strongblade_Target03 = new PrefabGUID(-1250558838); public static readonly PrefabGUID Dynamic_Strongblade_ToolRack01 = new PrefabGUID(2005713136); public static readonly PrefabGUID Dynamic_Strongblade_ToolRack02 = new PrefabGUID(-1947872155); public static readonly PrefabGUID Dynamic_Strongblade_Weaponrack01 = new PrefabGUID(-1205652273); public static readonly PrefabGUID Dynamic_Strongblade_Weaponrack02 = new PrefabGUID(-1869650771); public static readonly PrefabGUID Dynamic_Strongblade_Weaponrack03 = new PrefabGUID(1682016872); public static readonly PrefabGUID Dynamic_Strongblade_Wheelbarrow01 = new PrefabGUID(-831601581); public static readonly PrefabGUID Dynamic_TavernCounter01 = new PrefabGUID(-343090962); public static readonly PrefabGUID Dynamic_VampireGravestone01 = new PrefabGUID(1856724560); public static readonly PrefabGUID Dynamic_VampireGravestone02 = new PrefabGUID(-874554027); public static readonly PrefabGUID Dynamic_VampireGravestone03 = new PrefabGUID(1406471614); public static readonly PrefabGUID Dynamic_VampireGravestone04 = new PrefabGUID(-866366928); public static readonly PrefabGUID Dynamic_VampireGravestone05 = new PrefabGUID(159024948); public static readonly PrefabGUID Dynamic_VampireGravestoneBig01 = new PrefabGUID(-1721716929); public static readonly PrefabGUID Dynamic_VampireGravestoneBig02 = new PrefabGUID(686005394); public static readonly PrefabGUID Dynamic_VampireGravestoneBig03 = new PrefabGUID(-1861234994); public static readonly PrefabGUID Dynamic_VampireGraveyard_Brazier_01 = new PrefabGUID(1324282668); public static readonly PrefabGUID Dynamic_Village_CandleHolder01 = new PrefabGUID(-906553059); public static readonly PrefabGUID Dynamic_Village_MarketBarrel01 = new PrefabGUID(-1355981440); public static readonly PrefabGUID Dynamic_Village_MarketBarrel02 = new PrefabGUID(-1754267186); public static readonly PrefabGUID Dynamic_Village_MarketBarrel03 = new PrefabGUID(252191991); public static readonly PrefabGUID Dynamic_Village_MarketBarrel04 = new PrefabGUID(1945245854); public static readonly PrefabGUID Dynamic_Village_MarketCrate01 = new PrefabGUID(-501746101); public static readonly PrefabGUID Dynamic_Village_MarketCrate02 = new PrefabGUID(-1225741924); public static readonly PrefabGUID Dynamic_Village_MarketCrate03 = new PrefabGUID(-1924310509); public static readonly PrefabGUID Dynamic_Vineyard_BarrelShelf01 = new PrefabGUID(-1227668417); public static readonly PrefabGUID Dynamic_Vineyard_Distillery_Breakable01 = new PrefabGUID(874918996); public static readonly PrefabGUID Dynamic_Vineyard_Fence_Diagonal01 = new PrefabGUID(514382335); public static readonly PrefabGUID Dynamic_Vineyard_Fence_End01 = new PrefabGUID(178825099); public static readonly PrefabGUID Dynamic_Vineyard_Fence01 = new PrefabGUID(420531030); public static readonly PrefabGUID Dynamic_Vineyard_Table01 = new PrefabGUID(278930907); public static readonly PrefabGUID Dynamic_WerewolfVillage_CageDoor01 = new PrefabGUID(449605547); public static readonly PrefabGUID Dynamic_Wilderness_Pyre_Flag_01 = new PrefabGUID(-1185192049); public static readonly PrefabGUID Dynamic_WildlingFlag01 = new PrefabGUID(513765745); public static readonly PrefabGUID Dynamic_WildlingFlag03 = new PrefabGUID(-471017212); public static readonly PrefabGUID Dynamic_WildlingFlag04 = new PrefabGUID(1176864549); public static readonly PrefabGUID Dynamic_Witch_FrogTree_01 = new PrefabGUID(680354330); public static readonly PrefabGUID Dynamic_Witch_Stake_01 = new PrefabGUID(2033908910); public static readonly PrefabGUID Dynamic_Witch_Stake_02 = new PrefabGUID(-268526379); public static readonly PrefabGUID Dynamic_Witch_Stake_03 = new PrefabGUID(-1097825920); public static readonly PrefabGUID Dynamic_Witch_Stake_04 = new PrefabGUID(-1225604740); public static readonly PrefabGUID Dynamic_Witch_Stake_05 = new PrefabGUID(1004747507); public static readonly PrefabGUID Dynamic_Witch_Stake_06 = new PrefabGUID(-1850102949); public static readonly PrefabGUID Dynamic_Witch_Stake_07 = new PrefabGUID(-62803135); public static readonly PrefabGUID Dynamic_Witch_Stake_08 = new PrefabGUID(1866082990); public static readonly PrefabGUID Dynamic_Witch_Stake_09 = new PrefabGUID(-1023482921); public static readonly PrefabGUID Dynamic_Witch_Stake_10 = new PrefabGUID(1279575120); public static readonly PrefabGUID Dynamic_Witch_Stake_11 = new PrefabGUID(-1848716072); public static readonly PrefabGUID Dynamic_Witch_Stake_12 = new PrefabGUID(513789194); public static readonly PrefabGUID Dynamics_CastleRuins_Entrance_Half = new PrefabGUID(-1617661000); public static readonly PrefabGUID Dynamics_CastleRuins_Entrance_Short = new PrefabGUID(954663641); public static readonly PrefabGUID Dynamics_CastleRuins_Entrance_Whole = new PrefabGUID(711406315); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_HalfSize = new PrefabGUID(2001924492); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_SmallSize = new PrefabGUID(826621727); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_Standard01 = new PrefabGUID(-473356019); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_Standard02 = new PrefabGUID(-82761589); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_CornerMissing = new PrefabGUID(1486872108); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_Half = new PrefabGUID(-1072920270); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_Short = new PrefabGUID(2091993130); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_Whole = new PrefabGUID(1032047554); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01 = new PrefabGUID(-234034474); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_Cursed = new PrefabGUID(-1784856563); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_GloomRot_North = new PrefabGUID(-656414839); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_GloomRot_South = new PrefabGUID(816419225); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_SilverLight = new PrefabGUID(-1425009997); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_Snow = new PrefabGUID(1375521202); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02 = new PrefabGUID(1310137520); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_Cursed = new PrefabGUID(1202997443); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_GloomRot_North = new PrefabGUID(1792637867); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_GloomRot_South = new PrefabGUID(605959431); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_SilverLight = new PrefabGUID(1894134215); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_Snow = new PrefabGUID(-1496314039); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01 = new PrefabGUID(-1217974514); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_Cursed = new PrefabGUID(99655404); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_GloomRot_North = new PrefabGUID(-1123275364); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_GloomRot_South = new PrefabGUID(1224567407); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_SilverLight = new PrefabGUID(-718226233); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_Snow = new PrefabGUID(-657538392); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02 = new PrefabGUID(1134008244); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_Cursed = new PrefabGUID(-1285226630); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_GloomRot_North = new PrefabGUID(586681555); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_GloomRot_South = new PrefabGUID(-1526178704); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_SilverLight = new PrefabGUID(1455219536); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_Snow = new PrefabGUID(1278517271); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03 = new PrefabGUID(-1797870599); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_Cursed = new PrefabGUID(845866970); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_GloomRot_North = new PrefabGUID(1695856356); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_GloomRot_South = new PrefabGUID(-70214350); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_SilverLight = new PrefabGUID(2010294716); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_Snow = new PrefabGUID(-1561832548); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04 = new PrefabGUID(-110595036); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_Cursed = new PrefabGUID(1037374543); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_GloomRot_North = new PrefabGUID(593737256); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_GloomRot_South = new PrefabGUID(-1904531952); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_SilverLight = new PrefabGUID(-2128282228); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_Snow = new PrefabGUID(141455145); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01 = new PrefabGUID(-18405904); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_Cursed = new PrefabGUID(720005223); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_GloomRot_North = new PrefabGUID(-409959009); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_GloomRot_South = new PrefabGUID(-738592740); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_SilverLight = new PrefabGUID(-1787441583); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_Snow = new PrefabGUID(-1100465668); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02 = new PrefabGUID(-904349188); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_Cursed = new PrefabGUID(-269446272); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_GloomRot_North = new PrefabGUID(1255711678); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_GloomRot_South = new PrefabGUID(877010730); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_SilverLight = new PrefabGUID(1297691219); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_Snow = new PrefabGUID(-323274524); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01 = new PrefabGUID(-1578059544); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_Cursed = new PrefabGUID(844319995); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_GloomRot_North = new PrefabGUID(-1243188819); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_GloomRot_South = new PrefabGUID(-505123460); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_SilverLight = new PrefabGUID(795916989); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_Snow = new PrefabGUID(-756183688); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02 = new PrefabGUID(199766782); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_Cursed = new PrefabGUID(905117942); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_GloomRot_North = new PrefabGUID(519127440); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_GloomRot_South = new PrefabGUID(803040786); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_SilverLight = new PrefabGUID(72337094); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_Snow = new PrefabGUID(-1267165659); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03 = new PrefabGUID(1601974840); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_Cursed = new PrefabGUID(-718484092); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_GloomRot_North = new PrefabGUID(-1893095669); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_GloomRot_South = new PrefabGUID(-351417972); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_SilverLight = new PrefabGUID(-735801197); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_Snow = new PrefabGUID(495989089); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04 = new PrefabGUID(1818938058); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_Cursed = new PrefabGUID(-1260082372); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_GloomRot_North = new PrefabGUID(548947553); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_GloomRot_South = new PrefabGUID(757222626); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_SilverLight = new PrefabGUID(-1317752815); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_Snow = new PrefabGUID(-960869484); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05 = new PrefabGUID(-2069498072); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_Cursed = new PrefabGUID(-1107241044); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_GloomRot_North = new PrefabGUID(1644603434); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_GloomRot_South = new PrefabGUID(479831873); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_SilverLight = new PrefabGUID(-331771737); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_Snow = new PrefabGUID(1514629798); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01 = new PrefabGUID(1949185575); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_Cursed = new PrefabGUID(-1958595595); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_GloomRot_North = new PrefabGUID(1663750202); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_GloomRot_South = new PrefabGUID(-1519672854); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_SilverHills = new PrefabGUID(1266343309); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_Snow = new PrefabGUID(-823427919); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02 = new PrefabGUID(1130863810); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_Cursed = new PrefabGUID(435569555); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_GloomRot_North = new PrefabGUID(2027702249); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_GloomRot_South = new PrefabGUID(1744922396); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_SilverHills = new PrefabGUID(1828026123); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_Snow = new PrefabGUID(-1248514786); public static readonly PrefabGUID EaseIn_GlassBlower_Cyclone_Curve = new PrefabGUID(-275791831); public static readonly PrefabGUID EaseInCurve = new PrefabGUID(1299958760); public static readonly PrefabGUID EaseInFlatCurve = new PrefabGUID(1797463934); public static readonly PrefabGUID EaseInFlatEarlyCurve = new PrefabGUID(746769511); public static readonly PrefabGUID EaseInFlatLongCurve = new PrefabGUID(-415987411); public static readonly PrefabGUID EaseInFlatStartCurve = new PrefabGUID(-572036026); public static readonly PrefabGUID EaseInLightCurve = new PrefabGUID(214609977); public static readonly PrefabGUID EaseInMediumCurve = new PrefabGUID(-357405154); public static readonly PrefabGUID EaseInOutAndBackCurve = new PrefabGUID(-1995917237); public static readonly PrefabGUID EaseInOutAndBackFastCurve = new PrefabGUID(1405245516); public static readonly PrefabGUID EaseInOutAndBackSlowCurve = new PrefabGUID(-880720849); public static readonly PrefabGUID EaseInOutAndBackVeryFastCurve = new PrefabGUID(-137895455); public static readonly PrefabGUID EaseInOutCurve = new PrefabGUID(844839218); public static readonly PrefabGUID EaseInSharpCurve = new PrefabGUID(-287475116); public static readonly PrefabGUID EaseOutCurve = new PrefabGUID(1983966703); public static readonly PrefabGUID EaseOutHeavyCurve = new PrefabGUID(1062980107); public static readonly PrefabGUID EaseOutLightCurve = new PrefabGUID(664011217); public static readonly PrefabGUID EdgeIcon_CustomMapMarker = new PrefabGUID(1225204967); public static readonly PrefabGUID EdgeIcon_DeathContainer = new PrefabGUID(-259034789); public static readonly PrefabGUID EdgeIcon_TerritoryMarker = new PrefabGUID(2051594793); public static readonly PrefabGUID EH_Bandit_ArmorRack_Active = new PrefabGUID(-457716662); public static readonly PrefabGUID EH_Bandit_ArmorRack_Inactive = new PrefabGUID(1309959325); public static readonly PrefabGUID EH_Bandit_BearCage = new PrefabGUID(2072218017); public static readonly PrefabGUID EH_Bandit_BearTrap_AggroBandits = new PrefabGUID(12647118); public static readonly PrefabGUID EH_Bandit_BearTrap_Ready = new PrefabGUID(604420572); public static readonly PrefabGUID EH_Bandit_BearTrap_Triggered = new PrefabGUID(50685491); public static readonly PrefabGUID EH_Curse_Wisp = new PrefabGUID(733970111); public static readonly PrefabGUID EH_EMP_ActivatedBuff_Standard = new PrefabGUID(1653285815); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel = new PrefabGUID(-993539378); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff = new PrefabGUID(-992614152); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff_Fast = new PrefabGUID(-895976821); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff_Standard_T01 = new PrefabGUID(-527595505); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff_Standard_T02 = new PrefabGUID(402396864); public static readonly PrefabGUID EH_Monster_EnergyBeam_Active = new PrefabGUID(-881548025); public static readonly PrefabGUID EH_Monster_EnergyBeam_Available = new PrefabGUID(317064549); public static readonly PrefabGUID EH_Monster_EnergyBeam_Inactive = new PrefabGUID(-1351333802); public static readonly PrefabGUID EH_Monster_EnergyBeam_Startup = new PrefabGUID(-937569366); public static readonly PrefabGUID EH_Spider_Cocoon_01 = new PrefabGUID(-126478565); public static readonly PrefabGUID EH_Spider_Cocoon_02 = new PrefabGUID(571929806); public static readonly PrefabGUID EH_Spider_Cocoon_03 = new PrefabGUID(1327926350); public static readonly PrefabGUID EH_Spider_Cocoon_Base = new PrefabGUID(-1682746393); public static readonly PrefabGUID EH_UnholyChasmEruption_Area = new PrefabGUID(-1231670632); public static readonly PrefabGUID EH_UnholyChasmEruption_Burn_Debuff = new PrefabGUID(-1572696947); public static readonly PrefabGUID EH_UnholyChasmEruption_Object = new PrefabGUID(1428486515); public static readonly PrefabGUID EH_UnholyChasmEruption_Throw = new PrefabGUID(-995980518); public static readonly PrefabGUID EH_WerewolfChieftain_FarmerCage_Closed = new PrefabGUID(1824098505); public static readonly PrefabGUID EH_WerewolfChieftain_FarmerCage_Open = new PrefabGUID(-15276443); public static readonly PrefabGUID Emery02_Broken = new PrefabGUID(2083796933); public static readonly PrefabGUID EmeryEmissiveCurve = new PrefabGUID(334573187); public static readonly PrefabGUID EmeryNode01_Broken = new PrefabGUID(-899969311); public static readonly PrefabGUID EmeryNode01_Broken_Small = new PrefabGUID(-80715900); public static readonly PrefabGUID EmeryNode02_Broken_Small = new PrefabGUID(2045195584); public static readonly PrefabGUID EmeryNode03_Broken = new PrefabGUID(1657423564); public static readonly PrefabGUID EmeryNode03_Broken_Small = new PrefabGUID(752405288); public static readonly PrefabGUID EnvironmentHazard_Base = new PrefabGUID(2052578655); public static readonly PrefabGUID EquipBuff_Bag_Base = new PrefabGUID(-783958722); public static readonly PrefabGUID EquipBuff_Boots_Base = new PrefabGUID(-1465458722); public static readonly PrefabGUID EquipBuff_Chest_Base = new PrefabGUID(1872694456); public static readonly PrefabGUID EquipBuff_Cloak_Base = new PrefabGUID(1409441911); public static readonly PrefabGUID EquipBuff_Gloves_Base = new PrefabGUID(541298575); public static readonly PrefabGUID EquipBuff_Headgear_Base = new PrefabGUID(-1390242325); public static readonly PrefabGUID EquipBuff_Legs_Base = new PrefabGUID(1971020070); public static readonly PrefabGUID EquipBuff_ShroudOfTheForest = new PrefabGUID(1504279833); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Ability01 = new PrefabGUID(1708326236); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Ability02 = new PrefabGUID(467582216); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Ability03 = new PrefabGUID(1164259129); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Base = new PrefabGUID(-229134934); public static readonly PrefabGUID EquipBuff_Weapon_Claws_Ability03 = new PrefabGUID(-1231984717); public static readonly PrefabGUID EquipBuff_Weapon_Claws_Base = new PrefabGUID(1646709833); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Ability01 = new PrefabGUID(841833252); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Ability02 = new PrefabGUID(-622297013); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Ability03 = new PrefabGUID(-554016265); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Base = new PrefabGUID(502842164); public static readonly PrefabGUID EquipBuff_Weapon_Daggers_Ability03 = new PrefabGUID(1240224003); public static readonly PrefabGUID EquipBuff_Weapon_Daggers_Base = new PrefabGUID(-770602451); public static readonly PrefabGUID EquipBuff_Weapon_DualHammers_Ability03 = new PrefabGUID(1644894901); public static readonly PrefabGUID EquipBuff_Weapon_DualHammers_Base = new PrefabGUID(-931878472); public static readonly PrefabGUID EquipBuff_Weapon_FishingPole_Base = new PrefabGUID(1697379100); public static readonly PrefabGUID EquipBuff_Weapon_FishingPole_Debug = new PrefabGUID(1575387321); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Ability01 = new PrefabGUID(382622020); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Ability02 = new PrefabGUID(755528190); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Ability03 = new PrefabGUID(-698138214); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Base = new PrefabGUID(977673555); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Ability01 = new PrefabGUID(1799766155); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Ability02 = new PrefabGUID(443801770); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Ability03 = new PrefabGUID(-441436093); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Base = new PrefabGUID(-1467765290); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Ability01 = new PrefabGUID(1964376161); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Ability02 = new PrefabGUID(955941306); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Ability03 = new PrefabGUID(250456816); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Base = new PrefabGUID(-1776512609); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Ability01 = new PrefabGUID(942607349); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Ability02 = new PrefabGUID(640056855); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Ability03 = new PrefabGUID(-187287183); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Base = new PrefabGUID(-1275287654); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Ability01 = new PrefabGUID(673013659); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Ability02 = new PrefabGUID(-1159900363); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Ability03 = new PrefabGUID(-1721561549); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Base = new PrefabGUID(1866720505); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Ability01 = new PrefabGUID(-1327674928); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Ability02 = new PrefabGUID(1503954288); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Ability03 = new PrefabGUID(-244154805); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Base = new PrefabGUID(-1588401644); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Ability01 = new PrefabGUID(1151296656); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Ability02 = new PrefabGUID(1731461994); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Ability03 = new PrefabGUID(2036742434); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Base = new PrefabGUID(1476263066); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Ability01 = new PrefabGUID(662509355); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Ability02 = new PrefabGUID(-1335720608); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Ability03 = new PrefabGUID(-552536675); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Base = new PrefabGUID(502760675); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Ability01 = new PrefabGUID(436833018); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Ability02 = new PrefabGUID(239719656); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Ability03 = new PrefabGUID(1232942168); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Base = new PrefabGUID(-1534520401); public static readonly PrefabGUID EquipBuff_Weapon_TwinBlades_Ability03 = new PrefabGUID(-1138655105); public static readonly PrefabGUID EquipBuff_Weapon_TwinBlades_Base = new PrefabGUID(188111866); public static readonly PrefabGUID EquipBuff_Weapon_Unarmed_Start01 = new PrefabGUID(-2075546002); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Ability01 = new PrefabGUID(1576309437); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Ability02 = new PrefabGUID(-954627543); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Ability03 = new PrefabGUID(-1414560949); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Base = new PrefabGUID(881048998); public static readonly PrefabGUID EssenceDefaultCurve = new PrefabGUID(-2118651311); public static readonly PrefabGUID ExteriorFloorBuildMenuGroup = new PrefabGUID(-357655796); public static readonly PrefabGUID External_Inventory = new PrefabGUID(1183666186); public static readonly PrefabGUID Faction_Bandits = new PrefabGUID(-413163549); public static readonly PrefabGUID Faction_Bear = new PrefabGUID(1344481611); public static readonly PrefabGUID Faction_Blackfangs = new PrefabGUID(932337192); public static readonly PrefabGUID Faction_Blackfangs_Livith = new PrefabGUID(-1460095921); public static readonly PrefabGUID Faction_ChurchOfLum = new PrefabGUID(1094603131); public static readonly PrefabGUID Faction_ChurchOfLum_Slaves = new PrefabGUID(671871002); public static readonly PrefabGUID Faction_ChurchOfLum_Slaves_Rioters = new PrefabGUID(877850148); public static readonly PrefabGUID Faction_ChurchOfLum_SpotShapeshiftVampire = new PrefabGUID(2395673); public static readonly PrefabGUID Faction_Corrupted = new PrefabGUID(182714905); public static readonly PrefabGUID Faction_CorruptedBloodBuffSpawns = new PrefabGUID(-1702123687); public static readonly PrefabGUID Faction_Critters = new PrefabGUID(10678632); public static readonly PrefabGUID Faction_Cursed = new PrefabGUID(1522496317); public static readonly PrefabGUID Faction_Elementals = new PrefabGUID(1513046884); public static readonly PrefabGUID Faction_Gloomrot = new PrefabGUID(-1632475814); public static readonly PrefabGUID Faction_Harpy = new PrefabGUID(1731533561); public static readonly PrefabGUID Faction_Ignored = new PrefabGUID(-1430861195); public static readonly PrefabGUID Faction_Legion = new PrefabGUID(-772044125); public static readonly PrefabGUID Faction_Militia = new PrefabGUID(1057375699); public static readonly PrefabGUID Faction_Mutants = new PrefabGUID(-210606557); public static readonly PrefabGUID Faction_NatureSpirit = new PrefabGUID(1597367490); public static readonly PrefabGUID Faction_Plants = new PrefabGUID(-1414061934); public static readonly PrefabGUID Faction_Players = new PrefabGUID(1106458752); public static readonly PrefabGUID Faction_Players_Castle_Prisoners = new PrefabGUID(-394968526); public static readonly PrefabGUID Faction_Players_Mutant = new PrefabGUID(2146780972); public static readonly PrefabGUID Faction_Players_Shapeshift_Human = new PrefabGUID(-1036907707); public static readonly PrefabGUID Faction_Spiders = new PrefabGUID(-1632009503); public static readonly PrefabGUID Faction_Spiders_Shapeshifted = new PrefabGUID(-733057474); public static readonly PrefabGUID Faction_Traders_T01 = new PrefabGUID(30052367); public static readonly PrefabGUID Faction_Traders_T02 = new PrefabGUID(887347866); public static readonly PrefabGUID Faction_Undead = new PrefabGUID(929074293); public static readonly PrefabGUID Faction_VampireHunters = new PrefabGUID(2120169232); public static readonly PrefabGUID Faction_Wendigo = new PrefabGUID(-535162217); public static readonly PrefabGUID Faction_Werewolf = new PrefabGUID(-2024618997); public static readonly PrefabGUID Faction_WerewolfHuman = new PrefabGUID(62959306); public static readonly PrefabGUID Faction_Wolves = new PrefabGUID(-1671358863); public static readonly PrefabGUID Faction_World_Prisoners = new PrefabGUID(1977351396); public static readonly PrefabGUID FadeToBlackPrefab = new PrefabGUID(378089426); public static readonly PrefabGUID FadeTrailCurve = new PrefabGUID(-1914994394); public static readonly PrefabGUID FakeItem_AnyFish = new PrefabGUID(300582272); public static readonly PrefabGUID FakeItem_AnyFlower = new PrefabGUID(-2101941878); public static readonly PrefabGUID FakeItem_AnyGem = new PrefabGUID(1128027535); public static readonly PrefabGUID FakeItem_AnyGem_T01 = new PrefabGUID(-2039337521); public static readonly PrefabGUID FakeItem_AnyGem_T02 = new PrefabGUID(-2099422426); public static readonly PrefabGUID FakeItem_BloodTracking = new PrefabGUID(-170922187); public static readonly PrefabGUID FakeItem_FeedPrisoner_BloodSnapper = new PrefabGUID(526090146); public static readonly PrefabGUID FakeItem_FeedPrisoner_Corrupted = new PrefabGUID(714743556); public static readonly PrefabGUID FakeItem_FeedPrisoner_FatGoby = new PrefabGUID(-811840389); public static readonly PrefabGUID FakeItem_FeedPrisoner_FierceStinger = new PrefabGUID(-114411609); public static readonly PrefabGUID FakeItem_FeedPrisoner_GoldenRiverBass = new PrefabGUID(-684874624); public static readonly PrefabGUID FakeItem_FeedPrisoner_IrradiantGruel = new PrefabGUID(-1798608844); public static readonly PrefabGUID FakeItem_FeedPrisoner_RainbowTrout = new PrefabGUID(1814558673); public static readonly PrefabGUID FakeItem_FeedPrisoner_Rat = new PrefabGUID(1110550218); public static readonly PrefabGUID FakeItem_FeedPrisoner_SageFish = new PrefabGUID(172410251); public static readonly PrefabGUID FakeItem_FeedPrisoner_SwampDweller = new PrefabGUID(-314251399); public static readonly PrefabGUID FakeItem_FeedPrisoner_TwilightSnapper = new PrefabGUID(-1205777419); public static readonly PrefabGUID FakeItem_FlawlessGem_T03 = new PrefabGUID(1613130430); public static readonly PrefabGUID FakeItem_Prisoner_ExtractedBloodPotion = new PrefabGUID(-1871776321); public static readonly PrefabGUID FakeItem_Prisoner_ExtractedBloodwine = new PrefabGUID(-1624770558); public static readonly PrefabGUID FakeItem_Prisoner_ExtractEssence = new PrefabGUID(-911541799); public static readonly PrefabGUID FakeItem_RegularGem_T02 = new PrefabGUID(-36717533); public static readonly PrefabGUID FancyRugsBuildMenuGroup01 = new PrefabGUID(531546263); public static readonly PrefabGUID FeedBloodBeam = new PrefabGUID(129395516); public static readonly PrefabGUID FeedBloodBeam02 = new PrefabGUID(1513348921); public static readonly PrefabGUID FeedCurveX = new PrefabGUID(-1512829531); public static readonly PrefabGUID FeedCurveY = new PrefabGUID(1595901208); public static readonly PrefabGUID FeedCurveZ = new PrefabGUID(-1666023656); public static readonly PrefabGUID FireBombCurve = new PrefabGUID(1387640155); public static readonly PrefabGUID FireplaceBuildMenuGroup = new PrefabGUID(2000669537); public static readonly PrefabGUID Flat0 = new PrefabGUID(774301558); public static readonly PrefabGUID FlatCurve = new PrefabGUID(-271796435); public static readonly PrefabGUID FlatCurve05 = new PrefabGUID(-281628053); public static readonly PrefabGUID FlatCurve06 = new PrefabGUID(-1560414810); public static readonly PrefabGUID FlatInOutAndBackCurve = new PrefabGUID(953009975); public static readonly PrefabGUID FlatInOutAndBackCurve2 = new PrefabGUID(-519892389); public static readonly PrefabGUID FlatInOutAndBackCurve3 = new PrefabGUID(931351954); public static readonly PrefabGUID FloorFurnishingBuildMenuGroup = new PrefabGUID(-340095470); public static readonly PrefabGUID Forest_Bear_Dire_VBlood_Emote_OnAggro_Buff = new PrefabGUID(438313973); public static readonly PrefabGUID ForgeFloorBuildMenuGroup = new PrefabGUID(658659185); public static readonly PrefabGUID Frost_Vampire_Buff_Chill = new PrefabGUID(27300215); public static readonly PrefabGUID Frost_Vampire_Buff_Freeze = new PrefabGUID(612319955); public static readonly PrefabGUID Frost_Vampire_Buff_IceShield_Base = new PrefabGUID(-414011277); public static readonly PrefabGUID Frost_Vampire_Buff_IceShield_SpellMod = new PrefabGUID(57946762); public static readonly PrefabGUID Frost_Vampire_Buff_NoFreeze_Shared_DamageTrigger = new PrefabGUID(312176353); public static readonly PrefabGUID Frost_Vampire_Splinter_Projectile = new PrefabGUID(-1952476600); public static readonly PrefabGUID Frost_Vampire_Splinter_Projectile_HitBuff = new PrefabGUID(1688343470); public static readonly PrefabGUID FrostSpellSchoolAsset = new PrefabGUID(-823811825); public static readonly PrefabGUID FrozenTempestCurve = new PrefabGUID(-447032757); public static readonly PrefabGUID FurRugsBuildMenuGroup01 = new PrefabGUID(99797136); public static readonly PrefabGUID Garden_Child_LargeArchGrowth_BuildMenuGroup = new PrefabGUID(26202783); public static readonly PrefabGUID Garden_Child_ObeliskMetalGrowth_BuildMenuGroup = new PrefabGUID(1912576347); public static readonly PrefabGUID Garden_Child_ObeliskWoodGrowth_BuildMenuGroup = new PrefabGUID(-829543771); public static readonly PrefabGUID Garden_Child_PergolaGrowth_BuildMenuGroup = new PrefabGUID(1030088937); public static readonly PrefabGUID Garden_Child_PlanterGrowth_BuildMenuGroup = new PrefabGUID(307611651); public static readonly PrefabGUID Garden_Child_PlanterSmallGrowth_BuildMenuGroup = new PrefabGUID(575471000); public static readonly PrefabGUID Garden_Child_SmallArchGrowth_BuildMenuGroup = new PrefabGUID(-1080691672); public static readonly PrefabGUID Garden_Child_UrnPlant_BuildMenuGroup = new PrefabGUID(1882140039); public static readonly PrefabGUID Garden_Child_VasePlants_BuildMenuGroup = new PrefabGUID(-943888708); public static readonly PrefabGUID Garden_Fence_Noble_BuildMenuGroup = new PrefabGUID(93882805); public static readonly PrefabGUID Garden_Fence_Nocturne_BuildMenuGroup = new PrefabGUID(854172019); public static readonly PrefabGUID Garden_Fence_ProjectK01_BuildMenuGroup = new PrefabGUID(703643629); public static readonly PrefabGUID Garden_Fence_Stable01_BuildMenuGroup = new PrefabGUID(-697863956); public static readonly PrefabGUID Garden_Fence_Verdant_BuildMenuGroup = new PrefabGUID(-1126197513); public static readonly PrefabGUID Garden_Fence_Wood01_BuildMenuGroup = new PrefabGUID(-1380121552); public static readonly PrefabGUID Garden_Furniture01_BuildMenuGroup = new PrefabGUID(-998787793); public static readonly PrefabGUID Garden_HedgeMazeColumns01_BuildMenuGroup = new PrefabGUID(928070401); public static readonly PrefabGUID Garden_HedgeMazeColumns02_BuildMenuGroup = new PrefabGUID(-713181701); public static readonly PrefabGUID Garden_HedgeMazeSculptures01_BuildMenuGroup = new PrefabGUID(1856162195); public static readonly PrefabGUID Garden_HedgeMazeWalls01_BuildMenuGroup = new PrefabGUID(306707641); public static readonly PrefabGUID Garden_Parent_LargeArch_BuildMenuGroup = new PrefabGUID(-1487041071); public static readonly PrefabGUID Garden_Parent_ObeliskMetal_BuildMenuGroup = new PrefabGUID(1201592436); public static readonly PrefabGUID Garden_Parent_ObeliskWood_BuildMenuGroup = new PrefabGUID(1989624120); public static readonly PrefabGUID Garden_Parent_Pergola_BuildMenuGroup = new PrefabGUID(-560721299); public static readonly PrefabGUID Garden_Parent_Planters_BuildMenuGroup = new PrefabGUID(49591602); public static readonly PrefabGUID Garden_Parent_PlantersSmall_BuildMenuGroup = new PrefabGUID(941517155); public static readonly PrefabGUID Garden_Parent_SmallArch_BuildMenuGroup = new PrefabGUID(38757807); public static readonly PrefabGUID Garden_Parent_Urn_BuildMenuGroup = new PrefabGUID(946034208); public static readonly PrefabGUID Garden_Parent_VasesCabal_BuildMenuGroup = new PrefabGUID(-559330667); public static readonly PrefabGUID Garden_Parent_VasesFancy_BuildMenuGroup = new PrefabGUID(164750011); public static readonly PrefabGUID Garden_Parent_VasesMarble_BuildMenuGroup = new PrefabGUID(-838331782); public static readonly PrefabGUID Garden_Parent_VasesMetal_BuildMenuGroup = new PrefabGUID(176014446); public static readonly PrefabGUID GardenCastleWall_Pillar_BuildMenuGroup01 = new PrefabGUID(-722465769); public static readonly PrefabGUID GardenCastleWall_Wall_BuildMenuGroup01 = new PrefabGUID(-1121936044); public static readonly PrefabGUID GardenCastleWall_Window_BuildMenuGroup01 = new PrefabGUID(927576837); public static readonly PrefabGUID GardenFountainBuildMenuGroup = new PrefabGUID(1583999167); public static readonly PrefabGUID GarlicFullscrenFXCurve = new PrefabGUID(889427612); public static readonly PrefabGUID GateBossComponentsTemplate_Major = new PrefabGUID(-1695577577); public static readonly PrefabGUID GateBossComponentsTemplate_Minor = new PrefabGUID(-222706317); public static readonly PrefabGUID GenderCollection = new PrefabGUID(-738969776); public static readonly PrefabGUID GenderCollection_CustomizationScreen = new PrefabGUID(-2022511197); public static readonly PrefabGUID GeneralGameplayCollectionAset = new PrefabGUID(715471180); public static readonly PrefabGUID GentleLandingCurve = new PrefabGUID(2126701179); public static readonly PrefabGUID Geomancer_Human_Emote_OnAggro_Buff = new PrefabGUID(1127995064); public static readonly PrefabGUID GhostCrystalNode01_Broken = new PrefabGUID(193141048); public static readonly PrefabGUID GhostCrystalNode01_Broken_Small = new PrefabGUID(1701226856); public static readonly PrefabGUID GhostCrystalNode02_Broken = new PrefabGUID(1168863537); public static readonly PrefabGUID GhostCrystalNode02_Broken_Small = new PrefabGUID(-431869349); public static readonly PrefabGUID GhostCrystalNode03_Broken = new PrefabGUID(-1381994017); public static readonly PrefabGUID GhostCrystalNode03_Broken_Small = new PrefabGUID(-1924893924); public static readonly PrefabGUID Gloomrot_Iva_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-886233482); public static readonly PrefabGUID Gloomrot_Purifier_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-2043907215); public static readonly PrefabGUID Gloomrot_RailgunSergeant_VBlood_Emote_OnAggro_Buff = new PrefabGUID(351247261); public static readonly PrefabGUID Gloomrot_TheProfessor_Debuff_ElectricAmplify = new PrefabGUID(-343432994); public static readonly PrefabGUID Gloomrot_Voltage_VBlood_Emote_OnAggro_Buff = new PrefabGUID(226666490); public static readonly PrefabGUID GloomrotDLC_MutantTanksBuildMenuGroup = new PrefabGUID(-1329918198); public static readonly PrefabGUID GloomrotDLC_StatuesBuildMenuGroup = new PrefabGUID(-1884041169); public static readonly PrefabGUID GloomrotDLC01WindowsBuildMenuGroup = new PrefabGUID(-1913275858); public static readonly PrefabGUID GM_GameplayProp = new PrefabGUID(-526992001); public static readonly PrefabGUID GM_Unit_Harpy_Base = new PrefabGUID(-1172003904); public static readonly PrefabGUID GoldNode01_Broken = new PrefabGUID(-1915684879); public static readonly PrefabGUID GoldNode02_Broken = new PrefabGUID(-1783043192); public static readonly PrefabGUID GoldNode03_Broken = new PrefabGUID(-903253937); public static readonly PrefabGUID GoldNode04_Broken = new PrefabGUID(-1035218679); public static readonly PrefabGUID GothicBustBuildMenuGroup = new PrefabGUID(-812506425); public static readonly PrefabGUID GothicGargoyleBuildMenuGroup = new PrefabGUID(1169831915); public static readonly PrefabGUID GothicRugsBuildMenuGroup01 = new PrefabGUID(-745761195); public static readonly PrefabGUID GothicStatueBuildMenuGroup = new PrefabGUID(1758115715); public static readonly PrefabGUID GothicVaseBuildMenuGroup = new PrefabGUID(1404642596); public static readonly PrefabGUID Grave_01_Shattered = new PrefabGUID(286954769); public static readonly PrefabGUID Grave_05_Shattered = new PrefabGUID(-1246402238); public static readonly PrefabGUID Grave_06_Shattered = new PrefabGUID(-995353334); public static readonly PrefabGUID Grave_Marker_02_Shattered = new PrefabGUID(-806601610); public static readonly PrefabGUID Grave_Site_01_Shattered = new PrefabGUID(-1431095964); public static readonly PrefabGUID GravelPathsBuildMenuGroup = new PrefabGUID(-2109516535); public static readonly PrefabGUID Gravestone_01_Shattered = new PrefabGUID(1355432424); public static readonly PrefabGUID Gravestone_02_Shattered = new PrefabGUID(2021557372); public static readonly PrefabGUID Gravestone_04_Shattered = new PrefabGUID(305629638); public static readonly PrefabGUID Gravestone_05_Shattered = new PrefabGUID(1099303023); public static readonly PrefabGUID Gravestone_07_Shattered = new PrefabGUID(-1429516488); public static readonly PrefabGUID Gravestone_08_Shattered = new PrefabGUID(-1090303681); public static readonly PrefabGUID Gravestone_09_Shattered = new PrefabGUID(-456361316); public static readonly PrefabGUID Gravestone_10_Shattered = new PrefabGUID(191605357); public static readonly PrefabGUID Gravestone_11_Shattered = new PrefabGUID(1428179209); public static readonly PrefabGUID Gravestone_12_Shattered = new PrefabGUID(2045152532); public static readonly PrefabGUID Gravestone_18_Shattered = new PrefabGUID(1121119965); public static readonly PrefabGUID Gravestone_34_Shattered = new PrefabGUID(1715560873); public static readonly PrefabGUID Graveyard_FineIronFence01_Gate_Shattered = new PrefabGUID(-1593268626); public static readonly PrefabGUID Graveyard_FineIronFence01_Shattered02 = new PrefabGUID(657284474); public static readonly PrefabGUID Graveyard_FineIronFencePole01_Shattered = new PrefabGUID(-1525063225); public static readonly PrefabGUID Graveyard_FineStoneBench01_Shattered = new PrefabGUID(-1109592244); public static readonly PrefabGUID Graveyard_FineTomb01_Shattered = new PrefabGUID(-1170141636); public static readonly PrefabGUID Graveyard_FineTomb02_Shattered = new PrefabGUID(-1533972463); public static readonly PrefabGUID Graveyard_FineTomb03_Shattered = new PrefabGUID(16311632); public static readonly PrefabGUID Graveyard_FineTomb04_Shattered = new PrefabGUID(-1758017803); public static readonly PrefabGUID Graveyard_FineTomb05_Shattered = new PrefabGUID(-1411336888); public static readonly PrefabGUID Graveyard_FineTomb06_Shattered = new PrefabGUID(1425671604); public static readonly PrefabGUID Graveyard_FineTomb07_Shattered = new PrefabGUID(806943938); public static readonly PrefabGUID Graveyard_FineTomb08_Shattered = new PrefabGUID(-258471525); public static readonly PrefabGUID Graveyard_FineTombBig01_Shattered = new PrefabGUID(-209854307); public static readonly PrefabGUID Graveyard_FineTombBig02_Shattered = new PrefabGUID(-899446957); public static readonly PrefabGUID Graveyard_FineTombBig03_Shattered = new PrefabGUID(-2030429600); public static readonly PrefabGUID Graveyard_IronFence01_Gate_Shattered = new PrefabGUID(-1362004217); public static readonly PrefabGUID Graveyard_IronFence01_Shattered = new PrefabGUID(-122751124); public static readonly PrefabGUID Graveyard_IronFencePole01_Shattered = new PrefabGUID(1934477096); public static readonly PrefabGUID Graveyard_Noctem_DraculaGarden_Urn02_Shatter = new PrefabGUID(-1208350609); public static readonly PrefabGUID Graveyard_Noctem_DraculaGarden_Urn03_Shatter = new PrefabGUID(-296668280); public static readonly PrefabGUID Graveyard_StoneBench01_Shattered = new PrefabGUID(1605468625); public static readonly PrefabGUID Graveyard_StoneBench01_Shattered_snow = new PrefabGUID(-1218680513); public static readonly PrefabGUID Graveyard_StoneUrn01_Shattered = new PrefabGUID(224551126); public static readonly PrefabGUID Graveyard_StoneUrn02_Shattered = new PrefabGUID(-1405332491); public static readonly PrefabGUID Graveyard_StoneUrn03_Shattered = new PrefabGUID(-1512172453); public static readonly PrefabGUID Graveyard_Tomb01_Shattered = new PrefabGUID(-726455656); public static readonly PrefabGUID Graveyard_Tomb02_Shattered = new PrefabGUID(2020696576); public static readonly PrefabGUID Graveyard_Tomb03_Shattered = new PrefabGUID(1657586735); public static readonly PrefabGUID Graveyard_Tomb04_Shattered = new PrefabGUID(-1295489739); public static readonly PrefabGUID Graveyard_Tomb05_Shattered = new PrefabGUID(-1631564949); public static readonly PrefabGUID Graveyard_Tomb06_Shattered = new PrefabGUID(230623755); public static readonly PrefabGUID Graveyard_Tomb07_Shattered = new PrefabGUID(-2077109383); public static readonly PrefabGUID Graveyard_Tomb08_Shattered = new PrefabGUID(-1109303889); public static readonly PrefabGUID Graveyard_TombBig01_Shattered = new PrefabGUID(-1732117368); public static readonly PrefabGUID Graveyard_TombBig02_Shattered = new PrefabGUID(531188033); public static readonly PrefabGUID Graveyard_TombBig03_Shattered = new PrefabGUID(-744534770); public static readonly PrefabGUID Graveyard_Vampire_FineIronFencePole01_Shattered = new PrefabGUID(-1185321264); public static readonly PrefabGUID Graveyard_Vampire_IronFencePole01_Shattered = new PrefabGUID(-555975213); public static readonly PrefabGUID GreenCarpetsBuildMenuGroup01 = new PrefabGUID(-1717736046); public static readonly PrefabGUID GreenCarpetsBuildMenuGroup02 = new PrefabGUID(-903940648); public static readonly PrefabGUID GreenWindowsBuildMenuGroup = new PrefabGUID(-555641794); public static readonly PrefabGUID GrimoireOfHealingBuff = new PrefabGUID(-1507374109); public static readonly PrefabGUID Halloween01WallpaperBuildMenuGroup = new PrefabGUID(-998766448); public static readonly PrefabGUID Halloween01WindowsBuildMenuGroup = new PrefabGUID(-1660281350); public static readonly PrefabGUID HangingLanternsBuildMenuGroup01 = new PrefabGUID(145245340); public static readonly PrefabGUID HangingLanternsBuildMenuGroup02_DLC_Strongblade = new PrefabGUID(104194691); public static readonly PrefabGUID HapticsBuildModeSettings = new PrefabGUID(-441676978); public static readonly PrefabGUID HapticsDamageSettings = new PrefabGUID(-1105417571); public static readonly PrefabGUID Harpy_Matriarch_Emote_OnAggro_Buff = new PrefabGUID(100397530); public static readonly PrefabGUID Harpy_Matriarch_Idle_Buff = new PrefabGUID(-479553028); public static readonly PrefabGUID HarpyActivityTimer = new PrefabGUID(1297559091); public static readonly PrefabGUID HealingOrbCount_Curve = new PrefabGUID(-1905577265); public static readonly PrefabGUID HideCharacterBuff = new PrefabGUID(-474283096); public static readonly PrefabGUID Highlord_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1545705819); public static readonly PrefabGUID HighLordLeapCurve = new PrefabGUID(-996899387); public static readonly PrefabGUID Hunter_Slide_Curve = new PrefabGUID(-1556003342); public static readonly PrefabGUID IceRanger_VBlood_Emote_OnAggro_Buff = new PrefabGUID(377384576); public static readonly PrefabGUID IdleInteractionBuffRegistry = new PrefabGUID(-1077964245); public static readonly PrefabGUID Illusion_Vampire_Buff_Phantasm = new PrefabGUID(470859825); public static readonly PrefabGUID Illusion_Vampire_Buff_Weaken = new PrefabGUID(1723455773); public static readonly PrefabGUID Illusion_Vampire_Haunted_ExpireArea_01 = new PrefabGUID(-1957135364); public static readonly PrefabGUID Illusion_Vampire_Projectile_Haunted = new PrefabGUID(1035678908); public static readonly PrefabGUID Illusion_Vampire_ProjectileSpawnerBuff_Haunted = new PrefabGUID(-1246686383); public static readonly PrefabGUID Illusion_Vampire_SpellMod_Shield_Buff = new PrefabGUID(1093914645); public static readonly PrefabGUID Illusion_Vampire_Wisp_Projectile = new PrefabGUID(1187651307); public static readonly PrefabGUID Illusion_Vampire_Wisp_Projectile_Curse = new PrefabGUID(1553637877); public static readonly PrefabGUID Illusion_Vampire_Wisp_Projectile_Mosquito = new PrefabGUID(-1325101036); public static readonly PrefabGUID IllusionSpellSchoolAsset = new PrefabGUID(-526263322); public static readonly PrefabGUID Imperious01WallpaperBuildMenuGroup = new PrefabGUID(-1325337620); public static readonly PrefabGUID ImprisonedBuff = new PrefabGUID(1603329680); public static readonly PrefabGUID ImprisonSuccessful_PlayerBuff = new PrefabGUID(-1939804277); public static readonly PrefabGUID InfiniteInvulnerabilityBuff = new PrefabGUID(454502690); public static readonly PrefabGUID InstrumentsBuildMenuGroup = new PrefabGUID(-1500149151); public static readonly PrefabGUID InventoryRoute_SyncBuff = new PrefabGUID(2128314821); public static readonly PrefabGUID InventoryRouteInstance_Both = new PrefabGUID(-1946518072); public static readonly PrefabGUID InventoryRouteInstance_Incoming = new PrefabGUID(1741593497); public static readonly PrefabGUID InventoryRouteInstance_Outgoing = new PrefabGUID(2051027792); public static readonly PrefabGUID InventoryRouteSingleton = new PrefabGUID(-2067847121); public static readonly PrefabGUID InventoryRouting_Art_Intersection = new PrefabGUID(1063230079); public static readonly PrefabGUID InventoryRouting_Art_OneWayConnection = new PrefabGUID(-1236109008); public static readonly PrefabGUID InventoryRouting_Art_TwoWayConnection = new PrefabGUID(-1292134806); public static readonly PrefabGUID InvulnerabilityBuff = new PrefabGUID(1811209060); public static readonly PrefabGUID IronNode01_Broken = new PrefabGUID(-29011550); public static readonly PrefabGUID IronNode01_Broken_Small = new PrefabGUID(-1500356636); public static readonly PrefabGUID IronNode02_Broken = new PrefabGUID(-227918782); public static readonly PrefabGUID IronNode02_Broken_Small = new PrefabGUID(2007011209); public static readonly PrefabGUID IronNode03_Broken = new PrefabGUID(424301146); public static readonly PrefabGUID IronNode03_Broken_Small = new PrefabGUID(1015530309); public static readonly PrefabGUID IronNode04_Broken = new PrefabGUID(-1043572632); public static readonly PrefabGUID IronNode04_Broken_Small = new PrefabGUID(933021589); public static readonly PrefabGUID IronNodeBig01_Broken = new PrefabGUID(1582495783); public static readonly PrefabGUID IronNodeMedium01_Broken = new PrefabGUID(-1226435012); public static readonly PrefabGUID Item_Armor_Chest_Base = new PrefabGUID(1328680870); public static readonly PrefabGUID Item_Armor_Gloves_Base = new PrefabGUID(-786493143); public static readonly PrefabGUID Item_Armor_Headgear_Base = new PrefabGUID(-1905547794); public static readonly PrefabGUID Item_Armor_Legs_Base = new PrefabGUID(269771183); public static readonly PrefabGUID Item_BloodEssence_T01 = new PrefabGUID(862477668); public static readonly PrefabGUID Item_BloodEssence_T02_Greater = new PrefabGUID(271594022); public static readonly PrefabGUID Item_BloodEssence_T03_Primal = new PrefabGUID(1566989408); public static readonly PrefabGUID Item_Boots_T00_StartingRags = new PrefabGUID(-2137364987); public static readonly PrefabGUID Item_Boots_T01_Bone = new PrefabGUID(711062517); public static readonly PrefabGUID Item_Boots_T02_BoneReinforced = new PrefabGUID(1241831522); public static readonly PrefabGUID Item_Boots_T03_Cloth = new PrefabGUID(-1354920908); public static readonly PrefabGUID Item_Boots_T04_Copper_Brute = new PrefabGUID(-1359494169); public static readonly PrefabGUID Item_Boots_T04_Copper_Rogue = new PrefabGUID(1101206623); public static readonly PrefabGUID Item_Boots_T04_Copper_Scholar = new PrefabGUID(1204352435); public static readonly PrefabGUID Item_Boots_T04_Copper_Warrior = new PrefabGUID(-15390086); public static readonly PrefabGUID Item_Boots_T05_Cotton = new PrefabGUID(-1837769884); public static readonly PrefabGUID Item_Boots_T06_Iron_Brute = new PrefabGUID(-1329744719); public static readonly PrefabGUID Item_Boots_T06_Iron_Rogue = new PrefabGUID(51576788); public static readonly PrefabGUID Item_Boots_T06_Iron_Scholar = new PrefabGUID(138060378); public static readonly PrefabGUID Item_Boots_T06_Iron_Warrior = new PrefabGUID(666433583); public static readonly PrefabGUID Item_Boots_T07_Silk = new PrefabGUID(560446510); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Brute = new PrefabGUID(-1023762087); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Rogue = new PrefabGUID(-1921018689); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Scholar = new PrefabGUID(1469185034); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Warrior = new PrefabGUID(1395895315); public static readonly PrefabGUID Item_Boots_T09_Dracula = new PrefabGUID(1400688919); public static readonly PrefabGUID Item_Boots_T09_Dracula_Brute = new PrefabGUID(1646489863); public static readonly PrefabGUID Item_Boots_T09_Dracula_Rogue = new PrefabGUID(1855323424); public static readonly PrefabGUID Item_Boots_T09_Dracula_Scholar = new PrefabGUID(1531721602); public static readonly PrefabGUID Item_Boots_T09_Dracula_Warrior = new PrefabGUID(-382349289); public static readonly PrefabGUID Item_Boots_T0X_BlackfangSultan = new PrefabGUID(540608060); public static readonly PrefabGUID Item_Boots_T0X_PMK01 = new PrefabGUID(-1214309698); public static readonly PrefabGUID Item_Boots_T0X_PMK03 = new PrefabGUID(-14368032); public static readonly PrefabGUID Item_Boots_T0X_VampireKnight = new PrefabGUID(830032282); public static readonly PrefabGUID Item_Building_DuelFlag = new PrefabGUID(-262414476); public static readonly PrefabGUID Item_Building_EMP_T01 = new PrefabGUID(-1447213995); public static readonly PrefabGUID Item_Building_Explosives_T01 = new PrefabGUID(1779299585); public static readonly PrefabGUID Item_Building_Explosives_T02 = new PrefabGUID(-1021407417); public static readonly PrefabGUID Item_Building_Plants_BleedingHeart_Seed = new PrefabGUID(-1463158090); public static readonly PrefabGUID Item_Building_Plants_BloodRose_Seed = new PrefabGUID(531984050); public static readonly PrefabGUID Item_Building_Plants_CorruptedFlower_Seed = new PrefabGUID(-410008482); public static readonly PrefabGUID Item_Building_Plants_Cotton_Seed = new PrefabGUID(-1289010178); public static readonly PrefabGUID Item_Building_Plants_FireBlossom_Seed = new PrefabGUID(675013523); public static readonly PrefabGUID Item_Building_Plants_GhostShroom_Seed = new PrefabGUID(1762839393); public static readonly PrefabGUID Item_Building_Plants_Grapes_Seed = new PrefabGUID(-1681104075); public static readonly PrefabGUID Item_Building_Plants_HellsClarion_Seed = new PrefabGUID(-1987586694); public static readonly PrefabGUID Item_Building_Plants_MourningLily_Seed = new PrefabGUID(-1386314668); public static readonly PrefabGUID Item_Building_Plants_PlagueBrier_Seed = new PrefabGUID(-1495639636); public static readonly PrefabGUID Item_Building_Plants_SnowFlower_Seed = new PrefabGUID(1985892973); public static readonly PrefabGUID Item_Building_Plants_Sunflower_Seed = new PrefabGUID(-473351958); public static readonly PrefabGUID Item_Building_Plants_Thistle_Seed = new PrefabGUID(-1370210913); public static readonly PrefabGUID Item_Building_Plants_TrippyShroom_Seed = new PrefabGUID(1915695899); public static readonly PrefabGUID Item_Building_Relic_Behemoth = new PrefabGUID(1247086852); public static readonly PrefabGUID Item_Building_Relic_Manticore = new PrefabGUID(-222860772); public static readonly PrefabGUID Item_Building_Relic_Monster = new PrefabGUID(-1619308732); public static readonly PrefabGUID Item_Building_Relic_Paladin = new PrefabGUID(2019195024); public static readonly PrefabGUID Item_Building_Sapling_AppleCursed_Seed = new PrefabGUID(-1897495615); public static readonly PrefabGUID Item_Building_Sapling_AppleTree_Seed = new PrefabGUID(1226559814); public static readonly PrefabGUID Item_Building_Sapling_Aspen_Seed = new PrefabGUID(1996361886); public static readonly PrefabGUID Item_Building_Sapling_AspenAutum_Seed = new PrefabGUID(-2035190786); public static readonly PrefabGUID Item_Building_Sapling_Birch_Seed = new PrefabGUID(1552240197); public static readonly PrefabGUID Item_Building_Sapling_BirchAutum_Seed = new PrefabGUID(2000981302); public static readonly PrefabGUID Item_Building_Sapling_Cherry_Blossom = new PrefabGUID(1818351545); public static readonly PrefabGUID Item_Building_Sapling_CherryWhite_Blossom = new PrefabGUID(1738392650); public static readonly PrefabGUID Item_Building_Sapling_Cypress_Seed = new PrefabGUID(-1043479168); public static readonly PrefabGUID Item_Building_Sapling_GloomTree_Seed = new PrefabGUID(-1800289670); public static readonly PrefabGUID Item_Building_Sapling_Oak_Acorn = new PrefabGUID(-626353315); public static readonly PrefabGUID Item_Building_Sapling_Spruce_Cone = new PrefabGUID(1227483037); public static readonly PrefabGUID Item_Building_Sapling_WeepingWillow = new PrefabGUID(858598154); public static readonly PrefabGUID Item_Building_Siege_Golem_T02 = new PrefabGUID(-1461326411); public static readonly PrefabGUID Item_Chest_T00_StartingRags = new PrefabGUID(-1723445833); public static readonly PrefabGUID Item_Chest_T01_Bone = new PrefabGUID(329301090); public static readonly PrefabGUID Item_Chest_T02_BoneReinforced = new PrefabGUID(-958936382); public static readonly PrefabGUID Item_Chest_T03_Cloth = new PrefabGUID(-957963240); public static readonly PrefabGUID Item_Chest_T04_Copper_Brute = new PrefabGUID(-112921782); public static readonly PrefabGUID Item_Chest_T04_Copper_Rogue = new PrefabGUID(763326246); public static readonly PrefabGUID Item_Chest_T04_Copper_Scholar = new PrefabGUID(-2100321922); public static readonly PrefabGUID Item_Chest_T04_Copper_Warrior = new PrefabGUID(1809631067); public static readonly PrefabGUID Item_Chest_T05_Cotton = new PrefabGUID(-604941435); public static readonly PrefabGUID Item_Chest_T06_Iron_Brute = new PrefabGUID(-1641042717); public static readonly PrefabGUID Item_Chest_T06_Iron_Rogue = new PrefabGUID(-69916288); public static readonly PrefabGUID Item_Chest_T06_Iron_Scholar = new PrefabGUID(-2127687996); public static readonly PrefabGUID Item_Chest_T06_Iron_Warrior = new PrefabGUID(-2102875089); public static readonly PrefabGUID Item_Chest_T07_Silk = new PrefabGUID(-930514044); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Brute = new PrefabGUID(-1279475298); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Rogue = new PrefabGUID(1871735757); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Scholar = new PrefabGUID(-919709436); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Warrior = new PrefabGUID(750788905); public static readonly PrefabGUID Item_Chest_T09_Dracula = new PrefabGUID(1055898174); public static readonly PrefabGUID Item_Chest_T09_Dracula_Brute = new PrefabGUID(1033753207); public static readonly PrefabGUID Item_Chest_T09_Dracula_Rogue = new PrefabGUID(933057100); public static readonly PrefabGUID Item_Chest_T09_Dracula_Scholar = new PrefabGUID(114259912); public static readonly PrefabGUID Item_Chest_T09_Dracula_Warrior = new PrefabGUID(1392314162); public static readonly PrefabGUID Item_Chest_T0X_BlackfangSultan = new PrefabGUID(-247737453); public static readonly PrefabGUID Item_Chest_T0X_Cosmetic_Dress01 = new PrefabGUID(-511360389); public static readonly PrefabGUID Item_Chest_T0X_Cosmetic_Suit01 = new PrefabGUID(538326235); public static readonly PrefabGUID Item_Chest_T0X_PMK01 = new PrefabGUID(1712262077); public static readonly PrefabGUID Item_Chest_T0X_PMK02 = new PrefabGUID(896678280); public static readonly PrefabGUID Item_Chest_T0X_PMK03 = new PrefabGUID(-1349059251); public static readonly PrefabGUID Item_Chest_T0X_TransmogTest = new PrefabGUID(-625033436); public static readonly PrefabGUID Item_Chest_T0X_VampireKnight = new PrefabGUID(1953885108); public static readonly PrefabGUID Item_Cloak_Main_ShroudOfTheForest = new PrefabGUID(1063517722); public static readonly PrefabGUID Item_Cloak_Main_T01_Travelers = new PrefabGUID(-1819786494); public static readonly PrefabGUID Item_Cloak_Main_T02_Hunter = new PrefabGUID(786585343); public static readonly PrefabGUID Item_Cloak_Main_T03_Phantom = new PrefabGUID(-227965303); public static readonly PrefabGUID Item_Cloak_T01_ChaosArcher = new PrefabGUID(-168044197); public static readonly PrefabGUID Item_Cloak_T01_Dracula = new PrefabGUID(1284160983); public static readonly PrefabGUID Item_Cloak_T01_FrostArrow = new PrefabGUID(-24337506); public static readonly PrefabGUID Item_Cloak_T01_Jade = new PrefabGUID(1261174372); public static readonly PrefabGUID Item_Cloak_T01_PlagueMaster = new PrefabGUID(-1514540144); public static readonly PrefabGUID Item_Cloak_T01_Razer = new PrefabGUID(-766642494); public static readonly PrefabGUID Item_Cloak_T01_UndeadMage = new PrefabGUID(-305440546); public static readonly PrefabGUID Item_Cloak_T01_VampireHunter = new PrefabGUID(1335546377); public static readonly PrefabGUID Item_Cloak_T01_ZealousCultist = new PrefabGUID(150621304); public static readonly PrefabGUID Item_Cloak_T02_Cardinal = new PrefabGUID(-1768698241); public static readonly PrefabGUID Item_Cloak_T02_Dracula = new PrefabGUID(-1067360120); public static readonly PrefabGUID Item_Cloak_T02_HarpyMatriarch = new PrefabGUID(1677983904); public static readonly PrefabGUID Item_Cloak_T02_HolyPaladin = new PrefabGUID(-2091288477); public static readonly PrefabGUID Item_Cloak_T02_MilitiaMonk = new PrefabGUID(2147390246); public static readonly PrefabGUID Item_Cloak_T02_PatchedCloak = new PrefabGUID(1275572025); public static readonly PrefabGUID Item_Cloak_T02_PlagueMaster = new PrefabGUID(-1324340002); public static readonly PrefabGUID Item_Cloak_T02_Poloma = new PrefabGUID(-589858836); public static readonly PrefabGUID Item_Cloak_T02_Razer = new PrefabGUID(1410262258); public static readonly PrefabGUID Item_Cloak_T02_Tailor = new PrefabGUID(-2081646636); public static readonly PrefabGUID Item_Cloak_T02_TornRags = new PrefabGUID(707710831); public static readonly PrefabGUID Item_Cloak_T02_WildlingBlue = new PrefabGUID(239338934); public static readonly PrefabGUID Item_Cloak_T02_WildlingRed = new PrefabGUID(-1023114892); public static readonly PrefabGUID Item_Cloak_T03_CrimsonWard = new PrefabGUID(-1755568324); public static readonly PrefabGUID Item_Cloak_T03_Dracula = new PrefabGUID(-1814109557); public static readonly PrefabGUID Item_Cloak_T03_Jester = new PrefabGUID(379281083); public static readonly PrefabGUID Item_Cloak_T03_PlagueMaster = new PrefabGUID(821609569); public static readonly PrefabGUID Item_Cloak_T03_Razer = new PrefabGUID(136740861); public static readonly PrefabGUID Item_Cloak_T03_Royal = new PrefabGUID(584164197); public static readonly PrefabGUID Item_Cloak_T03_UnholyShroud = new PrefabGUID(1863126275); public static readonly PrefabGUID Item_Cloak_T0X_PMK01 = new PrefabGUID(-1177172544); public static readonly PrefabGUID Item_Consumable_BarrelDisguise01 = new PrefabGUID(-82465606); public static readonly PrefabGUID Item_Consumable_Bottle_Water_T02 = new PrefabGUID(-1382451936); public static readonly PrefabGUID Item_Consumable_Canister_ToxicSludge = new PrefabGUID(-1823614190); public static readonly PrefabGUID Item_Consumable_DuskCaller = new PrefabGUID(1128262258); public static readonly PrefabGUID Item_Consumable_Eat_Rat = new PrefabGUID(-869864524); public static readonly PrefabGUID Item_Consumable_EmptyBottle = new PrefabGUID(-437611596); public static readonly PrefabGUID Item_Consumable_EmptyWaterskin = new PrefabGUID(-810738866); public static readonly PrefabGUID Item_Consumable_FireResistancePotion_T01 = new PrefabGUID(970650569); public static readonly PrefabGUID Item_Consumable_GarlicResistancePotion_T01 = new PrefabGUID(423790753); public static readonly PrefabGUID Item_Consumable_GarlicResistancePotion_T02 = new PrefabGUID(-2139183850); public static readonly PrefabGUID Item_Consumable_HealingPotion_T01 = new PrefabGUID(800879747); public static readonly PrefabGUID Item_Consumable_HealingPotion_T02 = new PrefabGUID(429052660); public static readonly PrefabGUID Item_Consumable_Heart_T02_Tainted = new PrefabGUID(947998050); public static readonly PrefabGUID Item_Consumable_Heart_T03_Unsullied = new PrefabGUID(-204051056); public static readonly PrefabGUID Item_Consumable_Heart_T04_Exquisite = new PrefabGUID(-1965958712); public static readonly PrefabGUID Item_Consumable_Heart_T05_Pristine = new PrefabGUID(-1413694594); public static readonly PrefabGUID Item_Consumable_HolyResistancePotion_T01 = new PrefabGUID(890484447); public static readonly PrefabGUID Item_Consumable_HolyResistancePotion_T02 = new PrefabGUID(639992282); public static readonly PrefabGUID Item_Consumable_IrradiantGruel = new PrefabGUID(1851490036); public static readonly PrefabGUID Item_Consumable_PhysicalPowerPotion_T01 = new PrefabGUID(-269326085); public static readonly PrefabGUID Item_Consumable_PhysicalPowerPotion_T02 = new PrefabGUID(-1568756102); public static readonly PrefabGUID Item_Consumable_PrisonPotion = new PrefabGUID(828432508); public static readonly PrefabGUID Item_Consumable_PrisonPotion_Bloodwine = new PrefabGUID(1223264867); public static readonly PrefabGUID Item_Consumable_PrisonPotion_Mixed = new PrefabGUID(2063723255); public static readonly PrefabGUID Item_Consumable_Salve_Vermin = new PrefabGUID(-1885959251); public static readonly PrefabGUID Item_Consumable_SilverResistancePotion_T01 = new PrefabGUID(272647158); public static readonly PrefabGUID Item_Consumable_SilverResistancePotion_T02 = new PrefabGUID(2107622409); public static readonly PrefabGUID Item_Consumable_SpellPowerPotion_T01 = new PrefabGUID(248289327); public static readonly PrefabGUID Item_Consumable_SpellPowerPotion_T02 = new PrefabGUID(1510182325); public static readonly PrefabGUID Item_Consumable_SunResistancePotion_T01 = new PrefabGUID(-38051433); public static readonly PrefabGUID Item_Consumable_TrippyShroom = new PrefabGUID(-1566269773); public static readonly PrefabGUID Item_Consumable_Waterskin_Water_T01 = new PrefabGUID(-1322000172); public static readonly PrefabGUID Item_Consumable_WranglersPotion_T01 = new PrefabGUID(541321301); public static readonly PrefabGUID Item_Dummy_Banshee = new PrefabGUID(-1513937321); public static readonly PrefabGUID Item_Dummy_Ghoul = new PrefabGUID(2042311455); public static readonly PrefabGUID Item_Dummy_GiantRat = new PrefabGUID(213967097); public static readonly PrefabGUID Item_Dummy_Mosquito = new PrefabGUID(961990006); public static readonly PrefabGUID Item_Dummy_Mutant = new PrefabGUID(-338333923); public static readonly PrefabGUID Item_Dummy_Necromancer = new PrefabGUID(1252366498); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_BloodSoul = new PrefabGUID(1395316286); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Knowledge = new PrefabGUID(215017089); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Minerals = new PrefabGUID(-2141642225); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Seeds = new PrefabGUID(-112151309); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Weapons = new PrefabGUID(886819019); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Alchemy = new PrefabGUID(34841965); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_BloodSoul = new PrefabGUID(-107137497); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Knowledge = new PrefabGUID(1452779821); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Minerals = new PrefabGUID(-364321170); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Weapons = new PrefabGUID(-1199531707); public static readonly PrefabGUID Item_Dummy_PutridRat = new PrefabGUID(927039475); public static readonly PrefabGUID Item_Dummy_Rat = new PrefabGUID(2029158532); public static readonly PrefabGUID Item_Dummy_Silkworm = new PrefabGUID(930747930); public static readonly PrefabGUID Item_Dummy_Skeleton = new PrefabGUID(-836889492); public static readonly PrefabGUID Item_Dummy_Spiderling = new PrefabGUID(2015299972); public static readonly PrefabGUID Item_Elixir_Bat_T01 = new PrefabGUID(-2102469163); public static readonly PrefabGUID Item_Elixir_Beast_T01 = new PrefabGUID(98952351); public static readonly PrefabGUID Item_Elixir_Blasphemous_T01 = new PrefabGUID(-978856806); public static readonly PrefabGUID Item_Elixir_Crow_T01 = new PrefabGUID(904226111); public static readonly PrefabGUID Item_Elixir_Prowler_T01 = new PrefabGUID(1186268870); public static readonly PrefabGUID Item_Elixir_Raven_T01 = new PrefabGUID(-1561468105); public static readonly PrefabGUID Item_Elixir_Twisted_T01 = new PrefabGUID(1646351394); public static readonly PrefabGUID Item_Elixir_Werewolf_T01 = new PrefabGUID(948466634); public static readonly PrefabGUID Item_EquipBuff_MagicSource_BloodKey_T01 = new PrefabGUID(-502657668); public static readonly PrefabGUID Item_EquipBuff_MagicSource_General = new PrefabGUID(1713274869); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Dracula = new PrefabGUID(-504120321); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Manticore = new PrefabGUID(1002452390); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Morgana = new PrefabGUID(-251408621); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Solarus = new PrefabGUID(329820611); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_TheMonster = new PrefabGUID(403228886); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Blood = new PrefabGUID(-1913267809); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Chaos = new PrefabGUID(70790760); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Frost = new PrefabGUID(-1966309638); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Illusion = new PrefabGUID(758351209); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Storm = new PrefabGUID(-1294665102); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Unholy = new PrefabGUID(-1970668481); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Blood = new PrefabGUID(-331907553); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Chaos = new PrefabGUID(-298146452); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Frost = new PrefabGUID(537568578); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Illusion = new PrefabGUID(1623411847); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Storm = new PrefabGUID(1466670454); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Unholy = new PrefabGUID(-1635653575); public static readonly PrefabGUID Item_EquipBuff_Shared_General = new PrefabGUID(343359674); public static readonly PrefabGUID Item_Gloves_T00_StartingRags = new PrefabGUID(1216450741); public static readonly PrefabGUID Item_Gloves_T01_Bone = new PrefabGUID(-2029933415); public static readonly PrefabGUID Item_Gloves_T02_BoneReinforced = new PrefabGUID(1746537832); public static readonly PrefabGUID Item_Gloves_T03_Cloth = new PrefabGUID(-1183157751); public static readonly PrefabGUID Item_Gloves_T04_Copper_Brute = new PrefabGUID(-258808647); public static readonly PrefabGUID Item_Gloves_T04_Copper_Rogue = new PrefabGUID(181112381); public static readonly PrefabGUID Item_Gloves_T04_Copper_Scholar = new PrefabGUID(-399521517); public static readonly PrefabGUID Item_Gloves_T04_Copper_Warrior = new PrefabGUID(-752418019); public static readonly PrefabGUID Item_Gloves_T05_Cotton = new PrefabGUID(-406808302); public static readonly PrefabGUID Item_Gloves_T06_Iron_Brute = new PrefabGUID(-327754127); public static readonly PrefabGUID Item_Gloves_T06_Iron_Rogue = new PrefabGUID(322804535); public static readonly PrefabGUID Item_Gloves_T06_Iron_Scholar = new PrefabGUID(1247389106); public static readonly PrefabGUID Item_Gloves_T06_Iron_Warrior = new PrefabGUID(1067300584); public static readonly PrefabGUID Item_Gloves_T07_Silk = new PrefabGUID(2055058719); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Brute = new PrefabGUID(998240678); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Rogue = new PrefabGUID(-1752332712); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Scholar = new PrefabGUID(1508214166); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Warrior = new PrefabGUID(-1296203752); public static readonly PrefabGUID Item_Gloves_T09_Dracula = new PrefabGUID(-204401621); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Brute = new PrefabGUID(1039083725); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Rogue = new PrefabGUID(-1826382550); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Scholar = new PrefabGUID(-1899539896); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Warrior = new PrefabGUID(1982551454); public static readonly PrefabGUID Item_Gloves_T0X_BlackfangSultan = new PrefabGUID(-749828559); public static readonly PrefabGUID Item_Gloves_T0X_PMK01 = new PrefabGUID(-1522497513); public static readonly PrefabGUID Item_Gloves_T0X_VampireKnight = new PrefabGUID(-745793193); public static readonly PrefabGUID Item_Headgear_ArcMageCrown = new PrefabGUID(-2128818978); public static readonly PrefabGUID Item_Headgear_AshfolkCrown = new PrefabGUID(-1988816037); public static readonly PrefabGUID Item_Headgear_AshfolkHelmet = new PrefabGUID(-1607893829); public static readonly PrefabGUID Item_Headgear_BearTrophy = new PrefabGUID(714007172); public static readonly PrefabGUID Item_Headgear_BlackfangSultan = new PrefabGUID(1729289046); public static readonly PrefabGUID Item_Headgear_BoneMask = new PrefabGUID(-2111388989); public static readonly PrefabGUID Item_Headgear_Bonnet = new PrefabGUID(-152150271); public static readonly PrefabGUID Item_Headgear_DeerTrophy = new PrefabGUID(1707139699); public static readonly PrefabGUID Item_Headgear_DraculaHelmet = new PrefabGUID(238268650); public static readonly PrefabGUID Item_Headgear_FootmansHelmet = new PrefabGUID(-353076115); public static readonly PrefabGUID Item_Headgear_GeneralHelmet = new PrefabGUID(409678749); public static readonly PrefabGUID Item_Headgear_KnightsHelmet = new PrefabGUID(-1818243335); public static readonly PrefabGUID Item_Headgear_MaidCap = new PrefabGUID(-1721887666); public static readonly PrefabGUID Item_Headgear_MaidScarf = new PrefabGUID(-1460281233); public static readonly PrefabGUID Item_Headgear_MilitiaHelmet = new PrefabGUID(417648894); public static readonly PrefabGUID Item_Headgear_NecromancerMitre = new PrefabGUID(607559019); public static readonly PrefabGUID Item_Headgear_NightlurkerTrophy = new PrefabGUID(-2073081569); public static readonly PrefabGUID Item_Headgear_PaladinsHelmet = new PrefabGUID(1780339680); public static readonly PrefabGUID Item_Headgear_PilgrimsHat = new PrefabGUID(-1071187362); public static readonly PrefabGUID Item_Headgear_Plaguemaster = new PrefabGUID(-262204844); public static readonly PrefabGUID Item_Headgear_PopeMitre = new PrefabGUID(-548847761); public static readonly PrefabGUID Item_Headgear_RazerHood = new PrefabGUID(-1797796642); public static readonly PrefabGUID Item_Headgear_RustedHelmet = new PrefabGUID(1364460757); public static readonly PrefabGUID Item_Headgear_RustedMilitiaHelmet = new PrefabGUID(764480170); public static readonly PrefabGUID Item_Headgear_Scarecrow = new PrefabGUID(403967307); public static readonly PrefabGUID Item_Headgear_SlaveHelmet = new PrefabGUID(1587354182); public static readonly PrefabGUID Item_Headgear_StartingRags = new PrefabGUID(-2125696865); public static readonly PrefabGUID Item_Headgear_Strawhat = new PrefabGUID(1375804543); public static readonly PrefabGUID Item_Headgear_TopHat = new PrefabGUID(690259405); public static readonly PrefabGUID Item_Headgear_VampireHunterHat = new PrefabGUID(974739126); public static readonly PrefabGUID Item_Headgear_VampireHunterHat02 = new PrefabGUID(-1785271534); public static readonly PrefabGUID Item_Headgear_WerewolfTrophy = new PrefabGUID(-2020831626); public static readonly PrefabGUID Item_Headgear_WolfTrophy01 = new PrefabGUID(-1169471531); public static readonly PrefabGUID Item_Ingredient_BatHide = new PrefabGUID(1262845777); public static readonly PrefabGUID Item_Ingredient_BatLeather = new PrefabGUID(-1886460367); public static readonly PrefabGUID Item_Ingredient_Battery = new PrefabGUID(1270271716); public static readonly PrefabGUID Item_Ingredient_BatteryCharged = new PrefabGUID(-412448857); public static readonly PrefabGUID Item_Ingredient_BloodCrystal = new PrefabGUID(-1913156733); public static readonly PrefabGUID Item_Ingredient_Bone = new PrefabGUID(1821405450); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Brute = new PrefabGUID(362386181); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Rogue = new PrefabGUID(-383004511); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Scholar = new PrefabGUID(-1601304786); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Warrior = new PrefabGUID(-668460646); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Brute = new PrefabGUID(1529216919); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Rogue = new PrefabGUID(762038154); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Scholar = new PrefabGUID(-1147510581); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Warrior = new PrefabGUID(-1788912715); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Brute = new PrefabGUID(-534142437); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Rogue = new PrefabGUID(-706178162); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Scholar = new PrefabGUID(-1958602686); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Warrior = new PrefabGUID(1192629421); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Brute = new PrefabGUID(1850873910); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Rogue = new PrefabGUID(-849449432); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Scholar = new PrefabGUID(2025615662); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Warrior = new PrefabGUID(1753801067); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Brute = new PrefabGUID(626083889); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Rogue = new PrefabGUID(-1595316636); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Scholar = new PrefabGUID(-2066262923); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Warrior = new PrefabGUID(1561721357); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Brute = new PrefabGUID(-1261118965); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Rogue = new PrefabGUID(502133568); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Scholar = new PrefabGUID(-1840162782); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Warrior = new PrefabGUID(-1161279574); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Brute = new PrefabGUID(-764630320); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Rogue = new PrefabGUID(1014370193); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Scholar = new PrefabGUID(1840869087); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Warrior = new PrefabGUID(-1242910338); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Brute = new PrefabGUID(-1344118299); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Rogue = new PrefabGUID(735880687); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Scholar = new PrefabGUID(-46006079); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Warrior = new PrefabGUID(-777417289); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Brute = new PrefabGUID(2020764183); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Rogue = new PrefabGUID(1485993952); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Scholar = new PrefabGUID(-1512099553); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Warrior = new PrefabGUID(-196284663); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Brute = new PrefabGUID(1172935197); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Rogue = new PrefabGUID(1364444719); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Scholar = new PrefabGUID(-117205517); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Warrior = new PrefabGUID(347441899); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Brute = new PrefabGUID(1328323768); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Rogue = new PrefabGUID(1912738568); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Scholar = new PrefabGUID(-595456862); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Warrior = new PrefabGUID(-1718233147); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Brute = new PrefabGUID(-996201260); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Rogue = new PrefabGUID(-1260890289); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Scholar = new PrefabGUID(-2049321404); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Warrior = new PrefabGUID(-2104396934); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_BloodRoseBrew_T01 = new PrefabGUID(-895015382); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_FireResistance_T02 = new PrefabGUID(2114304481); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_GarlicResistance_T02 = new PrefabGUID(791584738); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_PhysicalPower_T01 = new PrefabGUID(1556544548); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_PhysicalPower_T03 = new PrefabGUID(-2013887729); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SilverBrew_T01 = new PrefabGUID(-1269116849); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SpellPower_T01 = new PrefabGUID(492964298); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SpellPower_T03 = new PrefabGUID(-1563178470); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SunResistance_T01 = new PrefabGUID(756555009); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_Wranglers_T02 = new PrefabGUID(-1242947472); public static readonly PrefabGUID Item_Ingredient_Book_Floor_AlchemyLab = new PrefabGUID(978074988); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Forge = new PrefabGUID(-1233700610); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Jewelcrafting = new PrefabGUID(626118128); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Library = new PrefabGUID(-946177070); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Prison = new PrefabGUID(1718353003); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Tailor = new PrefabGUID(-137886670); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Workshop = new PrefabGUID(1906638073); public static readonly PrefabGUID Item_Ingredient_Book_Interior_Planters = new PrefabGUID(1336896559); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_Duskwatcher = new PrefabGUID(-293419350); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_EmberChain = new PrefabGUID(-1542642288); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_FrozenEye = new PrefabGUID(-1913800363); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_MistSignet = new PrefabGUID(1310923765); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_RubyRing = new PrefabGUID(350769859); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_SorcererRing = new PrefabGUID(1458090717); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_AmethystPendant = new PrefabGUID(587164554); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_EmeraldNecklace = new PrefabGUID(-224716062); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_MistStoneNecklace = new PrefabGUID(759775881); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_RubyPendant = new PrefabGUID(-1658630722); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_SapphirePendant = new PrefabGUID(1939500376); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_TopazAmulet = new PrefabGUID(1474515294); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_Beast = new PrefabGUID(1702347530); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_CrimsonSky = new PrefabGUID(-1063966176); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_Delusion = new PrefabGUID(-1803818846); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_FrozenCrypt = new PrefabGUID(-749171183); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_Madness = new PrefabGUID(-1424521314); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_WickedProphet = new PrefabGUID(860383634); public static readonly PrefabGUID Item_Ingredient_Book_Structure_ArtisanTable = new PrefabGUID(-1221174479); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Braziers_T02 = new PrefabGUID(742900616); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Braziers_T03 = new PrefabGUID(835610037); public static readonly PrefabGUID Item_Ingredient_Book_Structure_CandleStands_T02 = new PrefabGUID(1341367867); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Carpets_T01 = new PrefabGUID(1383064284); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Carpets_T02_Dux = new PrefabGUID(-96701352); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Carpets_T03_Distinguished = new PrefabGUID(-1696677607); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Chairs_Desk_T02 = new PrefabGUID(389446538); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Chairs_Red_T02 = new PrefabGUID(-1929817673); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Curtains_T03_Royal = new PrefabGUID(285318201); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Desks_T02 = new PrefabGUID(-840839363); public static readonly PrefabGUID Item_Ingredient_Book_Structure_DressingTablesFoldingWalls_T03 = new PrefabGUID(-1676748911); public static readonly PrefabGUID Item_Ingredient_Book_Structure_EnchantedTorches = new PrefabGUID(879103343); public static readonly PrefabGUID Item_Ingredient_Book_Structure_FenceFountains_T02 = new PrefabGUID(679755989); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Fireplaces_T02 = new PrefabGUID(-946597284); public static readonly PrefabGUID Item_Ingredient_Book_Structure_FlyingCandles_T03 = new PrefabGUID(1594270493); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Fountain_T03 = new PrefabGUID(-1171060793); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenFurniture_T02 = new PrefabGUID(-1060453249); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenLampPosts_T03 = new PrefabGUID(776216743); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenPlanters_T01 = new PrefabGUID(1307976528); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenPlanters_T02 = new PrefabGUID(-1383718976); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenPlanters_T03 = new PrefabGUID(-1645899934); public static readonly PrefabGUID Item_Ingredient_Book_Structure_HangingLanterns_T02 = new PrefabGUID(-452767162); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Paintings_T01 = new PrefabGUID(38319072); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Path_Cobblestone_T02 = new PrefabGUID(2094602185); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Path_Dirt_T01 = new PrefabGUID(-94650344); public static readonly PrefabGUID Item_Ingredient_Book_Structure_PillarBanners_T02 = new PrefabGUID(-1321865795); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Sofas_T03 = new PrefabGUID(2053574378); public static readonly PrefabGUID Item_Ingredient_Book_Structure_StoneOrnaments_T01 = new PrefabGUID(-449615886); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Alchemy_T02 = new PrefabGUID(11798247); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Alchemy_T03 = new PrefabGUID(-67943596); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Armor_T02 = new PrefabGUID(207381334); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_BloodCase_T02 = new PrefabGUID(-130369231); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_BloodCase_T03 = new PrefabGUID(489001758); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Coins_T02 = new PrefabGUID(-832387204); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Consumable_T02 = new PrefabGUID(-1624005683); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Consumable_T03 = new PrefabGUID(824237901); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Fishing_T02 = new PrefabGUID(-205820651); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Gems_T01 = new PrefabGUID(1455590675); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Gems_T02 = new PrefabGUID(1150376281); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Herbs_T01 = new PrefabGUID(-853559619); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Herbs_T02 = new PrefabGUID(473545520); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Jewels_T02 = new PrefabGUID(-1870194782); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Knowledge_T02 = new PrefabGUID(-1394295910); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Knowledge_T03 = new PrefabGUID(1823379076); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Minerals_T01 = new PrefabGUID(-513865346); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Minerals_T02 = new PrefabGUID(-1061940339); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Pack_Equipment_T02 = new PrefabGUID(1249076837); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Pack_T01 = new PrefabGUID(686122001); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Pack_T02 = new PrefabGUID(1519475093); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_T01 = new PrefabGUID(-651642571); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_T02 = new PrefabGUID(-999518496); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_T03 = new PrefabGUID(1691702273); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Tailoring_T02 = new PrefabGUID(-1304625582); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Tailoring_T03 = new PrefabGUID(-63123159); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Weapons_T02 = new PrefabGUID(-1564741377); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Woodworking_T01 = new PrefabGUID(1040245278); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Woodworking_T02 = new PrefabGUID(206151993); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Tables_T02 = new PrefabGUID(-1236809045); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Vases_T01 = new PrefabGUID(1428883363); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Bricks_T01 = new PrefabGUID(-1957642407); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Classical_T03 = new PrefabGUID(1884115881); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Cordial_T02 = new PrefabGUID(-581757157); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Prison_T02 = new PrefabGUID(-2086890414); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Stone_T01 = new PrefabGUID(-2017255390); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_WoodPanel_T01 = new PrefabGUID(-106224889); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Well_T01 = new PrefabGUID(-1205373095); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Windows_T01 = new PrefabGUID(1905539368); public static readonly PrefabGUID Item_Ingredient_Book_Structure_WorkshopDecoration_T02 = new PrefabGUID(1413772406); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Axe_T04 = new PrefabGUID(660670410); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Axe_T06 = new PrefabGUID(-1596352033); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Axe_T08 = new PrefabGUID(-1519267007); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Claws_T06 = new PrefabGUID(574313564); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Claws_T08 = new PrefabGUID(-213056154); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Crossbow_T04 = new PrefabGUID(-192381912); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Crossbow_T06 = new PrefabGUID(937375187); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Crossbow_T08 = new PrefabGUID(1856338018); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Daggers_T06 = new PrefabGUID(1253216070); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Daggers_T08 = new PrefabGUID(1271236919); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_GreatSword_T06 = new PrefabGUID(1126901893); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_GreatSword_T08 = new PrefabGUID(730869315); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Longbow_T04 = new PrefabGUID(460843266); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Longbow_T06 = new PrefabGUID(-1793793429); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Longbow_T08 = new PrefabGUID(722498174); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Mace_T04 = new PrefabGUID(-1003381140); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Mace_T06 = new PrefabGUID(1526542305); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Mace_T08 = new PrefabGUID(-567468235); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Pistols_T06 = new PrefabGUID(1370998844); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Pistols_T08 = new PrefabGUID(-349470582); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Reaper_T06 = new PrefabGUID(-977419819); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Reaper_T08 = new PrefabGUID(1350548439); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Slashers_T06 = new PrefabGUID(1942009728); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Slashers_T08 = new PrefabGUID(615301463); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Spear_T04 = new PrefabGUID(-1690985210); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Spear_T06 = new PrefabGUID(-1783670291); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Spear_T08 = new PrefabGUID(-1396190808); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Sword_T04 = new PrefabGUID(-1455124124); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Sword_T06 = new PrefabGUID(1427084419); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Sword_T08 = new PrefabGUID(1075465533); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_TwinBlades_T06 = new PrefabGUID(-457986654); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_TwinBlades_T08 = new PrefabGUID(1200302278); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Whip_T06 = new PrefabGUID(710159072); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Whip_T08 = new PrefabGUID(-1033721040); public static readonly PrefabGUID Item_Ingredient_CarpetRoll = new PrefabGUID(1046366876); public static readonly PrefabGUID Item_Ingredient_CastleKey_T01 = new PrefabGUID(960030104); public static readonly PrefabGUID Item_Ingredient_CastleKey_T02 = new PrefabGUID(724428437); public static readonly PrefabGUID Item_Ingredient_CastleKey_T03 = new PrefabGUID(-950839771); public static readonly PrefabGUID Item_Ingredient_CastleKey_T04 = new PrefabGUID(551949280); public static readonly PrefabGUID Item_Ingredient_CastleUpkeep_Fake = new PrefabGUID(421203343); public static readonly PrefabGUID Item_Ingredient_Chitin = new PrefabGUID(-953253466); public static readonly PrefabGUID Item_Ingredient_Clay = new PrefabGUID(317317590); public static readonly PrefabGUID Item_Ingredient_ClayMold = new PrefabGUID(-1257026088); public static readonly PrefabGUID Item_Ingredient_Cloth = new PrefabGUID(-700774739); public static readonly PrefabGUID Item_Ingredient_Coal = new PrefabGUID(-1932461974); public static readonly PrefabGUID Item_Ingredient_Coin_Copper = new PrefabGUID(28625845); public static readonly PrefabGUID Item_Ingredient_Coin_Royal = new PrefabGUID(-571562864); public static readonly PrefabGUID Item_Ingredient_Coin_Silver = new PrefabGUID(-949672483); public static readonly PrefabGUID Item_Ingredient_CopperWires = new PrefabGUID(-456161884); public static readonly PrefabGUID Item_Ingredient_CorruptedSap = new PrefabGUID(2012771684); public static readonly PrefabGUID Item_Ingredient_CottonYarn = new PrefabGUID(444400639); public static readonly PrefabGUID Item_Ingredient_Crystal = new PrefabGUID(-257494203); public static readonly PrefabGUID Item_Ingredient_DemonFragment = new PrefabGUID(-77477508); public static readonly PrefabGUID Item_Ingredient_Document = new PrefabGUID(1334469825); public static readonly PrefabGUID Item_Ingredient_Emberglass = new PrefabGUID(-1715039285); public static readonly PrefabGUID Item_Ingredient_Emery = new PrefabGUID(-1578565561); public static readonly PrefabGUID Item_Ingredient_Fish_BloodSnapper_T02 = new PrefabGUID(-1779269313); public static readonly PrefabGUID Item_Ingredient_Fish_Corrupted_T03 = new PrefabGUID(2069171407); public static readonly PrefabGUID Item_Ingredient_Fish_FatGoby_T01 = new PrefabGUID(-1642545082); public static readonly PrefabGUID Item_Ingredient_Fish_FierceStinger_T01 = new PrefabGUID(447901086); public static readonly PrefabGUID Item_Ingredient_Fish_GoldenRiverBass_T03 = new PrefabGUID(67930804); public static readonly PrefabGUID Item_Ingredient_Fish_RainbowTrout_T01 = new PrefabGUID(-149778795); public static readonly PrefabGUID Item_Ingredient_Fish_SageFish_T02 = new PrefabGUID(736318803); public static readonly PrefabGUID Item_Ingredient_Fish_SwampDweller_T03 = new PrefabGUID(177845365); public static readonly PrefabGUID Item_Ingredient_Fish_TheFish = new PrefabGUID(176401052); public static readonly PrefabGUID Item_Ingredient_Fish_TwilightSnapper_T02 = new PrefabGUID(-570287766); public static readonly PrefabGUID Item_Ingredient_FishBone = new PrefabGUID(424158416); public static readonly PrefabGUID Item_Ingredient_Fishoil = new PrefabGUID(-242277891); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T01 = new PrefabGUID(225530658); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T02 = new PrefabGUID(-1962855117); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T03 = new PrefabGUID(1705028227); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T04 = new PrefabGUID(-106283194); public static readonly PrefabGUID Item_Ingredient_Gem_Base = new PrefabGUID(-656822228); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T01 = new PrefabGUID(-237441421); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T02 = new PrefabGUID(357608868); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T03 = new PrefabGUID(1898237421); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T04 = new PrefabGUID(1354115931); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T01 = new PrefabGUID(-1129708579); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T02 = new PrefabGUID(802050789); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T03 = new PrefabGUID(-1963826510); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T04 = new PrefabGUID(750542699); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T01 = new PrefabGUID(287586809); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T02 = new PrefabGUID(51046573); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T03 = new PrefabGUID(74811721); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T04 = new PrefabGUID(188653143); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T01 = new PrefabGUID(552409457); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T02 = new PrefabGUID(131015492); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T03 = new PrefabGUID(-1147920398); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T04 = new PrefabGUID(-2020212226); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T01 = new PrefabGUID(867351268); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T02 = new PrefabGUID(-2118441460); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T03 = new PrefabGUID(-2051574178); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T04 = new PrefabGUID(-1983566585); public static readonly PrefabGUID Item_Ingredient_Gemdust = new PrefabGUID(820932258); public static readonly PrefabGUID Item_Ingredient_Gemstone = new PrefabGUID(2115367516); public static readonly PrefabGUID Item_Ingredient_GhostYarn = new PrefabGUID(2106123809); public static readonly PrefabGUID Item_Ingredient_Glass = new PrefabGUID(-1233716303); public static readonly PrefabGUID Item_Ingredient_GoldenJewelry = new PrefabGUID(-1749304196); public static readonly PrefabGUID Item_Ingredient_Gravedust = new PrefabGUID(-608131642); public static readonly PrefabGUID Item_Ingredient_IronBody = new PrefabGUID(988417522); public static readonly PrefabGUID Item_Ingredient_Kit_Base = new PrefabGUID(1413130999); public static readonly PrefabGUID Item_Ingredient_Kit_Blacksmith_T02 = new PrefabGUID(-167936394); public static readonly PrefabGUID Item_Ingredient_Kit_Blacksmith_T03 = new PrefabGUID(-580716317); public static readonly PrefabGUID Item_Ingredient_Kit_Blacksmith_T04 = new PrefabGUID(-1838793646); public static readonly PrefabGUID Item_Ingredient_Kit_Magic_T04 = new PrefabGUID(1488205677); public static readonly PrefabGUID Item_Ingredient_Kit_Tailoring_T04 = new PrefabGUID(828271620); public static readonly PrefabGUID Item_Ingredient_Leather = new PrefabGUID(-1907572080); public static readonly PrefabGUID Item_Ingredient_MapZone_Fish = new PrefabGUID(193249843); public static readonly PrefabGUID Item_Ingredient_MapZone_GemVein_T02 = new PrefabGUID(889298519); public static readonly PrefabGUID Item_Ingredient_MapZone_GemVein_T03 = new PrefabGUID(301051123); public static readonly PrefabGUID Item_Ingredient_MapZone_Plants = new PrefabGUID(968796494); public static readonly PrefabGUID Item_Ingredient_MapZone_Potions = new PrefabGUID(-1617671082); public static readonly PrefabGUID Item_Ingredient_MapZone_Tesla = new PrefabGUID(-77555820); public static readonly PrefabGUID Item_Ingredient_MapZone_Vendor = new PrefabGUID(-696770536); public static readonly PrefabGUID Item_Ingredient_Mineral_CopperIngot = new PrefabGUID(-1237019921); public static readonly PrefabGUID Item_Ingredient_Mineral_CopperOre = new PrefabGUID(-1805325497); public static readonly PrefabGUID Item_Ingredient_Mineral_DarkSilverBar = new PrefabGUID(-762000259); public static readonly PrefabGUID Item_Ingredient_Mineral_GhostCrystal = new PrefabGUID(-1748835106); public static readonly PrefabGUID Item_Ingredient_Mineral_GoldBar = new PrefabGUID(-1027710236); public static readonly PrefabGUID Item_Ingredient_Mineral_GoldOre = new PrefabGUID(660533034); public static readonly PrefabGUID Item_Ingredient_Mineral_IronBar = new PrefabGUID(-1750550553); public static readonly PrefabGUID Item_Ingredient_Mineral_IronOre = new PrefabGUID(1332980397); public static readonly PrefabGUID Item_Ingredient_Mineral_Obsidian = new PrefabGUID(-543524210); public static readonly PrefabGUID Item_Ingredient_Mineral_Quartz = new PrefabGUID(-1583485601); public static readonly PrefabGUID Item_Ingredient_Mineral_SilverBar = new PrefabGUID(-1787563914); public static readonly PrefabGUID Item_Ingredient_Mineral_SilverOre = new PrefabGUID(1686577386); public static readonly PrefabGUID Item_Ingredient_Mineral_Sulfur = new PrefabGUID(880699252); public static readonly PrefabGUID Item_Ingredient_Mineral_SulfurOre = new PrefabGUID(1501868129); public static readonly PrefabGUID Item_Ingredient_MutantGrease = new PrefabGUID(-1527315816); public static readonly PrefabGUID Item_Ingredient_OnyxTear = new PrefabGUID(-651878258); public static readonly PrefabGUID Item_Ingredient_PaintingFrame = new PrefabGUID(1553481703); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ArcaneAnimator = new PrefabGUID(806031638); public static readonly PrefabGUID Item_Ingredient_Passive_T01_BloodSpray = new PrefabGUID(1561531999); public static readonly PrefabGUID Item_Ingredient_Passive_T01_BloodTypeEfficiency = new PrefabGUID(-1012087769); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ChaosKindling = new PrefabGUID(-744023422); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ChillWeave = new PrefabGUID(1314569175); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ColdSoul = new PrefabGUID(759629166); public static readonly PrefabGUID Item_Ingredient_Passive_T01_EnhancedConductivity = new PrefabGUID(-295674777); public static readonly PrefabGUID Item_Ingredient_Passive_T01_FlowingSorcery = new PrefabGUID(1532551951); public static readonly PrefabGUID Item_Ingredient_Passive_T01_LightningFastStrikes = new PrefabGUID(177536500); public static readonly PrefabGUID Item_Ingredient_Passive_T01_RenewingFlames = new PrefabGUID(201124833); public static readonly PrefabGUID Item_Ingredient_Passive_T01_SoulDrinker = new PrefabGUID(-1150810012); public static readonly PrefabGUID Item_Ingredient_Passive_T01_SpiritualInfusion = new PrefabGUID(-1645974345); public static readonly PrefabGUID Item_Ingredient_Passive_T02_Bastion = new PrefabGUID(583764996); public static readonly PrefabGUID Item_Ingredient_Passive_T02_DarkEnchantment = new PrefabGUID(-1289785922); public static readonly PrefabGUID Item_Ingredient_Passive_T02_EmbraceMayhem = new PrefabGUID(-1305686817); public static readonly PrefabGUID Item_Ingredient_Passive_T02_FeralHaste = new PrefabGUID(1725419936); public static readonly PrefabGUID Item_Ingredient_Passive_T02_HungerForPower = new PrefabGUID(-1361596609); public static readonly PrefabGUID Item_Ingredient_Passive_T02_LethalStrikes = new PrefabGUID(765693103); public static readonly PrefabGUID Item_Ingredient_Passive_T02_Overpower = new PrefabGUID(-1402113736); public static readonly PrefabGUID Item_Ingredient_Passive_T02_Rampage = new PrefabGUID(1913822231); public static readonly PrefabGUID Item_Ingredient_Passive_T02_RavenousStrikes = new PrefabGUID(1703128595); public static readonly PrefabGUID Item_Ingredient_Passive_T02_TurbulentVelocity = new PrefabGUID(-1381982890); public static readonly PrefabGUID Item_Ingredient_Passive_T02_VBloodSlayer = new PrefabGUID(-1034273124); public static readonly PrefabGUID Item_Ingredient_Passive_T02_WickedPower = new PrefabGUID(814603706); public static readonly PrefabGUID Item_Ingredient_Plank = new PrefabGUID(-1017402979); public static readonly PrefabGUID Item_Ingredient_Plant_BleedingHeart = new PrefabGUID(-135435342); public static readonly PrefabGUID Item_Ingredient_Plant_BloodRose = new PrefabGUID(1726420644); public static readonly PrefabGUID Item_Ingredient_Plant_CorruptedFlower = new PrefabGUID(-926928101); public static readonly PrefabGUID Item_Ingredient_Plant_Cotton = new PrefabGUID(362941759); public static readonly PrefabGUID Item_Ingredient_Plant_FireBlossom = new PrefabGUID(455638025); public static readonly PrefabGUID Item_Ingredient_Plant_GhostShroom = new PrefabGUID(-164367832); public static readonly PrefabGUID Item_Ingredient_Plant_HellsClarion = new PrefabGUID(813370507); public static readonly PrefabGUID Item_Ingredient_Plant_MourningLily = new PrefabGUID(-363718499); public static readonly PrefabGUID Item_Ingredient_Plant_PlagueBrier = new PrefabGUID(1474643910); public static readonly PrefabGUID Item_Ingredient_Plant_PlantFiber = new PrefabGUID(-1409142667); public static readonly PrefabGUID Item_Ingredient_Plant_RadiantFiber = new PrefabGUID(-182923609); public static readonly PrefabGUID Item_Ingredient_Plant_SacredGrapes = new PrefabGUID(88009216); public static readonly PrefabGUID Item_Ingredient_Plant_SnowFlower = new PrefabGUID(106516056); public static readonly PrefabGUID Item_Ingredient_Plant_Sunflower = new PrefabGUID(1105981714); public static readonly PrefabGUID Item_Ingredient_Plant_Thistle = new PrefabGUID(-598100816); public static readonly PrefabGUID Item_Ingredient_Pollen = new PrefabGUID(855691699); public static readonly PrefabGUID Item_Ingredient_PowerCore = new PrefabGUID(-1190647720); public static readonly PrefabGUID Item_Ingredient_PristineHide = new PrefabGUID(1658596502); public static readonly PrefabGUID Item_Ingredient_PristineLeather = new PrefabGUID(-2043983118); public static readonly PrefabGUID Item_Ingredient_RadiumAlloy = new PrefabGUID(2116142390); public static readonly PrefabGUID Item_Ingredient_ReinforcedPlank = new PrefabGUID(-1397591435); public static readonly PrefabGUID Item_Ingredient_Research_Paper = new PrefabGUID(780044299); public static readonly PrefabGUID Item_Ingredient_Research_Schematic = new PrefabGUID(2085163661); public static readonly PrefabGUID Item_Ingredient_Research_Scroll = new PrefabGUID(2065714452); public static readonly PrefabGUID Item_Ingredient_Resonator = new PrefabGUID(-1629804427); public static readonly PrefabGUID Item_Ingredient_RuggedHide = new PrefabGUID(-1222725729); public static readonly PrefabGUID Item_Ingredient_Sawdust = new PrefabGUID(-1979905169); public static readonly PrefabGUID Item_Ingredient_Scales = new PrefabGUID(-1199259626); public static readonly PrefabGUID Item_Ingredient_Scourgestone = new PrefabGUID(1005440012); public static readonly PrefabGUID Item_Ingredient_SculpturedWood = new PrefabGUID(-793913499); public static readonly PrefabGUID Item_Ingredient_ShadowWeave = new PrefabGUID(-1458997116); public static readonly PrefabGUID Item_Ingredient_Silk = new PrefabGUID(702067317); public static readonly PrefabGUID Item_Ingredient_Silkworm = new PrefabGUID(-11246506); public static readonly PrefabGUID Item_Ingredient_Spectraldust = new PrefabGUID(-2130812821); public static readonly PrefabGUID Item_Ingredient_Stone = new PrefabGUID(-1531666018); public static readonly PrefabGUID Item_Ingredient_StoneBody = new PrefabGUID(689272399); public static readonly PrefabGUID Item_Ingredient_StoneBrick = new PrefabGUID(1788016417); public static readonly PrefabGUID Item_Ingredient_Stonedust = new PrefabGUID(1388962120); public static readonly PrefabGUID Item_Ingredient_TechScrap = new PrefabGUID(834864259); public static readonly PrefabGUID Item_Ingredient_ThickHide = new PrefabGUID(-2047402903); public static readonly PrefabGUID Item_Ingredient_ThickLeather = new PrefabGUID(-305160765); public static readonly PrefabGUID Item_Ingredient_Thread_Coarse = new PrefabGUID(-1562867444); public static readonly PrefabGUID Item_Ingredient_Thread_Imperial = new PrefabGUID(-898917584); public static readonly PrefabGUID Item_Ingredient_Thread_Wool = new PrefabGUID(1872733144); public static readonly PrefabGUID Item_Ingredient_Vampiricdust = new PrefabGUID(805157024); public static readonly PrefabGUID Item_Ingredient_Whetstone = new PrefabGUID(1252507075); public static readonly PrefabGUID Item_Ingredient_Witchdust = new PrefabGUID(-223452038); public static readonly PrefabGUID Item_Ingredient_Wood_CorruptedOak = new PrefabGUID(440780337); public static readonly PrefabGUID Item_Ingredient_Wood_Cursed = new PrefabGUID(608397239); public static readonly PrefabGUID Item_Ingredient_Wood_Gloom = new PrefabGUID(-1740500585); public static readonly PrefabGUID Item_Ingredient_Wood_Hallow = new PrefabGUID(-2014020548); public static readonly PrefabGUID Item_Ingredient_Wood_Standard = new PrefabGUID(-1593377811); public static readonly PrefabGUID Item_Jewel_Blood_T01 = new PrefabGUID(-113436752); public static readonly PrefabGUID Item_Jewel_Blood_T02 = new PrefabGUID(-996555621); public static readonly PrefabGUID Item_Jewel_Blood_T02_BloodFountain = new PrefabGUID(-1624411159); public static readonly PrefabGUID Item_Jewel_Blood_T02_BloodRage = new PrefabGUID(343217159); public static readonly PrefabGUID Item_Jewel_Blood_T02_BloodRite = new PrefabGUID(-2059886133); public static readonly PrefabGUID Item_Jewel_Blood_T02_CarrionSwarm = new PrefabGUID(-585346267); public static readonly PrefabGUID Item_Jewel_Blood_T02_SanguineCoil = new PrefabGUID(75934448); public static readonly PrefabGUID Item_Jewel_Blood_T02_Shadowbolt = new PrefabGUID(918613164); public static readonly PrefabGUID Item_Jewel_Blood_T02_VampiricCurse = new PrefabGUID(-1337809256); public static readonly PrefabGUID Item_Jewel_Blood_T02_VeilOfBlood = new PrefabGUID(-431964258); public static readonly PrefabGUID Item_Jewel_Blood_T03 = new PrefabGUID(-41686151); public static readonly PrefabGUID Item_Jewel_Blood_T03_BloodFountain = new PrefabGUID(-312598876); public static readonly PrefabGUID Item_Jewel_Blood_T03_BloodRage = new PrefabGUID(-1952560879); public static readonly PrefabGUID Item_Jewel_Blood_T03_BloodRite = new PrefabGUID(1881059081); public static readonly PrefabGUID Item_Jewel_Blood_T03_CarrionSwarm = new PrefabGUID(519281449); public static readonly PrefabGUID Item_Jewel_Blood_T03_SanguineCoil = new PrefabGUID(1785926321); public static readonly PrefabGUID Item_Jewel_Blood_T03_Shadowbolt = new PrefabGUID(738473666); public static readonly PrefabGUID Item_Jewel_Blood_T03_VampiricCurse = new PrefabGUID(-2137054310); public static readonly PrefabGUID Item_Jewel_Blood_T03_VeilOfBlood = new PrefabGUID(-1302801575); public static readonly PrefabGUID Item_Jewel_Blood_T04 = new PrefabGUID(271061481); public static readonly PrefabGUID Item_Jewel_Blood_T04_BloodFountain = new PrefabGUID(1755478077); public static readonly PrefabGUID Item_Jewel_Blood_T04_BloodRage = new PrefabGUID(662891042); public static readonly PrefabGUID Item_Jewel_Blood_T04_BloodRite = new PrefabGUID(1799289635); public static readonly PrefabGUID Item_Jewel_Blood_T04_CarrionSwarm = new PrefabGUID(1499979825); public static readonly PrefabGUID Item_Jewel_Blood_T04_SanguineCoil = new PrefabGUID(-562511117); public static readonly PrefabGUID Item_Jewel_Blood_T04_Shadowbolt = new PrefabGUID(1279283644); public static readonly PrefabGUID Item_Jewel_Blood_T04_VampiricCurse = new PrefabGUID(-1844141622); public static readonly PrefabGUID Item_Jewel_Blood_T04_VeilOfBlood = new PrefabGUID(1692133021); public static readonly PrefabGUID Item_Jewel_Chaos_T01 = new PrefabGUID(2130810069); public static readonly PrefabGUID Item_Jewel_Chaos_T02 = new PrefabGUID(1083105737); public static readonly PrefabGUID Item_Jewel_Chaos_T02_Aftershock = new PrefabGUID(1035334240); public static readonly PrefabGUID Item_Jewel_Chaos_T02_ChaosBarrier = new PrefabGUID(1112619884); public static readonly PrefabGUID Item_Jewel_Chaos_T02_ChaosVolley = new PrefabGUID(1243967840); public static readonly PrefabGUID Item_Jewel_Chaos_T02_PowerSurge = new PrefabGUID(1168555540); public static readonly PrefabGUID Item_Jewel_Chaos_T02_RainOfChaos = new PrefabGUID(-1674555897); public static readonly PrefabGUID Item_Jewel_Chaos_T02_VeilOfChaos = new PrefabGUID(-2133879652); public static readonly PrefabGUID Item_Jewel_Chaos_T02_Void = new PrefabGUID(157004582); public static readonly PrefabGUID Item_Jewel_Chaos_T03 = new PrefabGUID(-1601295908); public static readonly PrefabGUID Item_Jewel_Chaos_T03_Aftershock = new PrefabGUID(685024499); public static readonly PrefabGUID Item_Jewel_Chaos_T03_ChaosBarrier = new PrefabGUID(-209873380); public static readonly PrefabGUID Item_Jewel_Chaos_T03_ChaosVolley = new PrefabGUID(-1111771702); public static readonly PrefabGUID Item_Jewel_Chaos_T03_PowerSurge = new PrefabGUID(-1090887222); public static readonly PrefabGUID Item_Jewel_Chaos_T03_RainOfChaos = new PrefabGUID(-322544495); public static readonly PrefabGUID Item_Jewel_Chaos_T03_VeilOfChaos = new PrefabGUID(1613948207); public static readonly PrefabGUID Item_Jewel_Chaos_T03_Void = new PrefabGUID(-2054797612); public static readonly PrefabGUID Item_Jewel_Chaos_T04 = new PrefabGUID(-1796954295); public static readonly PrefabGUID Item_Jewel_Chaos_T04_Aftershock = new PrefabGUID(-651841188); public static readonly PrefabGUID Item_Jewel_Chaos_T04_ChaosBarrier = new PrefabGUID(-374243736); public static readonly PrefabGUID Item_Jewel_Chaos_T04_ChaosVolley = new PrefabGUID(818069106); public static readonly PrefabGUID Item_Jewel_Chaos_T04_PowerSurge = new PrefabGUID(-1166627007); public static readonly PrefabGUID Item_Jewel_Chaos_T04_RainOfChaos = new PrefabGUID(-443169356); public static readonly PrefabGUID Item_Jewel_Chaos_T04_VeilOfChaos = new PrefabGUID(155899991); public static readonly PrefabGUID Item_Jewel_Chaos_T04_Void = new PrefabGUID(666089763); public static readonly PrefabGUID Item_Jewel_Frost_T01 = new PrefabGUID(1908312304); public static readonly PrefabGUID Item_Jewel_Frost_T02 = new PrefabGUID(1030854657); public static readonly PrefabGUID Item_Jewel_Frost_T02_ColdSnap = new PrefabGUID(-441408420); public static readonly PrefabGUID Item_Jewel_Frost_T02_CrystalLance = new PrefabGUID(-390381611); public static readonly PrefabGUID Item_Jewel_Frost_T02_FrostBarrier = new PrefabGUID(2134082866); public static readonly PrefabGUID Item_Jewel_Frost_T02_FrostBat = new PrefabGUID(-309124704); public static readonly PrefabGUID Item_Jewel_Frost_T02_FrostCone = new PrefabGUID(-269336230); public static readonly PrefabGUID Item_Jewel_Frost_T02_IceNova = new PrefabGUID(-535477182); public static readonly PrefabGUID Item_Jewel_Frost_T02_VeilOfFrost = new PrefabGUID(-710738056); public static readonly PrefabGUID Item_Jewel_Frost_T03 = new PrefabGUID(223899244); public static readonly PrefabGUID Item_Jewel_Frost_T03_ColdSnap = new PrefabGUID(55473000); public static readonly PrefabGUID Item_Jewel_Frost_T03_CrystalLance = new PrefabGUID(594180030); public static readonly PrefabGUID Item_Jewel_Frost_T03_FrostBarrier = new PrefabGUID(1381699867); public static readonly PrefabGUID Item_Jewel_Frost_T03_FrostBat = new PrefabGUID(-1530254765); public static readonly PrefabGUID Item_Jewel_Frost_T03_FrostCone = new PrefabGUID(-16130732); public static readonly PrefabGUID Item_Jewel_Frost_T03_IceNova = new PrefabGUID(1123463900); public static readonly PrefabGUID Item_Jewel_Frost_T03_VeilOfFrost = new PrefabGUID(-1190496962); public static readonly PrefabGUID Item_Jewel_Frost_T04 = new PrefabGUID(-147757377); public static readonly PrefabGUID Item_Jewel_Frost_T04_ColdSnap = new PrefabGUID(-930352575); public static readonly PrefabGUID Item_Jewel_Frost_T04_CrystalLance = new PrefabGUID(-2117279191); public static readonly PrefabGUID Item_Jewel_Frost_T04_FrostBarrier = new PrefabGUID(-483235215); public static readonly PrefabGUID Item_Jewel_Frost_T04_FrostBat = new PrefabGUID(1793042384); public static readonly PrefabGUID Item_Jewel_Frost_T04_FrostCone = new PrefabGUID(320961855); public static readonly PrefabGUID Item_Jewel_Frost_T04_IceNova = new PrefabGUID(1947940084); public static readonly PrefabGUID Item_Jewel_Frost_T04_VeilOfFrost = new PrefabGUID(1729390800); public static readonly PrefabGUID Item_Jewel_Illusion_T01 = new PrefabGUID(1387124262); public static readonly PrefabGUID Item_Jewel_Illusion_T02 = new PrefabGUID(437696083); public static readonly PrefabGUID Item_Jewel_Illusion_T02_Curse = new PrefabGUID(-1255119436); public static readonly PrefabGUID Item_Jewel_Illusion_T02_MistTrance = new PrefabGUID(101601247); public static readonly PrefabGUID Item_Jewel_Illusion_T02_Mosquito = new PrefabGUID(-928330249); public static readonly PrefabGUID Item_Jewel_Illusion_T02_PhantomAegis = new PrefabGUID(1123282909); public static readonly PrefabGUID Item_Jewel_Illusion_T02_SpectralWolf = new PrefabGUID(1520619383); public static readonly PrefabGUID Item_Jewel_Illusion_T02_VeilOfIllusion = new PrefabGUID(606339127); public static readonly PrefabGUID Item_Jewel_Illusion_T02_WraithSpear = new PrefabGUID(665418354); public static readonly PrefabGUID Item_Jewel_Illusion_T03 = new PrefabGUID(1540217782); public static readonly PrefabGUID Item_Jewel_Illusion_T03_Curse = new PrefabGUID(-1952374182); public static readonly PrefabGUID Item_Jewel_Illusion_T03_MistTrance = new PrefabGUID(-1513121786); public static readonly PrefabGUID Item_Jewel_Illusion_T03_Mosquito = new PrefabGUID(-826325611); public static readonly PrefabGUID Item_Jewel_Illusion_T03_PhantomAegis = new PrefabGUID(870884715); public static readonly PrefabGUID Item_Jewel_Illusion_T03_SpectralWolf = new PrefabGUID(455494178); public static readonly PrefabGUID Item_Jewel_Illusion_T03_VeilOfIllusion = new PrefabGUID(-1206629745); public static readonly PrefabGUID Item_Jewel_Illusion_T03_WraithSpear = new PrefabGUID(998259069); public static readonly PrefabGUID Item_Jewel_Illusion_T04 = new PrefabGUID(97169184); public static readonly PrefabGUID Item_Jewel_Illusion_T04_Curse = new PrefabGUID(130269272); public static readonly PrefabGUID Item_Jewel_Illusion_T04_MistTrance = new PrefabGUID(2075997018); public static readonly PrefabGUID Item_Jewel_Illusion_T04_Mosquito = new PrefabGUID(902426262); public static readonly PrefabGUID Item_Jewel_Illusion_T04_PhantomAegis = new PrefabGUID(-1766731531); public static readonly PrefabGUID Item_Jewel_Illusion_T04_SpectralWolf = new PrefabGUID(-1444759832); public static readonly PrefabGUID Item_Jewel_Illusion_T04_VeilOfIllusion = new PrefabGUID(-941913536); public static readonly PrefabGUID Item_Jewel_Illusion_T04_WraithSpear = new PrefabGUID(-455117097); public static readonly PrefabGUID Item_Jewel_Storm_T01 = new PrefabGUID(-560146452); public static readonly PrefabGUID Item_Jewel_Storm_T02 = new PrefabGUID(876293388); public static readonly PrefabGUID Item_Jewel_Storm_T02_BallLightning = new PrefabGUID(-1703746731); public static readonly PrefabGUID Item_Jewel_Storm_T02_Cyclone = new PrefabGUID(994654794); public static readonly PrefabGUID Item_Jewel_Storm_T02_Discharge = new PrefabGUID(-313733383); public static readonly PrefabGUID Item_Jewel_Storm_T02_LightningTendrils = new PrefabGUID(90716564); public static readonly PrefabGUID Item_Jewel_Storm_T02_LightningWall = new PrefabGUID(394140527); public static readonly PrefabGUID Item_Jewel_Storm_T02_PolarityShift = new PrefabGUID(-944716649); public static readonly PrefabGUID Item_Jewel_Storm_T02_VeilOfStorm = new PrefabGUID(-1416449755); public static readonly PrefabGUID Item_Jewel_Storm_T03 = new PrefabGUID(189228039); public static readonly PrefabGUID Item_Jewel_Storm_T03_BallLightning = new PrefabGUID(973763812); public static readonly PrefabGUID Item_Jewel_Storm_T03_Cyclone = new PrefabGUID(-341717525); public static readonly PrefabGUID Item_Jewel_Storm_T03_Discharge = new PrefabGUID(1533847605); public static readonly PrefabGUID Item_Jewel_Storm_T03_LightningTendrils = new PrefabGUID(-703021474); public static readonly PrefabGUID Item_Jewel_Storm_T03_LightningWall = new PrefabGUID(-2134499162); public static readonly PrefabGUID Item_Jewel_Storm_T03_PolarityShift = new PrefabGUID(-844537086); public static readonly PrefabGUID Item_Jewel_Storm_T03_VeilOfStorm = new PrefabGUID(182214837); public static readonly PrefabGUID Item_Jewel_Storm_T04 = new PrefabGUID(2023809276); public static readonly PrefabGUID Item_Jewel_Storm_T04_BallLightning = new PrefabGUID(-1927784576); public static readonly PrefabGUID Item_Jewel_Storm_T04_Cyclone = new PrefabGUID(-1697520941); public static readonly PrefabGUID Item_Jewel_Storm_T04_Discharge = new PrefabGUID(1448686547); public static readonly PrefabGUID Item_Jewel_Storm_T04_LightningTendrils = new PrefabGUID(1909654697); public static readonly PrefabGUID Item_Jewel_Storm_T04_LightningWall = new PrefabGUID(-464466648); public static readonly PrefabGUID Item_Jewel_Storm_T04_PolarityShift = new PrefabGUID(-189270614); public static readonly PrefabGUID Item_Jewel_Storm_T04_VeilOfStorm = new PrefabGUID(-556391992); public static readonly PrefabGUID Item_Jewel_Template = new PrefabGUID(1075994038); public static readonly PrefabGUID Item_Jewel_Unholy_T01 = new PrefabGUID(803445709); public static readonly PrefabGUID Item_Jewel_Unholy_T02 = new PrefabGUID(-860388090); public static readonly PrefabGUID Item_Jewel_Unholy_T02_ChainsOfDeath = new PrefabGUID(-178249605); public static readonly PrefabGUID Item_Jewel_Unholy_T02_CorpseExplosion = new PrefabGUID(977816262); public static readonly PrefabGUID Item_Jewel_Unholy_T02_CorruptedSkull = new PrefabGUID(-1183600395); public static readonly PrefabGUID Item_Jewel_Unholy_T02_DeathKnight = new PrefabGUID(-173571027); public static readonly PrefabGUID Item_Jewel_Unholy_T02_Soulburn = new PrefabGUID(1277476884); public static readonly PrefabGUID Item_Jewel_Unholy_T02_VeilOfBones = new PrefabGUID(-1347054873); public static readonly PrefabGUID Item_Jewel_Unholy_T02_WardOfTheDamned = new PrefabGUID(-593608743); public static readonly PrefabGUID Item_Jewel_Unholy_T03 = new PrefabGUID(-647547545); public static readonly PrefabGUID Item_Jewel_Unholy_T03_ChainsOfDeath = new PrefabGUID(1042817390); public static readonly PrefabGUID Item_Jewel_Unholy_T03_CorpseExplosion = new PrefabGUID(-1123608041); public static readonly PrefabGUID Item_Jewel_Unholy_T03_CorruptedSkull = new PrefabGUID(-1508992859); public static readonly PrefabGUID Item_Jewel_Unholy_T03_DeathKnight = new PrefabGUID(-318118264); public static readonly PrefabGUID Item_Jewel_Unholy_T03_Soulburn = new PrefabGUID(282707515); public static readonly PrefabGUID Item_Jewel_Unholy_T03_VeilOfBones = new PrefabGUID(-1913987811); public static readonly PrefabGUID Item_Jewel_Unholy_T03_WardOfTheDamned = new PrefabGUID(665184248); public static readonly PrefabGUID Item_Jewel_Unholy_T04 = new PrefabGUID(1412786604); public static readonly PrefabGUID Item_Jewel_Unholy_T04_ChainsOfDeath = new PrefabGUID(-2100613085); public static readonly PrefabGUID Item_Jewel_Unholy_T04_CorpseExplosion = new PrefabGUID(-749764415); public static readonly PrefabGUID Item_Jewel_Unholy_T04_CorruptedSkull = new PrefabGUID(140526202); public static readonly PrefabGUID Item_Jewel_Unholy_T04_DeathKnight = new PrefabGUID(-340571020); public static readonly PrefabGUID Item_Jewel_Unholy_T04_Soulburn = new PrefabGUID(897635802); public static readonly PrefabGUID Item_Jewel_Unholy_T04_VeilOfBones = new PrefabGUID(-1180115034); public static readonly PrefabGUID Item_Jewel_Unholy_T04_WardOfTheDamned = new PrefabGUID(1479677538); public static readonly PrefabGUID Item_Legs_T00_StartingRags = new PrefabGUID(725607617); public static readonly PrefabGUID Item_Legs_T01_Bone = new PrefabGUID(1355823667); public static readonly PrefabGUID Item_Legs_T02_BoneReinforced = new PrefabGUID(-2036196416); public static readonly PrefabGUID Item_Legs_T03_Cloth = new PrefabGUID(1925394440); public static readonly PrefabGUID Item_Legs_T04_Copper_Brute = new PrefabGUID(-2095610608); public static readonly PrefabGUID Item_Legs_T04_Copper_Rogue = new PrefabGUID(-90702575); public static readonly PrefabGUID Item_Legs_T04_Copper_Scholar = new PrefabGUID(1458279255); public static readonly PrefabGUID Item_Legs_T04_Copper_Warrior = new PrefabGUID(-1993947781); public static readonly PrefabGUID Item_Legs_T05_Cotton = new PrefabGUID(12127911); public static readonly PrefabGUID Item_Legs_T06_Iron_Brute = new PrefabGUID(680112231); public static readonly PrefabGUID Item_Legs_T06_Iron_Rogue = new PrefabGUID(744344540); public static readonly PrefabGUID Item_Legs_T06_Iron_Scholar = new PrefabGUID(-454576348); public static readonly PrefabGUID Item_Legs_T06_Iron_Warrior = new PrefabGUID(206495029); public static readonly PrefabGUID Item_Legs_T07_Silk = new PrefabGUID(-1555051415); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Brute = new PrefabGUID(-1385786654); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Rogue = new PrefabGUID(-262114802); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Scholar = new PrefabGUID(703230071); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Warrior = new PrefabGUID(-481041545); public static readonly PrefabGUID Item_Legs_T09_Dracula = new PrefabGUID(125611165); public static readonly PrefabGUID Item_Legs_T09_Dracula_Brute = new PrefabGUID(993033515); public static readonly PrefabGUID Item_Legs_T09_Dracula_Rogue = new PrefabGUID(-345596442); public static readonly PrefabGUID Item_Legs_T09_Dracula_Scholar = new PrefabGUID(1592149279); public static readonly PrefabGUID Item_Legs_T09_Dracula_Warrior = new PrefabGUID(205207385); public static readonly PrefabGUID Item_Legs_T0X_BlackfangSultan = new PrefabGUID(-1558814807); public static readonly PrefabGUID Item_Legs_T0X_Cosmetic_Suit01 = new PrefabGUID(213736942); public static readonly PrefabGUID Item_Legs_T0X_PMK01 = new PrefabGUID(-1564372276); public static readonly PrefabGUID Item_Legs_T0X_PMK02 = new PrefabGUID(-536717606); public static readonly PrefabGUID Item_Legs_T0X_PMK03 = new PrefabGUID(1811913705); public static readonly PrefabGUID Item_Legs_T0X_TransmogTest = new PrefabGUID(1217578824); public static readonly PrefabGUID Item_Legs_T0X_VampireKnight = new PrefabGUID(1966590385); public static readonly PrefabGUID Item_MagicSource_BloodKey_T01 = new PrefabGUID(1655869633); public static readonly PrefabGUID Item_MagicSource_General_T01_BoneRing = new PrefabGUID(1557814269); public static readonly PrefabGUID Item_MagicSource_General_T02_BloodBoneRing = new PrefabGUID(-652069131); public static readonly PrefabGUID Item_MagicSource_General_T03_GravediggerRing = new PrefabGUID(-1588051702); public static readonly PrefabGUID Item_MagicSource_General_T04_Duskwatcher = new PrefabGUID(-809059551); public static readonly PrefabGUID Item_MagicSource_General_T04_EmberChain = new PrefabGUID(50824544); public static readonly PrefabGUID Item_MagicSource_General_T04_FrozenEye = new PrefabGUID(336922685); public static readonly PrefabGUID Item_MagicSource_General_T04_MistSignet = new PrefabGUID(-886916793); public static readonly PrefabGUID Item_MagicSource_General_T04_RubyRing = new PrefabGUID(341837267); public static readonly PrefabGUID Item_MagicSource_General_T04_SorcererRing = new PrefabGUID(-1184863500); public static readonly PrefabGUID Item_MagicSource_General_T05_Relic = new PrefabGUID(-650855520); public static readonly PrefabGUID Item_MagicSource_General_T06_AmethystPendant = new PrefabGUID(199425997); public static readonly PrefabGUID Item_MagicSource_General_T06_EmeraldNecklace = new PrefabGUID(-1046748791); public static readonly PrefabGUID Item_MagicSource_General_T06_MistStoneNecklace = new PrefabGUID(1012837641); public static readonly PrefabGUID Item_MagicSource_General_T06_RubyPendant = new PrefabGUID(-425306671); public static readonly PrefabGUID Item_MagicSource_General_T06_SapphirePendant = new PrefabGUID(-651554566); public static readonly PrefabGUID Item_MagicSource_General_T06_TopazAmulet = new PrefabGUID(610958202); public static readonly PrefabGUID Item_MagicSource_General_T07_BloodwineAmulet = new PrefabGUID(991396285); public static readonly PrefabGUID Item_MagicSource_General_T08_Blood = new PrefabGUID(-104934480); public static readonly PrefabGUID Item_MagicSource_General_T08_Chaos = new PrefabGUID(-175650376); public static readonly PrefabGUID Item_MagicSource_General_T08_Frost = new PrefabGUID(1380368392); public static readonly PrefabGUID Item_MagicSource_General_T08_Illusion = new PrefabGUID(-1306155896); public static readonly PrefabGUID Item_MagicSource_General_T08_Storm = new PrefabGUID(-296161379); public static readonly PrefabGUID Item_MagicSource_General_T08_Unholy = new PrefabGUID(-1004351840); public static readonly PrefabGUID Item_MagicSource_SoulShard_Dracula = new PrefabGUID(666638454); public static readonly PrefabGUID Item_MagicSource_SoulShard_Manticore = new PrefabGUID(-1260254082); public static readonly PrefabGUID Item_MagicSource_SoulShard_Monster = new PrefabGUID(-1581189572); public static readonly PrefabGUID Item_MagicSource_SoulShard_Morgana = new PrefabGUID(1286615355); public static readonly PrefabGUID Item_MagicSource_SoulShard_Solarus = new PrefabGUID(-21943750); public static readonly PrefabGUID Item_NetherShard_T01 = new PrefabGUID(2103989354); public static readonly PrefabGUID Item_NetherShard_T02 = new PrefabGUID(576389135); public static readonly PrefabGUID Item_NetherShard_T03 = new PrefabGUID(28358550); public static readonly PrefabGUID Item_NewBag_T01 = new PrefabGUID(-219760992); public static readonly PrefabGUID Item_NewBag_T02 = new PrefabGUID(-1991977825); public static readonly PrefabGUID Item_NewBag_T03 = new PrefabGUID(-261654929); public static readonly PrefabGUID Item_NewBag_T04 = new PrefabGUID(-1922998918); public static readonly PrefabGUID Item_NewBag_T05 = new PrefabGUID(1117281334); public static readonly PrefabGUID Item_NewBag_T06 = new PrefabGUID(-181179773); public static readonly PrefabGUID Item_Saddle_Basic = new PrefabGUID(-1209228232); public static readonly PrefabGUID Item_Saddle_Blackfang_DLC = new PrefabGUID(-1793846754); public static readonly PrefabGUID Item_Saddle_Gloomrot_DLC = new PrefabGUID(-554782766); public static readonly PrefabGUID Item_Saddle_PMKSkeleton_DLC = new PrefabGUID(-1270904319); public static readonly PrefabGUID Item_Vampire_Coating_Blood = new PrefabGUID(-1617973064); public static readonly PrefabGUID Item_Vampire_Coating_Chaos = new PrefabGUID(-1051190225); public static readonly PrefabGUID Item_Vampire_Coating_Frost = new PrefabGUID(-1087318964); public static readonly PrefabGUID Item_Vampire_Coating_Illusion = new PrefabGUID(1148284648); public static readonly PrefabGUID Item_Vampire_Coating_Storm = new PrefabGUID(2128629897); public static readonly PrefabGUID Item_Vampire_Coating_Unholy = new PrefabGUID(1002732935); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_NameGenerator_T06 = new PrefabGUID(163122449); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_NameGenerator_T08 = new PrefabGUID(1570017693); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T06 = new PrefabGUID(1259464735); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T06_Shattered = new PrefabGUID(-2147445292); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T08 = new PrefabGUID(-102830349); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T08_Shattered = new PrefabGUID(442700150); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T08_Trader_Template = new PrefabGUID(-1024626758); public static readonly PrefabGUID Item_Weapon_Axe_T01_Bone = new PrefabGUID(-1958888844); public static readonly PrefabGUID Item_Weapon_Axe_T02_Bone_Reinforced = new PrefabGUID(-1391446205); public static readonly PrefabGUID Item_Weapon_Axe_T02_WoodCutter = new PrefabGUID(1541522788); public static readonly PrefabGUID Item_Weapon_Axe_T03_Copper = new PrefabGUID(518802008); public static readonly PrefabGUID Item_Weapon_Axe_T04_Copper_Reinforced = new PrefabGUID(-491969324); public static readonly PrefabGUID Item_Weapon_Axe_T05_Iron = new PrefabGUID(-1579575933); public static readonly PrefabGUID Item_Weapon_Axe_T06_Iron_Reinforced = new PrefabGUID(198951695); public static readonly PrefabGUID Item_Weapon_Axe_T07_DarkSilver = new PrefabGUID(-1130238142); public static readonly PrefabGUID Item_Weapon_Axe_T08_Sanguine = new PrefabGUID(-2044057823); public static readonly PrefabGUID Item_Weapon_Axe_T09_ShadowMatter = new PrefabGUID(2100090213); public static readonly PrefabGUID Item_Weapon_Axe_Unique_T08_Variation01 = new PrefabGUID(1239564213); public static readonly PrefabGUID Item_Weapon_Axe_Unique_T08_Variation01_Shattered = new PrefabGUID(2099198078); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_NameGenerator_T06 = new PrefabGUID(-444900575); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_NameGenerator_T08 = new PrefabGUID(-1774269887); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T06 = new PrefabGUID(-2060572315); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T06_Shattered = new PrefabGUID(-1746159915); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T08 = new PrefabGUID(-27238530); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T08_Shattered = new PrefabGUID(-655493979); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T08_Trader_Template = new PrefabGUID(1401940772); public static readonly PrefabGUID Item_Weapon_Claws_T05_Iron = new PrefabGUID(-1333849822); public static readonly PrefabGUID Item_Weapon_Claws_T06_Iron_Reinforced = new PrefabGUID(1748886117); public static readonly PrefabGUID Item_Weapon_Claws_T07_DarkSilver = new PrefabGUID(-1470260175); public static readonly PrefabGUID Item_Weapon_Claws_T08_Sanguine = new PrefabGUID(-1777908217); public static readonly PrefabGUID Item_Weapon_Claws_Unique_T08_Variation01 = new PrefabGUID(-996999913); public static readonly PrefabGUID Item_Weapon_Claws_Unique_T08_Variation01_Shattered = new PrefabGUID(-1024379681); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_NameGenerator_T06 = new PrefabGUID(1958482379); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_NameGenerator_T08 = new PrefabGUID(1716435762); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T06 = new PrefabGUID(-517906196); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T06_Shattered = new PrefabGUID(572026243); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T08 = new PrefabGUID(935392085); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T08_Shattered = new PrefabGUID(2061238391); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T08_Trader_Template = new PrefabGUID(517296275); public static readonly PrefabGUID Item_Weapon_Crossbow_T01_Bone = new PrefabGUID(-20041991); public static readonly PrefabGUID Item_Weapon_Crossbow_T02_Bone_Reinforced = new PrefabGUID(898159697); public static readonly PrefabGUID Item_Weapon_Crossbow_T03_Copper = new PrefabGUID(-1277074895); public static readonly PrefabGUID Item_Weapon_Crossbow_T04_Copper_Reinforced = new PrefabGUID(-1636801169); public static readonly PrefabGUID Item_Weapon_Crossbow_T05_Iron = new PrefabGUID(836066667); public static readonly PrefabGUID Item_Weapon_Crossbow_T06_Iron_Reinforced = new PrefabGUID(1221976097); public static readonly PrefabGUID Item_Weapon_Crossbow_T07_DarkSilver = new PrefabGUID(-814739263); public static readonly PrefabGUID Item_Weapon_Crossbow_T08_Sanguine = new PrefabGUID(1389040540); public static readonly PrefabGUID Item_Weapon_Crossbow_T09_ShadowMatter = new PrefabGUID(1957540013); public static readonly PrefabGUID Item_Weapon_Crossbow_Unique_T08_Variation01 = new PrefabGUID(-1401104184); public static readonly PrefabGUID Item_Weapon_Crossbow_Unique_T08_Variation01_Shattered = new PrefabGUID(781586362); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_NameGenerator_T06 = new PrefabGUID(-816018167); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_NameGenerator_T08 = new PrefabGUID(-1566606969); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T06 = new PrefabGUID(-1276458869); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T06_Shattered = new PrefabGUID(-1075670534); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T08 = new PrefabGUID(140761255); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T08_Shattered = new PrefabGUID(-2137269775); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T08_Trader_Template = new PrefabGUID(1719144622); public static readonly PrefabGUID Item_Weapon_Daggers_T05_Iron = new PrefabGUID(1296724931); public static readonly PrefabGUID Item_Weapon_Daggers_T06_Iron_Reinforced = new PrefabGUID(703783407); public static readonly PrefabGUID Item_Weapon_Daggers_T07_DarkSilver = new PrefabGUID(-211034148); public static readonly PrefabGUID Item_Weapon_Daggers_T08_Sanguine = new PrefabGUID(1031107636); public static readonly PrefabGUID Item_Weapon_Daggers_T09_ShadowMatter = new PrefabGUID(-1961050884); public static readonly PrefabGUID Item_Weapon_Daggers_Unique_T08_Variation01 = new PrefabGUID(-1873605364); public static readonly PrefabGUID Item_Weapon_Daggers_Unique_T08_Variation01_Shattered = new PrefabGUID(-1233207977); public static readonly PrefabGUID Item_Weapon_FishingPole_Debug = new PrefabGUID(-1766408331); public static readonly PrefabGUID Item_Weapon_FishingPole_T01 = new PrefabGUID(1302850112); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_NameGenerator_T06 = new PrefabGUID(-437176953); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_NameGenerator_T08 = new PrefabGUID(-256643998); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T06 = new PrefabGUID(869276797); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T06_Shattered = new PrefabGUID(747911021); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T08 = new PrefabGUID(-1173681254); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T08_Shattered = new PrefabGUID(-1638796801); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T08_Trader_Template = new PrefabGUID(-1743584975); public static readonly PrefabGUID Item_Weapon_GreatSword_T05_Iron = new PrefabGUID(-768054337); public static readonly PrefabGUID Item_Weapon_GreatSword_T06_Iron_Reinforced = new PrefabGUID(82781195); public static readonly PrefabGUID Item_Weapon_GreatSword_T07_DarkSilver = new PrefabGUID(674704033); public static readonly PrefabGUID Item_Weapon_GreatSword_T08_Sanguine = new PrefabGUID(147836723); public static readonly PrefabGUID Item_Weapon_GreatSword_T09_ShadowMatter = new PrefabGUID(1322254792); public static readonly PrefabGUID Item_Weapon_GreatSword_Unique_T08_Variation01 = new PrefabGUID(820408138); public static readonly PrefabGUID Item_Weapon_GreatSword_Unique_T08_Variation01_Shattered = new PrefabGUID(1272855317); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_NameGenerator_T06 = new PrefabGUID(-726074700); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_NameGenerator_T08 = new PrefabGUID(288292636); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T06 = new PrefabGUID(-1003309553); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T06_Shattered = new PrefabGUID(649637190); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T08 = new PrefabGUID(1177453385); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T08_Shattered = new PrefabGUID(285875674); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T08_Trader_Template = new PrefabGUID(19130904); public static readonly PrefabGUID Item_Weapon_Longbow_T03_Copper = new PrefabGUID(532033005); public static readonly PrefabGUID Item_Weapon_Longbow_T04_Copper_Reinforced = new PrefabGUID(352247730); public static readonly PrefabGUID Item_Weapon_Longbow_T05_Iron = new PrefabGUID(-1993708658); public static readonly PrefabGUID Item_Weapon_Longbow_T06_Iron_Reinforced = new PrefabGUID(1951565953); public static readonly PrefabGUID Item_Weapon_Longbow_T07_DarkSilver = new PrefabGUID(-1830162796); public static readonly PrefabGUID Item_Weapon_Longbow_T08_Sanguine = new PrefabGUID(1860352606); public static readonly PrefabGUID Item_Weapon_Longbow_T09_ShadowMatter = new PrefabGUID(1283345494); public static readonly PrefabGUID Item_Weapon_Longbow_Unique_T08_Variation01 = new PrefabGUID(-557203874); public static readonly PrefabGUID Item_Weapon_Longbow_Unique_T08_Variation01_Shattered = new PrefabGUID(1102277512); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_NameGenerator_T06 = new PrefabGUID(264593098); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_NameGenerator_T08 = new PrefabGUID(-2048346225); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T06 = new PrefabGUID(1177597629); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T06_Shattered = new PrefabGUID(1963988265); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T08 = new PrefabGUID(1994084762); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T08_Shattered = new PrefabGUID(-1810734832); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T08_Trader_Template = new PrefabGUID(-1845443712); public static readonly PrefabGUID Item_Weapon_Mace_T01_Bone = new PrefabGUID(1588258447); public static readonly PrefabGUID Item_Weapon_Mace_T02_Bone_Reinforced = new PrefabGUID(-1998017941); public static readonly PrefabGUID Item_Weapon_Mace_T02_Miners = new PrefabGUID(-687294429); public static readonly PrefabGUID Item_Weapon_Mace_T03_Copper = new PrefabGUID(-331345186); public static readonly PrefabGUID Item_Weapon_Mace_T04_Copper_Reinforced = new PrefabGUID(343324920); public static readonly PrefabGUID Item_Weapon_Mace_T05_Iron = new PrefabGUID(-1714012261); public static readonly PrefabGUID Item_Weapon_Mace_T06_Iron_Reinforced = new PrefabGUID(-276593802); public static readonly PrefabGUID Item_Weapon_Mace_T07_DarkSilver = new PrefabGUID(-184713893); public static readonly PrefabGUID Item_Weapon_Mace_T08_Sanguine = new PrefabGUID(-126076280); public static readonly PrefabGUID Item_Weapon_Mace_T09_ShadowMatter = new PrefabGUID(160471982); public static readonly PrefabGUID Item_Weapon_Mace_Unique_T08_Variation01 = new PrefabGUID(675187526); public static readonly PrefabGUID Item_Weapon_Mace_Unique_T08_Variation01_Shattered = new PrefabGUID(-915028618); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_NameGenerator_T06 = new PrefabGUID(1333624152); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_NameGenerator_T08 = new PrefabGUID(-1843989041); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T06 = new PrefabGUID(14297698); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T06_Shattered = new PrefabGUID(-1038642372); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T08 = new PrefabGUID(-944318126); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T08_Shattered = new PrefabGUID(1040125618); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T08_Trader_Template = new PrefabGUID(-1502177717); public static readonly PrefabGUID Item_Weapon_Pistols_T05_Iron = new PrefabGUID(769603740); public static readonly PrefabGUID Item_Weapon_Pistols_T06_Iron_Reinforced = new PrefabGUID(1850870666); public static readonly PrefabGUID Item_Weapon_Pistols_T07_DarkSilver = new PrefabGUID(674407758); public static readonly PrefabGUID Item_Weapon_Pistols_T08_Sanguine = new PrefabGUID(1071656850); public static readonly PrefabGUID Item_Weapon_Pistols_T09_ShadowMatter = new PrefabGUID(-1265586439); public static readonly PrefabGUID Item_Weapon_Pistols_Unique_T08_Variation01 = new PrefabGUID(1759077469); public static readonly PrefabGUID Item_Weapon_Pistols_Unique_T08_Variation01_Shattered = new PrefabGUID(1630030026); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_NameGenerator_T06 = new PrefabGUID(-576626587); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_NameGenerator_T08 = new PrefabGUID(-383870009); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T06 = new PrefabGUID(-922125625); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T06_Shattered = new PrefabGUID(-413259500); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T08 = new PrefabGUID(-105026635); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T08_Shattered = new PrefabGUID(886814985); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T08_Trader_Template = new PrefabGUID(-2136716453); public static readonly PrefabGUID Item_Weapon_Reaper_T01_Bone = new PrefabGUID(-152327780); public static readonly PrefabGUID Item_Weapon_Reaper_T02_Bone_Reinforced = new PrefabGUID(1402953369); public static readonly PrefabGUID Item_Weapon_Reaper_T03_Copper = new PrefabGUID(1522792650); public static readonly PrefabGUID Item_Weapon_Reaper_T04_Copper_Reinforced = new PrefabGUID(1048518929); public static readonly PrefabGUID Item_Weapon_Reaper_T05_Iron = new PrefabGUID(-2081286944); public static readonly PrefabGUID Item_Weapon_Reaper_T06_Iron_Reinforced = new PrefabGUID(1778128946); public static readonly PrefabGUID Item_Weapon_Reaper_T06_Iron_UndeadGeneral = new PrefabGUID(1887724512); public static readonly PrefabGUID Item_Weapon_Reaper_T07_DarkSilver = new PrefabGUID(6711686); public static readonly PrefabGUID Item_Weapon_Reaper_T08_Sanguine = new PrefabGUID(-2053917766); public static readonly PrefabGUID Item_Weapon_Reaper_T09_ShadowMatter = new PrefabGUID(-465491217); public static readonly PrefabGUID Item_Weapon_Reaper_Unique_T08_Variation01 = new PrefabGUID(-859437190); public static readonly PrefabGUID Item_Weapon_Reaper_Unique_T08_Variation01_Shattered = new PrefabGUID(1801132968); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_NameGenerator_T06 = new PrefabGUID(658426701); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_NameGenerator_T08 = new PrefabGUID(810808231); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T06 = new PrefabGUID(1930526079); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T06_Shattered = new PrefabGUID(3759455); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T08 = new PrefabGUID(821410795); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T08_Shattered = new PrefabGUID(1271087499); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T08_Trader_Template = new PrefabGUID(-1390536751); public static readonly PrefabGUID Item_Weapon_Slashers_T01_Bone = new PrefabGUID(-588909332); public static readonly PrefabGUID Item_Weapon_Slashers_T02_Bone_Reinforced = new PrefabGUID(926722036); public static readonly PrefabGUID Item_Weapon_Slashers_T03_Copper = new PrefabGUID(1499160417); public static readonly PrefabGUID Item_Weapon_Slashers_T04_Copper_Reinforced = new PrefabGUID(-1042299347); public static readonly PrefabGUID Item_Weapon_Slashers_T05_Iron = new PrefabGUID(-314614708); public static readonly PrefabGUID Item_Weapon_Slashers_T06_Iron_Reinforced = new PrefabGUID(866934844); public static readonly PrefabGUID Item_Weapon_Slashers_T07_DarkSilver = new PrefabGUID(633666898); public static readonly PrefabGUID Item_Weapon_Slashers_T08_Sanguine = new PrefabGUID(1322545846); public static readonly PrefabGUID Item_Weapon_Slashers_T09_ShadowMatter = new PrefabGUID(506082542); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation01 = new PrefabGUID(-2068145306); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation01_Shattered = new PrefabGUID(1954207008); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation02 = new PrefabGUID(1570363331); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation02_Shattered = new PrefabGUID(-1930402723); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_NameGenerator_T06 = new PrefabGUID(-1854790299); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_NameGenerator_T08 = new PrefabGUID(912809090); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T06 = new PrefabGUID(2001389164); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T06_Shattered = new PrefabGUID(2142983740); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T08 = new PrefabGUID(-1931117134); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T08_Shattered = new PrefabGUID(1717016192); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T08_Trader_Template = new PrefabGUID(-958110636); public static readonly PrefabGUID Item_Weapon_Spear_T01_Bone = new PrefabGUID(2038011836); public static readonly PrefabGUID Item_Weapon_Spear_T02_Bone_Reinforced = new PrefabGUID(1244180446); public static readonly PrefabGUID Item_Weapon_Spear_T03_Copper = new PrefabGUID(1370755976); public static readonly PrefabGUID Item_Weapon_Spear_T04_Copper_Reinforced = new PrefabGUID(790210443); public static readonly PrefabGUID Item_Weapon_Spear_T05_Iron = new PrefabGUID(1853029976); public static readonly PrefabGUID Item_Weapon_Spear_T06_Iron_Reinforced = new PrefabGUID(1065194820); public static readonly PrefabGUID Item_Weapon_Spear_T07_DarkSilver = new PrefabGUID(-352704566); public static readonly PrefabGUID Item_Weapon_Spear_T08_Sanguine = new PrefabGUID(-850142339); public static readonly PrefabGUID Item_Weapon_Spear_T09_ShadowMatter = new PrefabGUID(1307774440); public static readonly PrefabGUID Item_Weapon_Spear_Unique_T08_Variation01 = new PrefabGUID(-1674680373); public static readonly PrefabGUID Item_Weapon_Spear_Unique_T08_Variation01_Shattered = new PrefabGUID(124616797); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_NameGenerator_T06 = new PrefabGUID(1564801426); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_NameGenerator_T08 = new PrefabGUID(1908755405); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T06 = new PrefabGUID(1637216050); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T06_Shattered = new PrefabGUID(-1421775051); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T08 = new PrefabGUID(195858450); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T08_Shattered = new PrefabGUID(1048769481); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T08_Trader_Template = new PrefabGUID(-830893351); public static readonly PrefabGUID Item_Weapon_Sword_T01_Bone = new PrefabGUID(-2085919458); public static readonly PrefabGUID Item_Weapon_Sword_T02_Bone_Reinforced = new PrefabGUID(-796306296); public static readonly PrefabGUID Item_Weapon_Sword_T03_Copper = new PrefabGUID(-2037272000); public static readonly PrefabGUID Item_Weapon_Sword_T04_Copper_Reinforced = new PrefabGUID(-1219959051); public static readonly PrefabGUID Item_Weapon_Sword_T05_Iron = new PrefabGUID(-903587404); public static readonly PrefabGUID Item_Weapon_Sword_T06_Iron_Reinforced = new PrefabGUID(-435501075); public static readonly PrefabGUID Item_Weapon_Sword_T07_DarkSilver = new PrefabGUID(-1455388114); public static readonly PrefabGUID Item_Weapon_Sword_T08_Sanguine = new PrefabGUID(-774462329); public static readonly PrefabGUID Item_Weapon_Sword_T09_ShadowMatter = new PrefabGUID(-1215982687); public static readonly PrefabGUID Item_Weapon_Sword_Unique_T08_Variation01 = new PrefabGUID(2106567892); public static readonly PrefabGUID Item_Weapon_Sword_Unique_T08_Variation01_Shattered = new PrefabGUID(220001518); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_NameGenerator_T06 = new PrefabGUID(1835208468); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_NameGenerator_T08 = new PrefabGUID(2023500574); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T06 = new PrefabGUID(-1634108038); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T06_Shattered = new PrefabGUID(1579758125); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T08 = new PrefabGUID(152014105); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T08_Shattered = new PrefabGUID(1479621167); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T08_Trader_Template = new PrefabGUID(-228881628); public static readonly PrefabGUID Item_Weapon_TwinBlades_T05_Iron = new PrefabGUID(-1122389049); public static readonly PrefabGUID Item_Weapon_TwinBlades_T06_Iron_Reinforced = new PrefabGUID(-1651990235); public static readonly PrefabGUID Item_Weapon_TwinBlades_T07_DarkSilver = new PrefabGUID(-1595292245); public static readonly PrefabGUID Item_Weapon_TwinBlades_T08_Sanguine = new PrefabGUID(-297349982); public static readonly PrefabGUID Item_Weapon_TwinBlades_T09_ShadowMatter = new PrefabGUID(-699863795); public static readonly PrefabGUID Item_Weapon_TwinBlades_Unique_T08_Variation01 = new PrefabGUID(601169005); public static readonly PrefabGUID Item_Weapon_TwinBlades_Unique_T08_Variation01_Shattered = new PrefabGUID(-1397287045); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_NameGenerator_T06 = new PrefabGUID(-882837429); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_NameGenerator_T08 = new PrefabGUID(1838862498); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T06 = new PrefabGUID(1705984031); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T06_Shattered = new PrefabGUID(-1222824286); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T08 = new PrefabGUID(429323760); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T08_Shattered = new PrefabGUID(1490846791); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T08_Trader_Template = new PrefabGUID(1340494453); public static readonly PrefabGUID Item_Weapon_Whip_T05_Iron = new PrefabGUID(-847062445); public static readonly PrefabGUID Item_Weapon_Whip_T06_Iron_Reinforced = new PrefabGUID(1393113320); public static readonly PrefabGUID Item_Weapon_Whip_T07_DarkSilver = new PrefabGUID(-960205578); public static readonly PrefabGUID Item_Weapon_Whip_T08_Sanguine = new PrefabGUID(-655095317); public static readonly PrefabGUID Item_Weapon_Whip_T09_ShadowMatter = new PrefabGUID(567413754); public static readonly PrefabGUID Item_Weapon_Whip_Unique_T08_Variation01 = new PrefabGUID(-671246832); public static readonly PrefabGUID Item_Weapon_Whip_Unique_T08_Variation01_Shattered = new PrefabGUID(950358400); public static readonly PrefabGUID ItemSet_Bags = new PrefabGUID(1414549584); public static readonly PrefabGUID ItemSet_BlackfangBossBrutal = new PrefabGUID(-1516830124); public static readonly PrefabGUID ItemSet_BlackfangSultan = new PrefabGUID(1624446354); public static readonly PrefabGUID ItemSet_BlackfangWeapons = new PrefabGUID(-1333030120); public static readonly PrefabGUID ItemSet_BoneSet = new PrefabGUID(-136285968); public static readonly PrefabGUID ItemSet_Books_Tier01 = new PrefabGUID(709277647); public static readonly PrefabGUID ItemSet_Books_Tier02 = new PrefabGUID(1841142040); public static readonly PrefabGUID ItemSet_CloakSet = new PrefabGUID(-16207254); public static readonly PrefabGUID ItemSet_ClothSet = new PrefabGUID(1120428504); public static readonly PrefabGUID ItemSet_Coating = new PrefabGUID(-463722364); public static readonly PrefabGUID ItemSet_Consumables = new PrefabGUID(-196242756); public static readonly PrefabGUID ItemSet_Consumables_PVP = new PrefabGUID(682937307); public static readonly PrefabGUID ItemSet_CopperSet = new PrefabGUID(1357780522); public static readonly PrefabGUID ItemSet_Cosmetic = new PrefabGUID(579427768); public static readonly PrefabGUID ItemSet_Cotton_Lvl47 = new PrefabGUID(-1144633555); public static readonly PrefabGUID ItemSet_CottonSet = new PrefabGUID(-1288353669); public static readonly PrefabGUID ItemSet_CottonSet_IronWeapons = new PrefabGUID(2093479860); public static readonly PrefabGUID ItemSet_CottonSet_IronWeapons_Lvl56 = new PrefabGUID(-1289195855); public static readonly PrefabGUID ItemSet_CursedForest = new PrefabGUID(-515036168); public static readonly PrefabGUID ItemSet_DarkSilverSet = new PrefabGUID(-1637805902); public static readonly PrefabGUID ItemSet_DarkSilverWeapons = new PrefabGUID(-861769370); public static readonly PrefabGUID ItemSet_DraculaSet = new PrefabGUID(-500645135); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Brute = new PrefabGUID(1123487794); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Rogue = new PrefabGUID(1303241666); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Scholar = new PrefabGUID(-252758424); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Warrior = new PrefabGUID(373637648); public static readonly PrefabGUID ItemSet_DraculaSet_NoWeapons = new PrefabGUID(1894455847); public static readonly PrefabGUID ItemSet_DraculaSet_RelaseMeta_PVP = new PrefabGUID(-830070877); public static readonly PrefabGUID ItemSet_Fish = new PrefabGUID(1327284579); public static readonly PrefabGUID ItemSet_Food = new PrefabGUID(484091631); public static readonly PrefabGUID ItemSet_Gems = new PrefabGUID(-610515613); public static readonly PrefabGUID ItemSet_Hats = new PrefabGUID(-1210785506); public static readonly PrefabGUID ItemSet_Ilves = new PrefabGUID(-1790676048); public static readonly PrefabGUID ItemSet_IronSet = new PrefabGUID(-2088928416); public static readonly PrefabGUID ItemSet_Legendary_T06 = new PrefabGUID(-370662923); public static readonly PrefabGUID ItemSet_Legendary_T06_Shattered = new PrefabGUID(731363603); public static readonly PrefabGUID ItemSet_Legendary_T08 = new PrefabGUID(2004281040); public static readonly PrefabGUID ItemSet_Legendary_T08_Shattered = new PrefabGUID(85533370); public static readonly PrefabGUID ItemSet_MagicSources = new PrefabGUID(646741696); public static readonly PrefabGUID ItemSet_MagicSourceT08 = new PrefabGUID(1399586961); public static readonly PrefabGUID ItemSet_MidTierSet = new PrefabGUID(-1626977891); public static readonly PrefabGUID ItemSet_Official_Equipment_T03 = new PrefabGUID(742198603); public static readonly PrefabGUID ItemSet_Official_Equipment_T04 = new PrefabGUID(-663535879); public static readonly PrefabGUID ItemSet_Official_Equipment_T05 = new PrefabGUID(688096336); public static readonly PrefabGUID ItemSet_Official_Equipment_T06 = new PrefabGUID(-1502721803); public static readonly PrefabGUID ItemSet_Official_Equipment_T07 = new PrefabGUID(28431735); public static readonly PrefabGUID ItemSet_Official_Equipment_T08 = new PrefabGUID(-983090495); public static readonly PrefabGUID ItemSet_Official_Equipment_T09 = new PrefabGUID(-1466803079); public static readonly PrefabGUID ItemSet_Official_Materials_T03 = new PrefabGUID(1982471388); public static readonly PrefabGUID ItemSet_Official_Materials_T04 = new PrefabGUID(1504234317); public static readonly PrefabGUID ItemSet_Official_Materials_T05 = new PrefabGUID(548330870); public static readonly PrefabGUID ItemSet_Official_Materials_T06 = new PrefabGUID(815373441); public static readonly PrefabGUID ItemSet_Official_Materials_T07 = new PrefabGUID(-1370930855); public static readonly PrefabGUID ItemSet_Official_Materials_T08 = new PrefabGUID(-1394108841); public static readonly PrefabGUID ItemSet_Passives_T01 = new PrefabGUID(-1302036775); public static readonly PrefabGUID ItemSet_Passives_T02 = new PrefabGUID(-479270617); public static readonly PrefabGUID ItemSet_Plants = new PrefabGUID(-1877193156); public static readonly PrefabGUID ItemSet_PMK01Set = new PrefabGUID(1172043481); public static readonly PrefabGUID ItemSet_PMK02Set = new PrefabGUID(1130055173); public static readonly PrefabGUID ItemSet_PMK03Set = new PrefabGUID(1470030151); public static readonly PrefabGUID ItemSet_ReinforcedBoneSet = new PrefabGUID(-484400788); public static readonly PrefabGUID ItemSet_SanguineSet = new PrefabGUID(-1860938785); public static readonly PrefabGUID ItemSet_SanguineSet_Lvl90_NoWeapons = new PrefabGUID(1085490356); public static readonly PrefabGUID ItemSet_SanguineSet_NoWeapons = new PrefabGUID(557527863); public static readonly PrefabGUID ItemSet_Seeds = new PrefabGUID(-1705042040); public static readonly PrefabGUID ItemSet_StartingRagsSet = new PrefabGUID(-1334748577); public static readonly PrefabGUID ItemSet_UniqueWeapons = new PrefabGUID(1570175408); public static readonly PrefabGUID Jewel_SpellMod_Tier_Curve = new PrefabGUID(-397540005); public static readonly PrefabGUID Jewel_SpellModTierSettings = new PrefabGUID(-639567330); public static readonly PrefabGUID JewelFloorBuildMenuGroup = new PrefabGUID(-111344929); public static readonly PrefabGUID Journal_AchievementsList = new PrefabGUID(957647889); public static readonly PrefabGUID Journal_ArmorOfBones_All = new PrefabGUID(1566228114); public static readonly PrefabGUID Journal_ArmorOfBones_Lower = new PrefabGUID(-1653648385); public static readonly PrefabGUID Journal_ArmorOfBones_Upper = new PrefabGUID(-2071097880); public static readonly PrefabGUID Journal_ArmyOfDarkness = new PrefabGUID(-437605270); public static readonly PrefabGUID Journal_BloodHunt = new PrefabGUID(-1995132640); public static readonly PrefabGUID Journal_BloodOnTap = new PrefabGUID(1248242594); public static readonly PrefabGUID Journal_BroadenHorizons = new PrefabGUID(-1472413073); public static readonly PrefabGUID Journal_CollectingTheRemains = new PrefabGUID(-1770927128); public static readonly PrefabGUID Journal_CompleteARoom = new PrefabGUID(334973636); public static readonly PrefabGUID Journal_CompleteARoomTreasury = new PrefabGUID(-686187838); public static readonly PrefabGUID Journal_ControllingMagic = new PrefabGUID(-1400391027); public static readonly PrefabGUID Journal_DarkCompanion = new PrefabGUID(-699165894); public static readonly PrefabGUID Journal_EyeOfMortium = new PrefabGUID(-452204266); public static readonly PrefabGUID Journal_Fortify = new PrefabGUID(-1899098914); public static readonly PrefabGUID Journal_Gathering = new PrefabGUID(-54280488); public static readonly PrefabGUID Journal_GettingReadyForTheHunt = new PrefabGUID(560247139); public static readonly PrefabGUID Journal_HuntingTheWild = new PrefabGUID(-1088424522); public static readonly PrefabGUID Journal_IntoTheWoods = new PrefabGUID(1695239324); public static readonly PrefabGUID Journal_LordOfTheManor = new PrefabGUID(606418711); public static readonly PrefabGUID Journal_LordOfTheNight = new PrefabGUID(1762480233); public static readonly PrefabGUID Journal_RepellingMagic = new PrefabGUID(-2102083739); public static readonly PrefabGUID Journal_ResearchDesk = new PrefabGUID(-1434604634); public static readonly PrefabGUID Journal_Reward_Tech_BatThrone = new PrefabGUID(1107902126); public static readonly PrefabGUID Journal_Reward_Tech_BloodAltar = new PrefabGUID(-1471814629); public static readonly PrefabGUID Journal_Reward_Tech_BloodKey = new PrefabGUID(-244657686); public static readonly PrefabGUID Journal_Reward_Tech_BloodTracking = new PrefabGUID(-1959133159); public static readonly PrefabGUID Journal_Reward_Tech_BoneArmor = new PrefabGUID(1595560597); public static readonly PrefabGUID Journal_Reward_Tech_BoneArmorLower = new PrefabGUID(-1309749813); public static readonly PrefabGUID Journal_Reward_Tech_BoneArmorUpperAndSalve = new PrefabGUID(-688527589); public static readonly PrefabGUID Journal_Reward_Tech_BoneAxe = new PrefabGUID(-1414383551); public static readonly PrefabGUID Journal_Reward_Tech_BoneAxeAndBoneMace = new PrefabGUID(-460319097); public static readonly PrefabGUID Journal_Reward_Tech_BoneMace = new PrefabGUID(-1704296059); public static readonly PrefabGUID Journal_Reward_Tech_BoneRing = new PrefabGUID(-16287215); public static readonly PrefabGUID Journal_Reward_Tech_BoneSpear = new PrefabGUID(382568697); public static readonly PrefabGUID Journal_Reward_Tech_BoneSword = new PrefabGUID(1183771910); public static readonly PrefabGUID Journal_Reward_Tech_BoneSwordAndBoneRing = new PrefabGUID(-18170500); public static readonly PrefabGUID Journal_Reward_Tech_CastleHeart = new PrefabGUID(-1498219974); public static readonly PrefabGUID Journal_Reward_Tech_CommandingForm = new PrefabGUID(-1941680956); public static readonly PrefabGUID Journal_Reward_Tech_CryptFloor = new PrefabGUID(1738745841); public static readonly PrefabGUID Journal_Reward_Tech_DraculaThrone = new PrefabGUID(-1462758332); public static readonly PrefabGUID Journal_Reward_Tech_Framework_Stone = new PrefabGUID(-823914122); public static readonly PrefabGUID Journal_Reward_Tech_Framework_Wood_Foundation = new PrefabGUID(1119342674); public static readonly PrefabGUID Journal_Reward_Tech_Framework_Wood_Structures = new PrefabGUID(-1315800811); public static readonly PrefabGUID Journal_Reward_Tech_JewelCraftingFloor = new PrefabGUID(140759426); public static readonly PrefabGUID Journal_Reward_Tech_Mirrors = new PrefabGUID(-477512582); public static readonly PrefabGUID Journal_Reward_Tech_MusicPlayer = new PrefabGUID(-765236681); public static readonly PrefabGUID Journal_Reward_Tech_NoctemRadar = new PrefabGUID(347964688); public static readonly PrefabGUID Journal_Reward_Tech_PrisonFloor = new PrefabGUID(687369718); public static readonly PrefabGUID Journal_Reward_Tech_PsychicForm = new PrefabGUID(1901315238); public static readonly PrefabGUID Journal_Reward_Tech_RelicRadar = new PrefabGUID(-1887126093); public static readonly PrefabGUID Journal_Reward_Tech_RelocationBeacon = new PrefabGUID(320271611); public static readonly PrefabGUID Journal_Reward_Tech_ResearchStation = new PrefabGUID(1296847090); public static readonly PrefabGUID Journal_Reward_Tech_Saddle = new PrefabGUID(-262116336); public static readonly PrefabGUID Journal_Reward_Tech_Salve = new PrefabGUID(-2040627193); public static readonly PrefabGUID Journal_Reward_Tech_ServantCoffin = new PrefabGUID(-217048074); public static readonly PrefabGUID Journal_Reward_Tech_SpecialStorage = new PrefabGUID(1436743006); public static readonly PrefabGUID Journal_Reward_Tech_SpellSlot1 = new PrefabGUID(-2023076386); public static readonly PrefabGUID Journal_Reward_Tech_SpellSlot2 = new PrefabGUID(1715810633); public static readonly PrefabGUID Journal_Reward_Tech_StoneCoffin = new PrefabGUID(1397633835); public static readonly PrefabGUID Journal_Reward_Tech_StructuresT01 = new PrefabGUID(-1950144618); public static readonly PrefabGUID Journal_Reward_Tech_TreasuryFloor = new PrefabGUID(1552474029); public static readonly PrefabGUID Journal_Reward_Tech_WallpaperImperious = new PrefabGUID(-485239202); public static readonly PrefabGUID Journal_Reward_Tech_Waypoint = new PrefabGUID(1733405785); public static readonly PrefabGUID Journal_Servants = new PrefabGUID(-892747762); public static readonly PrefabGUID Journal_Settling = new PrefabGUID(1694767961); public static readonly PrefabGUID Journal_Shelter = new PrefabGUID(-122882616); public static readonly PrefabGUID Journal_SoulStones = new PrefabGUID(-2104585843); public static readonly PrefabGUID Journal_StoneBreaker = new PrefabGUID(1502386974); public static readonly PrefabGUID Journal_SubTask_CommandHorse = new PrefabGUID(1886200394); public static readonly PrefabGUID Journal_SubTask_CompleteARoom = new PrefabGUID(-1280890101); public static readonly PrefabGUID Journal_SubTask_CompleteATreasury = new PrefabGUID(1493529939); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneBoots = new PrefabGUID(613087777); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneChest = new PrefabGUID(-1792608518); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneGloves = new PrefabGUID(-215213699); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneLeggings = new PrefabGUID(1613921629); public static readonly PrefabGUID Journal_SubTask_Craft_BloodPotion = new PrefabGUID(-505382241); public static readonly PrefabGUID Journal_SubTask_Craft_BoneAxe = new PrefabGUID(1649563361); public static readonly PrefabGUID Journal_SubTask_Craft_BoneMace = new PrefabGUID(-2140658599); public static readonly PrefabGUID Journal_SubTask_Craft_BoneRing = new PrefabGUID(894263396); public static readonly PrefabGUID Journal_SubTask_Craft_BoneSword = new PrefabGUID(-333019031); public static readonly PrefabGUID Journal_SubTask_EnteredTerritory = new PrefabGUID(1824476056); public static readonly PrefabGUID Journal_SubTask_Exit_Crypt = new PrefabGUID(-70416715); public static readonly PrefabGUID Journal_SubTask_Exit_DraculaThroneRoom = new PrefabGUID(1743914391); public static readonly PrefabGUID Journal_SubTask_Exit_Graveyard = new PrefabGUID(315784360); public static readonly PrefabGUID Journal_SubTask_Explore_NewBiome = new PrefabGUID(1235108858); public static readonly PrefabGUID Journal_SubTask_Feed = new PrefabGUID(430219294); public static readonly PrefabGUID Journal_SubTask_Hit_EnemyWithBloodRite = new PrefabGUID(1179711615); public static readonly PrefabGUID Journal_SubTask_Hit_EnemyWithShadowBolt = new PrefabGUID(1686171456); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Any = new PrefabGUID(853564950); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_BanditKing = new PrefabGUID(1811147566); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Dracula = new PrefabGUID(1295841871); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_FrostGuard = new PrefabGUID(-1222090013); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Keely = new PrefabGUID(-1515007114); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Nicholaus = new PrefabGUID(838689631); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Paladin = new PrefabGUID(-459875067); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Raziel = new PrefabGUID(-1337609527); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Three = new PrefabGUID(297067295); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Tourok = new PrefabGUID(-327523340); public static readonly PrefabGUID Journal_SubTask_Interact_BloodAltar = new PrefabGUID(-1866284149); public static readonly PrefabGUID Journal_SubTask_Interact_BloodFountain_T01 = new PrefabGUID(878062219); public static readonly PrefabGUID Journal_SubTask_Interact_BloodPress = new PrefabGUID(-535764672); public static readonly PrefabGUID Journal_SubTask_Interact_EyeOfMortium = new PrefabGUID(-320407376); public static readonly PrefabGUID Journal_SubTask_Interact_Grinder = new PrefabGUID(1658353000); public static readonly PrefabGUID Journal_SubTask_Interact_Prison = new PrefabGUID(-1441066187); public static readonly PrefabGUID Journal_SubTask_Interact_RelicRadar = new PrefabGUID(-568627115); public static readonly PrefabGUID Journal_SubTask_Interact_ResearchDesk = new PrefabGUID(1378971140); public static readonly PrefabGUID Journal_SubTask_Interact_Sawmill = new PrefabGUID(167430230); public static readonly PrefabGUID Journal_SubTask_Interact_Servant = new PrefabGUID(723729339); public static readonly PrefabGUID Journal_SubTask_Interact_ServantCoffin = new PrefabGUID(-969297421); public static readonly PrefabGUID Journal_SubTask_Interact_SimpleWorkbench = new PrefabGUID(-400096203); public static readonly PrefabGUID Journal_SubTask_Interact_StoneCoffin = new PrefabGUID(-2058636945); public static readonly PrefabGUID Journal_SubTask_Interact_Throne = new PrefabGUID(1332804079); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl2 = new PrefabGUID(-2048048558); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl3 = new PrefabGUID(1934154656); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl4 = new PrefabGUID(-1024195028); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl5 = new PrefabGUID(159011421); public static readonly PrefabGUID Journal_SubTask_Interact_Waypoint = new PrefabGUID(-1304648326); public static readonly PrefabGUID Journal_SubTask_Kill_EnemiesWithSword = new PrefabGUID(-363083008); public static readonly PrefabGUID Journal_SubTask_Kill_Rocks = new PrefabGUID(-451753621); public static readonly PrefabGUID Journal_SubTask_Kill_RocksWithMaces = new PrefabGUID(2022269495); public static readonly PrefabGUID Journal_SubTask_Kill_Something = new PrefabGUID(1338261226); public static readonly PrefabGUID Journal_SubTask_Kill_Trees = new PrefabGUID(753353958); public static readonly PrefabGUID Journal_SubTask_Kill_TreeWithAxes = new PrefabGUID(-1976367576); public static readonly PrefabGUID Journal_SubTask_Obtain_AnimalHides = new PrefabGUID(-2016184431); public static readonly PrefabGUID Journal_SubTask_Obtain_BloodEssence = new PrefabGUID(635040254); public static readonly PrefabGUID Journal_SubTask_Obtain_Bones = new PrefabGUID(-1643854004); public static readonly PrefabGUID Journal_SubTask_Obtain_CoarseThread = new PrefabGUID(-2118994657); public static readonly PrefabGUID Journal_SubTask_Obtain_CopperIngot = new PrefabGUID(-65596053); public static readonly PrefabGUID Journal_SubTask_Obtain_CopperOre = new PrefabGUID(837381622); public static readonly PrefabGUID Journal_SubTask_Obtain_Leather = new PrefabGUID(1790152475); public static readonly PrefabGUID Journal_SubTask_Obtain_Lumber = new PrefabGUID(1990570379); public static readonly PrefabGUID Journal_SubTask_Obtain_PlantFibers = new PrefabGUID(1063312374); public static readonly PrefabGUID Journal_SubTask_Obtain_Rats = new PrefabGUID(1623265039); public static readonly PrefabGUID Journal_SubTask_Obtain_Stones = new PrefabGUID(1003051915); public static readonly PrefabGUID Journal_SubTask_OpenBuildMenu = new PrefabGUID(219936010); public static readonly PrefabGUID Journal_SubTask_OpenInventory = new PrefabGUID(-1183631535); public static readonly PrefabGUID Journal_SubTask_OpenMap = new PrefabGUID(-1243196902); public static readonly PrefabGUID Journal_SubTask_Reach_GearLevel = new PrefabGUID(1059247569); public static readonly PrefabGUID Journal_SubTask_Spawn_BloodFountain = new PrefabGUID(-1688286130); public static readonly PrefabGUID Journal_SubTask_Spawn_Bonfire = new PrefabGUID(1032741646); public static readonly PrefabGUID Journal_SubTask_Spawn_Castle_Foundation = new PrefabGUID(-1031271191); public static readonly PrefabGUID Journal_SubTask_Spawn_MistBrazier = new PrefabGUID(-1586770827); public static readonly PrefabGUID Journal_SubTask_Spawn_Palisades = new PrefabGUID(1601701965); public static readonly PrefabGUID Journal_SubTask_Spawn_PlainFloor = new PrefabGUID(204584750); public static readonly PrefabGUID Journal_SubTask_Spawn_Stash = new PrefabGUID(-2049723960); public static readonly PrefabGUID Journal_SubTask_Spawn_SunShelter = new PrefabGUID(861992743); public static readonly PrefabGUID Journal_SubTask_Spawn_WoodenCoffin = new PrefabGUID(-787032445); public static readonly PrefabGUID Journal_SubTask_UnlockNewSpell = new PrefabGUID(1901914570); public static readonly PrefabGUID Journal_SubTask_UnlockTech_CastleFramework = new PrefabGUID(-1655002978); public static readonly PrefabGUID Journal_SubTask_Use_VBloodMenu = new PrefabGUID(1842279965); public static readonly PrefabGUID Journal_ThirstForPower = new PrefabGUID(-302458684); public static readonly PrefabGUID Journal_ThroneOfCommand = new PrefabGUID(-327597689); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier02 = new PrefabGUID(1668809517); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier03 = new PrefabGUID(149111189); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier04 = new PrefabGUID(1805684941); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier05 = new PrefabGUID(1861267375); public static readonly PrefabGUID Journal_Waypoint = new PrefabGUID(134993992); public static readonly PrefabGUID Journal_WieldTheSword = new PrefabGUID(436375429); public static readonly PrefabGUID JournalAsset_VBlood_Ability = new PrefabGUID(1808963981); public static readonly PrefabGUID JournalAsset_VBlood_Milestone = new PrefabGUID(631677825); public static readonly PrefabGUID JournalAsset_VBlood_Perk = new PrefabGUID(275198927); public static readonly PrefabGUID JournalAsset_VBlood_Shapeshift = new PrefabGUID(1097416038); public static readonly PrefabGUID JT_Test_Tooltip0 = new PrefabGUID(1512711212); public static readonly PrefabGUID JT_Test_Tooltip1 = new PrefabGUID(-1966508143); public static readonly PrefabGUID JT_Test_Tooltip2 = new PrefabGUID(602556420); public static readonly PrefabGUID JumpFromCliffs_AvoidDoubleJump = new PrefabGUID(-2140163907); public static readonly PrefabGUID JumpFromCliffs_Landing = new PrefabGUID(940232581); public static readonly PrefabGUID JumpFromCliffs_Travel = new PrefabGUID(691373616); public static readonly PrefabGUID JumpFromCliffs_Travel_Upwards = new PrefabGUID(-915122939); public static readonly PrefabGUID JumpFromCliffs_TriggerLeapUpAbility = new PrefabGUID(-1752769220); public static readonly PrefabGUID LavishBustBuildMenuGroup = new PrefabGUID(945053616); public static readonly PrefabGUID LavishGargoyleBuildMenuGroup = new PrefabGUID(1305900484); public static readonly PrefabGUID LavishStatueBuildMenuGroup = new PrefabGUID(1305218943); public static readonly PrefabGUID LavishVaseBuildMenuGroup = new PrefabGUID(1059987345); public static readonly PrefabGUID LegendaryItem_SpellModTierSettings = new PrefabGUID(-1706838853); public static readonly PrefabGUID LegendaryItem_StatModTierSettings = new PrefabGUID(717858233); public static readonly PrefabGUID LegendaryItem_Template = new PrefabGUID(-1573584970); public static readonly PrefabGUID LibraryFloorBuildMenuGroup = new PrefabGUID(-1218060785); public static readonly PrefabGUID LifeLeech_Settings_Default = new PrefabGUID(1949460792); public static readonly PrefabGUID LightningLightIntensityCurve = new PrefabGUID(1039030447); public static readonly PrefabGUID LightningStormType_CastleArea = new PrefabGUID(-1484860289); public static readonly PrefabGUID LightningStormType_GloomRot_General = new PrefabGUID(1089911584); public static readonly PrefabGUID LightningStormType_NoLightning = new PrefabGUID(1359681879); public static readonly PrefabGUID LightningStormType_TeslaHills = new PrefabGUID(520448353); public static readonly PrefabGUID LightningStormUnit_Example = new PrefabGUID(2016632390); public static readonly PrefabGUID LinearCurve = new PrefabGUID(1701453732); public static readonly PrefabGUID LinearCurve_MoreSmoothed = new PrefabGUID(677013970); public static readonly PrefabGUID LinearCurve_Smoothed = new PrefabGUID(-1408753583); public static readonly PrefabGUID LinearCurveInverted = new PrefabGUID(323979990); public static readonly PrefabGUID LinearInOutAndBackCurve = new PrefabGUID(-990642999); public static readonly PrefabGUID Liquid_TileModelPlacementRules = new PrefabGUID(-18625159); public static readonly PrefabGUID Liquid_TileModelPlacementRules_Sludge = new PrefabGUID(454966889); public static readonly PrefabGUID Liquid_TileModelPlacementRules_Small = new PrefabGUID(1374281814); public static readonly PrefabGUID LowActivityTimer = new PrefabGUID(-61918729); public static readonly PrefabGUID LowHealth_Curve = new PrefabGUID(1683841019); public static readonly PrefabGUID LumberJack_Ragdoll100_Prefab = new PrefabGUID(456978830); public static readonly PrefabGUID LumberJack_Ragdoll125_Prefab = new PrefabGUID(529825818); public static readonly PrefabGUID LumberJack_Ragdoll140_Prefab = new PrefabGUID(142009383); public static readonly PrefabGUID Magic_ImpactMapping = new PrefabGUID(-1184337946); public static readonly PrefabGUID Magic_ImpactMapping_No_Flesh_Impact = new PrefabGUID(-1156857871); public static readonly PrefabGUID Manticore_Spawn_FromSide = new PrefabGUID(1236029872); public static readonly PrefabGUID ManticoreLandingCurve = new PrefabGUID(-2146891481); public static readonly PrefabGUID ManticoreSupriseActiveTimer = new PrefabGUID(9869524); public static readonly PrefabGUID ManticoreSupriseHeightCurve = new PrefabGUID(1476497907); public static readonly PrefabGUID MapIcon_CastleObject_Anvil = new PrefabGUID(880725011); public static readonly PrefabGUID MapIcon_CastleObject_BloodAltar = new PrefabGUID(-1639620581); public static readonly PrefabGUID MapIcon_CastleObject_CastleHeart = new PrefabGUID(652170644); public static readonly PrefabGUID MapIcon_CastleObject_CraftingBench = new PrefabGUID(-2136859183); public static readonly PrefabGUID MapIcon_CastleObject_Default = new PrefabGUID(-1511010205); public static readonly PrefabGUID MapIcon_CastleObject_JewelCrafting = new PrefabGUID(268696952); public static readonly PrefabGUID MapIcon_CastleObject_ResearchStation = new PrefabGUID(-623144025); public static readonly PrefabGUID MapIcon_CastleObject_Tailor = new PrefabGUID(-1060998155); public static readonly PrefabGUID MapIcon_CastleWaypoint_Active = new PrefabGUID(404272564); public static readonly PrefabGUID MapIcon_Cave_Entryway = new PrefabGUID(743889990); public static readonly PrefabGUID MapIcon_CharmedUnit = new PrefabGUID(-1491648886); public static readonly PrefabGUID MapIcon_Crypt = new PrefabGUID(-2078904014); public static readonly PrefabGUID MapIcon_DeathContainer = new PrefabGUID(-1597024018); public static readonly PrefabGUID MapIcon_DraculasCastle = new PrefabGUID(-2066471106); public static readonly PrefabGUID MapIcon_Exit = new PrefabGUID(-1527777594); public static readonly PrefabGUID MapIcon_LocalPlayer = new PrefabGUID(-1323817571); public static readonly PrefabGUID MapIcon_Mount = new PrefabGUID(1495684919); public static readonly PrefabGUID MapIcon_Player = new PrefabGUID(-892362184); public static readonly PrefabGUID MapIcon_PlayerCustomMarker = new PrefabGUID(1716771727); public static readonly PrefabGUID MapIcon_PlayerCustomMarkerPathfindDot = new PrefabGUID(-438821425); public static readonly PrefabGUID MapIcon_PlayerPathDot = new PrefabGUID(467133242); public static readonly PrefabGUID MapIcon_POI_Discover_BanditCamp = new PrefabGUID(2043384709); public static readonly PrefabGUID MapIcon_POI_Discover_BanditEncampment = new PrefabGUID(1519700716); public static readonly PrefabGUID MapIcon_POI_Discover_BanditFortification = new PrefabGUID(1092950571); public static readonly PrefabGUID MapIcon_POI_Discover_BanditHideout = new PrefabGUID(1210453814); public static readonly PrefabGUID MapIcon_POI_Discover_BanditOutpost = new PrefabGUID(1957543975); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_Bandit = new PrefabGUID(1501929529); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_GrizzlyBear = new PrefabGUID(400428420); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_Militia = new PrefabGUID(216024887); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_SpiderQueen = new PrefabGUID(-1798124394); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_Undead = new PrefabGUID(-1887784669); public static readonly PrefabGUID MapIcon_POI_Discover_ChurchFarmlands = new PrefabGUID(-1893591910); public static readonly PrefabGUID MapIcon_POI_Discover_CottonPlantation = new PrefabGUID(-768444788); public static readonly PrefabGUID MapIcon_POI_Discover_CryptVault = new PrefabGUID(603697502); public static readonly PrefabGUID MapIcon_POI_Discover_CultistSite = new PrefabGUID(931669506); public static readonly PrefabGUID MapIcon_POI_Discover_DunleyChurch = new PrefabGUID(632395128); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsChurch = new PrefabGUID(-1256336496); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsFarm = new PrefabGUID(239387799); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsGarlicFarm = new PrefabGUID(297452363); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsHorseFarm = new PrefabGUID(-948983333); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsTown = new PrefabGUID(-1426507977); public static readonly PrefabGUID MapIcon_POI_Discover_ForgottenCemetery = new PrefabGUID(-2040967389); public static readonly PrefabGUID MapIcon_POI_Discover_GhostTown = new PrefabGUID(-1276819284); public static readonly PrefabGUID MapIcon_POI_Discover_Graveyard = new PrefabGUID(698241041); public static readonly PrefabGUID MapIcon_POI_Discover_InfestedMines = new PrefabGUID(1904546641); public static readonly PrefabGUID MapIcon_POI_Discover_IronMines = new PrefabGUID(1903833803); public static readonly PrefabGUID MapIcon_POI_Discover_LumberjackCamp = new PrefabGUID(1148857439); public static readonly PrefabGUID MapIcon_POI_Discover_Merchant = new PrefabGUID(-360752412); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaCommandPost = new PrefabGUID(105682385); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaEncampment = new PrefabGUID(-605145652); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaFortification = new PrefabGUID(1115067066); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaWatchTower = new PrefabGUID(-1768623961); public static readonly PrefabGUID MapIcon_POI_Discover_SpiderForest = new PrefabGUID(-680026394); public static readonly PrefabGUID MapIcon_POI_Discover_TerokiMeadows = new PrefabGUID(-1379366510); public static readonly PrefabGUID MapIcon_POI_Discover_TownFarmlands = new PrefabGUID(563819869); public static readonly PrefabGUID MapIcon_POI_Discover_Unknown = new PrefabGUID(-1443504104); public static readonly PrefabGUID MapIcon_POI_Discover_WolfDen = new PrefabGUID(-1443808553); public static readonly PrefabGUID MapIcon_POI_Knowledge_Church = new PrefabGUID(-1571811509); public static readonly PrefabGUID MapIcon_POI_Knowledge_LumberjackCamp = new PrefabGUID(351553164); public static readonly PrefabGUID MapIcon_POI_Knowledge_Settlement = new PrefabGUID(138663934); public static readonly PrefabGUID MapIcon_POI_Knowledge_Town = new PrefabGUID(-221292597); public static readonly PrefabGUID MapIcon_POI_Resource_CoalMine = new PrefabGUID(1992891574); public static readonly PrefabGUID MapIcon_POI_Resource_CopperQuarry = new PrefabGUID(419555810); public static readonly PrefabGUID MapIcon_POI_Resource_CottonPlantation = new PrefabGUID(468675810); public static readonly PrefabGUID MapIcon_POI_Resource_DuskbarkForest = new PrefabGUID(-1989680779); public static readonly PrefabGUID MapIcon_POI_Resource_ForgottenCemetery = new PrefabGUID(-1405787520); public static readonly PrefabGUID MapIcon_POI_Resource_GrizzlyBearDen = new PrefabGUID(-107944115); public static readonly PrefabGUID MapIcon_POI_Resource_IronMine = new PrefabGUID(-1725105796); public static readonly PrefabGUID MapIcon_POI_Resource_IronVein = new PrefabGUID(-1132008653); public static readonly PrefabGUID MapIcon_POI_Resource_Permanent_CopperQuarry = new PrefabGUID(701513285); public static readonly PrefabGUID MapIcon_POI_Resource_QuartzMine = new PrefabGUID(-853022254); public static readonly PrefabGUID MapIcon_POI_Resource_QuartzQuarry = new PrefabGUID(-426591728); public static readonly PrefabGUID MapIcon_POI_Resource_SaintLilyCemetery = new PrefabGUID(-1766751566); public static readonly PrefabGUID MapIcon_POI_Resource_SnowBlossomForest = new PrefabGUID(643012707); public static readonly PrefabGUID MapIcon_POI_Spawn_CoffinSelect = new PrefabGUID(1454830975); public static readonly PrefabGUID MapIcon_POI_Spawn_CryptSelect = new PrefabGUID(-1938049417); public static readonly PrefabGUID MapIcon_POI_Spawn_WaypointSelect = new PrefabGUID(-2098609826); public static readonly PrefabGUID MapIcon_POI_VBloodSource = new PrefabGUID(139106998); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditCamp = new PrefabGUID(-2024577803); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditEncampment = new PrefabGUID(-1284305052); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditFortification = new PrefabGUID(-1581266825); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditHideout = new PrefabGUID(1986924834); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditOutpost = new PrefabGUID(452704314); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_Bandit = new PrefabGUID(710975801); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_GrizzlyBear = new PrefabGUID(-145632811); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_Militia = new PrefabGUID(370867222); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_SpiderQueen = new PrefabGUID(-1879843784); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_Undead = new PrefabGUID(1767556146); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Church = new PrefabGUID(500071286); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CoalMine = new PrefabGUID(630501569); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CopperQuarry = new PrefabGUID(-585025165); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CottonPlantation = new PrefabGUID(965726709); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CryptVault = new PrefabGUID(-1082853182); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CultistSite = new PrefabGUID(-65916532); public static readonly PrefabGUID MapIcon_ProxyObject_POI_DunleyChurch = new PrefabGUID(990569324); public static readonly PrefabGUID MapIcon_ProxyObject_POI_DuskbarkForest = new PrefabGUID(-106804874); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsChurch = new PrefabGUID(-1018104682); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsFarm = new PrefabGUID(-999746956); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsGarlicFarm = new PrefabGUID(-1084088565); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsHorseFarm = new PrefabGUID(-1777104040); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsTown = new PrefabGUID(1924630383); public static readonly PrefabGUID MapIcon_ProxyObject_POI_ForgottenCemetery = new PrefabGUID(408232291); public static readonly PrefabGUID MapIcon_ProxyObject_POI_GhostTown = new PrefabGUID(-1434570252); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Graveyard = new PrefabGUID(2045982916); public static readonly PrefabGUID MapIcon_ProxyObject_POI_InfestedMine = new PrefabGUID(-217075927); public static readonly PrefabGUID MapIcon_ProxyObject_POI_IronMine = new PrefabGUID(1180313228); public static readonly PrefabGUID MapIcon_ProxyObject_POI_IronVein = new PrefabGUID(-535576410); public static readonly PrefabGUID MapIcon_ProxyObject_POI_LumberjackCamp = new PrefabGUID(-1276797562); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Merchant = new PrefabGUID(-1881940993); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaCommandPost = new PrefabGUID(678331973); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaEncampment = new PrefabGUID(1243962780); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaFortification = new PrefabGUID(-1391409278); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaWatchtower = new PrefabGUID(-142112866); public static readonly PrefabGUID MapIcon_ProxyObject_POI_QuartzMine = new PrefabGUID(-13809783); public static readonly PrefabGUID MapIcon_ProxyObject_POI_QuartzQuarry = new PrefabGUID(304028858); public static readonly PrefabGUID MapIcon_ProxyObject_POI_SaintLilyCemetery = new PrefabGUID(489168296); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Settlement = new PrefabGUID(-1122624185); public static readonly PrefabGUID MapIcon_ProxyObject_POI_SnowBlossomForest = new PrefabGUID(-945166875); public static readonly PrefabGUID MapIcon_ProxyObject_POI_SpiderForest = new PrefabGUID(-2037460151); public static readonly PrefabGUID MapIcon_ProxyObject_POI_TerokiMeadows = new PrefabGUID(-526736389); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Town = new PrefabGUID(22097164); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Unknown = new PrefabGUID(636813227); public static readonly PrefabGUID MapIcon_ProxyObject_POI_VBloodSource = new PrefabGUID(-993684152); public static readonly PrefabGUID MapIcon_ProxyObject_POI_WerewolfSettlement = new PrefabGUID(1488363605); public static readonly PrefabGUID MapIcon_ProxyObject_POI_WolfDen = new PrefabGUID(-655042455); public static readonly PrefabGUID MapIcon_RecommendedTerritoryIcon = new PrefabGUID(906269163); public static readonly PrefabGUID MapIcon_Relic_Base = new PrefabGUID(638227411); public static readonly PrefabGUID MapIcon_Relic_Spawn_Base = new PrefabGUID(-1305965860); public static readonly PrefabGUID MapIcon_Relic_Spawn_Dracula = new PrefabGUID(-834249437); public static readonly PrefabGUID MapIcon_Relic_Spawn_Morgana = new PrefabGUID(1621891122); public static readonly PrefabGUID MapIcon_Relic_Spawn_Solarus = new PrefabGUID(-52304021); public static readonly PrefabGUID MapIcon_Relic_Spawn_TheMonster = new PrefabGUID(1570562186); public static readonly PrefabGUID MapIcon_Relic_Spawn_WingedHorror = new PrefabGUID(-199298876); public static readonly PrefabGUID MapIcon_Relic_Standard_Dracula = new PrefabGUID(1082059027); public static readonly PrefabGUID MapIcon_Relic_Standard_Morgana = new PrefabGUID(1172401273); public static readonly PrefabGUID MapIcon_Relic_Standard_Solarus = new PrefabGUID(2133172828); public static readonly PrefabGUID MapIcon_Relic_Standard_TheMonster = new PrefabGUID(1204693597); public static readonly PrefabGUID MapIcon_Relic_Standard_WingedHorror = new PrefabGUID(622223699); public static readonly PrefabGUID MapIcon_Siege_Summon_T02 = new PrefabGUID(-1769480952); public static readonly PrefabGUID MapIcon_Siege_Summon_T02_Complete = new PrefabGUID(1358914922); public static readonly PrefabGUID MapIcon_StartGraveyardExit = new PrefabGUID(-37003475); public static readonly PrefabGUID MapIcon_StoneCoffin = new PrefabGUID(985620050); public static readonly PrefabGUID MapIcon_UnclaimedCastle = new PrefabGUID(1556395508); public static readonly PrefabGUID MapIcon_WoodenCoffin = new PrefabGUID(1636226671); public static readonly PrefabGUID MapIcon_WorldWaypoint_Active = new PrefabGUID(-1510127174); public static readonly PrefabGUID MegaStaticManager = new PrefabGUID(1921688867); public static readonly PrefabGUID MicroPOI_Dunley_Large_AppelTrees01 = new PrefabGUID(-1210337659); public static readonly PrefabGUID MicroPOI_Dunley_Large_AppelTrees02 = new PrefabGUID(-1562640368); public static readonly PrefabGUID MicroPOI_Dunley_Large_Flowers01 = new PrefabGUID(1980641817); public static readonly PrefabGUID MicroPOI_Dunley_Large_Flowers02 = new PrefabGUID(1271807896); public static readonly PrefabGUID MicroPOI_Dunley_Large_Midsummer01 = new PrefabGUID(870462658); public static readonly PrefabGUID MicroPOI_Dunley_Large_Vegetation01 = new PrefabGUID(-72471177); public static readonly PrefabGUID MicroPOI_Dunley_Large_Vegetation02 = new PrefabGUID(159882170); public static readonly PrefabGUID MicroPOI_Dunley_Small_Copper01 = new PrefabGUID(-594287911); public static readonly PrefabGUID MicroPOI_Dunley_Small_Copper02 = new PrefabGUID(-2126192294); public static readonly PrefabGUID MicroPOI_Dunley_Small_Flowers01 = new PrefabGUID(417587719); public static readonly PrefabGUID MicroPOI_Dunley_Small_Flowers02 = new PrefabGUID(-1877665684); public static readonly PrefabGUID MicroPOI_Dunley_Small_Midsummer01 = new PrefabGUID(-2013850247); public static readonly PrefabGUID MicroPOI_Dunley_Small_Midsummer02 = new PrefabGUID(-486919002); public static readonly PrefabGUID MicroPOI_Dunley_Small_Militia01 = new PrefabGUID(-1782669943); public static readonly PrefabGUID MicroPOI_Dunley_Small_Militia02 = new PrefabGUID(1338878053); public static readonly PrefabGUID MicroPOI_Dunley_Small_SnowFlowers01_Deers01 = new PrefabGUID(-417138462); public static readonly PrefabGUID MicroPOI_Dunley_Small_SnowFlowers01_Deers02 = new PrefabGUID(-1599551402); public static readonly PrefabGUID MicroPOI_Dunley_Small_Tent01 = new PrefabGUID(-954948730); public static readonly PrefabGUID MicroPOI_Dunley_Small_Tent02 = new PrefabGUID(1504627891); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation01 = new PrefabGUID(-1991625430); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation02 = new PrefabGUID(-1915647948); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation03 = new PrefabGUID(-154341752); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation04 = new PrefabGUID(-620373617); public static readonly PrefabGUID MicroPOI_Dunley_Small_Werewolf01 = new PrefabGUID(1188964607); public static readonly PrefabGUID MicroPOI_Dunley_Small_Werewolf02 = new PrefabGUID(553199631); public static readonly PrefabGUID MicroPOI_Dunley_Small_Wolves01 = new PrefabGUID(142047282); public static readonly PrefabGUID MicroPOI_Farbane_Large_Spiders01 = new PrefabGUID(-1314140867); public static readonly PrefabGUID MicroPOI_Farbane_Large_Spiders02 = new PrefabGUID(1629728427); public static readonly PrefabGUID MicroPOI_Farbane_Large_Vegetation01 = new PrefabGUID(753599900); public static readonly PrefabGUID MicroPOI_Farbane_Large_Vegetation02 = new PrefabGUID(-696852918); public static readonly PrefabGUID MicroPOI_Farbane_Manticore_Small_Empty01 = new PrefabGUID(-1431734254); public static readonly PrefabGUID MicroPOI_Farbane_Manticore_Small_Manticore01 = new PrefabGUID(1796319312); public static readonly PrefabGUID MicroPOI_Farbane_Small_BanditTent01 = new PrefabGUID(657107699); public static readonly PrefabGUID MicroPOI_Farbane_Small_BanditTent02 = new PrefabGUID(-612718933); public static readonly PrefabGUID MicroPOI_Farbane_Small_BanditTent03 = new PrefabGUID(-2144772130); public static readonly PrefabGUID MicroPOI_Farbane_Small_Bears01 = new PrefabGUID(832367550); public static readonly PrefabGUID MicroPOI_Farbane_Small_BearTrap01 = new PrefabGUID(-564785241); public static readonly PrefabGUID MicroPOI_Farbane_Small_BearTrap02 = new PrefabGUID(-1817822068); public static readonly PrefabGUID MicroPOI_Farbane_Small_BearTrap03 = new PrefabGUID(1558437715); public static readonly PrefabGUID MicroPOI_Farbane_Small_BloodRoses01_Mantraps = new PrefabGUID(2010421737); public static readonly PrefabGUID MicroPOI_Farbane_Small_BloodRoses02 = new PrefabGUID(1848318604); public static readonly PrefabGUID MicroPOI_Farbane_Small_Copper01 = new PrefabGUID(-1339778715); public static readonly PrefabGUID MicroPOI_Farbane_Small_Crows01 = new PrefabGUID(-1078079211); public static readonly PrefabGUID MicroPOI_Farbane_Small_Graves01 = new PrefabGUID(362500234); public static readonly PrefabGUID MicroPOI_Farbane_Small_Graves02 = new PrefabGUID(912085285); public static readonly PrefabGUID MicroPOI_Farbane_Small_Hunter01 = new PrefabGUID(229271139); public static readonly PrefabGUID MicroPOI_Farbane_Small_Hunter02 = new PrefabGUID(793892165); public static readonly PrefabGUID MicroPOI_Farbane_Small_Hunter03 = new PrefabGUID(1650086643); public static readonly PrefabGUID MicroPOI_Farbane_Small_Sample02 = new PrefabGUID(-659748982); public static readonly PrefabGUID MicroPOI_Farbane_Small_SnowFlowers01_Deers = new PrefabGUID(59294084); public static readonly PrefabGUID MicroPOI_Farbane_Small_Spiders01 = new PrefabGUID(1985970891); public static readonly PrefabGUID MicroPOI_Farbane_Small_Spiders02 = new PrefabGUID(-1524472004); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation01 = new PrefabGUID(1366736737); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation02 = new PrefabGUID(585730248); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation03 = new PrefabGUID(-1630734834); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation04 = new PrefabGUID(868099802); public static readonly PrefabGUID MicroPOI_Farbane_Small_Wolves01 = new PrefabGUID(-1128862864); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Bears01 = new PrefabGUID(1785539142); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Bears02 = new PrefabGUID(-513422694); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Copper01 = new PrefabGUID(2007831563); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Copper02 = new PrefabGUID(-1936233477); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Crows01 = new PrefabGUID(-2110672596); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Crows02 = new PrefabGUID(-1679163292); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Vegetation01 = new PrefabGUID(1103465123); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Vegetation02 = new PrefabGUID(-318863314); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Vegetation03 = new PrefabGUID(259867199); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Tent01 = new PrefabGUID(594457206); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Tent02 = new PrefabGUID(-1708193748); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Vegetation01 = new PrefabGUID(-1974088210); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Vegetation02 = new PrefabGUID(168811515); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Vegetation03 = new PrefabGUID(528364479); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Wolves01 = new PrefabGUID(-1449531798); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Wolves02 = new PrefabGUID(-1737347203); public static readonly PrefabGUID MicroPOIEmptySpawner_A_Large = new PrefabGUID(-473492652); public static readonly PrefabGUID MicroPOIEmptySpawner_A_Small = new PrefabGUID(1009171661); public static readonly PrefabGUID MicroPOIEmptySpawner_B_Small = new PrefabGUID(-951780729); public static readonly PrefabGUID MicroPOIEmptySpawner_C_Small = new PrefabGUID(789321831); public static readonly PrefabGUID MicroPOISpawner_Dunley_Territory_Large = new PrefabGUID(-152605370); public static readonly PrefabGUID MicroPOISpawner_Dunley_Territory_Small = new PrefabGUID(1812317953); public static readonly PrefabGUID MicroPOISpawner_Farbane_Manticore_Territory_Small = new PrefabGUID(156260817); public static readonly PrefabGUID MicroPOISpawner_Farbane_Territory_Large = new PrefabGUID(1739478028); public static readonly PrefabGUID MicroPOISpawner_Farbane_Territory_Small = new PrefabGUID(-486938636); public static readonly PrefabGUID MicroPOISpawner_Farbane_World_Small = new PrefabGUID(1112322011); public static readonly PrefabGUID MicroPOISpawner_Hallowed_Territory_Small = new PrefabGUID(812086806); public static readonly PrefabGUID MicroPOISpawner_Silverlight_Territory_Small = new PrefabGUID(366092960); public static readonly PrefabGUID Militia_BishopOfDunley_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-722362615); public static readonly PrefabGUID Militia_Glassblower_Emote_OnAggro_Buff = new PrefabGUID(-656453991); public static readonly PrefabGUID Militia_Guard_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-540806602); public static readonly PrefabGUID Militia_Leader_Emote_OnAggro_Buff = new PrefabGUID(-2053380990); public static readonly PrefabGUID Militia_LightArrow_VBlood_Emote_OnAggro_Buff = new PrefabGUID(717888186); public static readonly PrefabGUID Militia_Nun_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1021830433); public static readonly PrefabGUID Militia_Scribe_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-2118095425); public static readonly PrefabGUID MilitiaLeader_WhirlwindSlowDown_Curve = new PrefabGUID(-1536368198); public static readonly PrefabGUID MilitiaLeader_WhirlwindSpeed_Curve = new PrefabGUID(651312210); public static readonly PrefabGUID MirrorsBuildMenuGroup = new PrefabGUID(466535423); public static readonly PrefabGUID MiscBuildMenuGroup = new PrefabGUID(1393476424); public static readonly PrefabGUID MiscLocalizationKeysAsset = new PrefabGUID(1162706216); public static readonly PrefabGUID MiscStablesBuildMenuGroup = new PrefabGUID(-1279591497); public static readonly PrefabGUID MooseDashCurve = new PrefabGUID(-888570674); public static readonly PrefabGUID Mount_Deacceleration_Curve = new PrefabGUID(-2085759705); public static readonly PrefabGUID MOUNT_Farmlands_Pig_Standard = new PrefabGUID(-230748344); public static readonly PrefabGUID MOUNT_Farmlands_Ram_Standard = new PrefabGUID(-402434592); public static readonly PrefabGUID MOUNT_Farmlands_Sheep_Standard = new PrefabGUID(648794005); public static readonly PrefabGUID Mount_Feed_Inventory = new PrefabGUID(-323855418); public static readonly PrefabGUID MOUNT_Hound_Standard = new PrefabGUID(-1848948829); public static readonly PrefabGUID MOUNT_WinterWolf_Standard = new PrefabGUID(-1406608822); public static readonly PrefabGUID MOUNT_Wolf_Boss_Standard = new PrefabGUID(-1612655055); public static readonly PrefabGUID MusicPlayerStationTrack_00_DefaultCastle = new PrefabGUID(1713994656); public static readonly PrefabGUID MusicPlayerStationTrack_01_FarbaneDay = new PrefabGUID(1970325094); public static readonly PrefabGUID MusicPlayerStationTrack_02_FarbaneNight = new PrefabGUID(-440279150); public static readonly PrefabGUID MusicPlayerStationTrack_03_DunleyDay = new PrefabGUID(1446110644); public static readonly PrefabGUID MusicPlayerStationTrack_04_DunleyNight = new PrefabGUID(1137068605); public static readonly PrefabGUID MusicPlayerStationTrack_05_HallowedMountainDay = new PrefabGUID(-463366992); public static readonly PrefabGUID MusicPlayerStationTrack_06_HallowedMountainNight = new PrefabGUID(1358357667); public static readonly PrefabGUID MusicPlayerStationTrack_07_GloomrotSouthDay = new PrefabGUID(1268223145); public static readonly PrefabGUID MusicPlayerStationTrack_08_GloomrotSouthNight = new PrefabGUID(-1752143846); public static readonly PrefabGUID MusicPlayerStationTrack_09_GloomrotNorthDay = new PrefabGUID(1646256917); public static readonly PrefabGUID MusicPlayerStationTrack_10_GloomrotNorthNight = new PrefabGUID(2053439039); public static readonly PrefabGUID MusicPlayerStationTrack_11_CursedForestDay = new PrefabGUID(-239355968); public static readonly PrefabGUID MusicPlayerStationTrack_12_CursedForestNight = new PrefabGUID(-910675324); public static readonly PrefabGUID MusicPlayerStationTrack_13_SilverlightHillsDay = new PrefabGUID(-328690897); public static readonly PrefabGUID MusicPlayerStationTrack_14_SilverlighHillsNight = new PrefabGUID(-1542356669); public static readonly PrefabGUID MusicPlayerStationTrack_15_RuinsOfMortiumDay = new PrefabGUID(-1295363061); public static readonly PrefabGUID MusicPlayerStationTrack_16_RuinsOfMortiumNight = new PrefabGUID(-477374689); public static readonly PrefabGUID MusicPlayerStationTrack_17_StrongbladeDay = new PrefabGUID(-555132894); public static readonly PrefabGUID MusicPlayerStationTrack_18_StrongbladeNight = new PrefabGUID(1158372792); public static readonly PrefabGUID MusicPlayerStationTrack_19_VBloodCombat = new PrefabGUID(-1612574516); public static readonly PrefabGUID MusicPlayerStationTrack_20_DraculaCombat = new PrefabGUID(1915110023); public static readonly PrefabGUID MusicPlayerStationTrack_20_PMK_Castle = new PrefabGUID(384659227); public static readonly PrefabGUID MusicPlayerStationTrack_21_PMK_Boss = new PrefabGUID(1058220499); public static readonly PrefabGUID Mutant_FleshGolem_PoolJumpFollowup = new PrefabGUID(1851805302); public static readonly PrefabGUID Mutant_FleshGolem_Spawn_PoolJump = new PrefabGUID(290549683); public static readonly PrefabGUID Mutant_RatHorror_Spawn_PoolJump = new PrefabGUID(-79158284); public static readonly PrefabGUID Mutant_Spitter_Spawn_PoolJump = new PrefabGUID(-1529092559); public static readonly PrefabGUID MutantSpawnXCurve = new PrefabGUID(-1528489850); public static readonly PrefabGUID MutantSpitterSpawnCurve = new PrefabGUID(1098186763); public static readonly PrefabGUID NetworkedSequence = new PrefabGUID(651179295); public static readonly PrefabGUID NeutralTeam = new PrefabGUID(-672413924); public static readonly PrefabGUID NightMaidenSeduceCurve = new PrefabGUID(-407130650); public static readonly PrefabGUID Noctem_DraculaGarden_Bench01_Shatter = new PrefabGUID(1459301783); public static readonly PrefabGUID Noctem_DraculaGarden_Urn04_Shatter = new PrefabGUID(1314021119); public static readonly PrefabGUID Noctem_StoneUrn01_Shattered = new PrefabGUID(2102871228); public static readonly PrefabGUID NonAccurateSineCurveFromMiddle = new PrefabGUID(-796341555); public static readonly PrefabGUID NonAccurateSineCurveFromMiddleR = new PrefabGUID(1643180300); public static readonly PrefabGUID NoSound_ImpactMapping = new PrefabGUID(-1446028422); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__BlackWolf_ = new PrefabGUID(-17298757); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__Werewolf_ = new PrefabGUID(-94593903); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__WinterWolf_ = new PrefabGUID(2078433324); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__Wolf_ = new PrefabGUID(-507617701); public static readonly PrefabGUID NPC_Cultist_Skin_Color_Collection__Guy_ = new PrefabGUID(1582094247); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__BigGuy_ = new PrefabGUID(-1312301922); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__Blackfang_ = new PrefabGUID(-1768882980); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__Deadeye_ = new PrefabGUID(956398077); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__LittleGuy_ = new PrefabGUID(1316570996); public static readonly PrefabGUID NPCArchmage_Ragdoll100_Prefab = new PrefabGUID(1623309226); public static readonly PrefabGUID NPCArchmage_Ragdoll110_Prefab = new PrefabGUID(1141474507); public static readonly PrefabGUID NPCBigGuy_Ragdoll100_Prefab = new PrefabGUID(-2016249566); public static readonly PrefabGUID NPCBigGuy_Ragdoll115_CARVERBOSS_PLACEHOLDER_Prefab = new PrefabGUID(-1651972765); public static readonly PrefabGUID NPCBigGuy_Ragdoll115_Shield_Prefab = new PrefabGUID(-2094271300); public static readonly PrefabGUID NPCBigGuy_Ragdoll122_Prefab = new PrefabGUID(629504465); public static readonly PrefabGUID NPCBigGuy_Ragdoll125_Prefab = new PrefabGUID(-2068275797); public static readonly PrefabGUID NPCBigGuy_Ragdoll125_Shield_Prefab = new PrefabGUID(-1620976054); public static readonly PrefabGUID NPCBigGuy_Ragdoll145_Shield_Prefab = new PrefabGUID(-2075519339); public static readonly PrefabGUID NPCCultist_Ragdoll100_Prefab = new PrefabGUID(1209428227); public static readonly PrefabGUID NPCCultist_Ragdoll130_Prefab = new PrefabGUID(1467043483); public static readonly PrefabGUID NPCDeadeye_Bow_Ragdoll100_Prefab = new PrefabGUID(1904001419); public static readonly PrefabGUID NPCDeadeye_Bow_Ragdoll150_Prefab = new PrefabGUID(2107671772); public static readonly PrefabGUID NPCDeadeye_Ragdoll100_Prefab = new PrefabGUID(1642358057); public static readonly PrefabGUID NPCDeadeye_Ragdoll105_Prefab = new PrefabGUID(587113334); public static readonly PrefabGUID NPCDeadeye_Ragdoll110_Prefab = new PrefabGUID(1117944654); public static readonly PrefabGUID NPCDeadeye_Ragdoll125_Prefab = new PrefabGUID(1085455878); public static readonly PrefabGUID NPCDeadeye_Ragdoll140_Prefab = new PrefabGUID(-1795341545); public static readonly PrefabGUID NPCDeadeye_Ragdoll150_Prefab = new PrefabGUID(1117365645); public static readonly PrefabGUID NPCDeadeye_Railgunner_Ragdoll110_Prefab = new PrefabGUID(1182211632); public static readonly PrefabGUID NPCDeadeye_Railgunner_Ragdoll145_Prefab = new PrefabGUID(755098941); public static readonly PrefabGUID NPCDeadeye_RootDress_Ragdoll100_Prefab = new PrefabGUID(1545499994); public static readonly PrefabGUID NPCGunner_Ragdoll100_Prefab = new PrefabGUID(1226227843); public static readonly PrefabGUID NPCGuy_Ragdoll100_Prefab = new PrefabGUID(-827831460); public static readonly PrefabGUID NPCGuy_Ragdoll105_Prefab = new PrefabGUID(-57400309); public static readonly PrefabGUID NPCKnight_Ragdoll100_Prefab = new PrefabGUID(-1438299479); public static readonly PrefabGUID NPCLittleGuy_Ragdoll100_Prefab = new PrefabGUID(987392987); public static readonly PrefabGUID NPCLittleGuy_RagdollBandit115_Prefab = new PrefabGUID(-2036033925); public static readonly PrefabGUID NPCLittleGuy_RagdollBandit130_Prefab = new PrefabGUID(184271208); public static readonly PrefabGUID NPCLittleGuy_RagdollFarmer100_Prefab = new PrefabGUID(429093897); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeleton115_Prefab = new PrefabGUID(-200219672); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeleton160_Prefab = new PrefabGUID(-684085785); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeleton200_Prefab = new PrefabGUID(-995496346); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeletonBroken115_Prefab = new PrefabGUID(-1185502390); public static readonly PrefabGUID NPCLittleGuy_RagdollSlave13_Prefab = new PrefabGUID(1044582719); public static readonly PrefabGUID NPCMilitiaLeader_Ragdoll100_Prefab = new PrefabGUID(1403646286); public static readonly PrefabGUID NPCMilitiaLeader_Ragdoll135_Prefab = new PrefabGUID(-529139821); public static readonly PrefabGUID NPCMilitiaLeader_UndeadLeader_Ragdoll160_Prefab = new PrefabGUID(-1870535539); public static readonly PrefabGUID NPCNecromancer_Ragdoll100_Prefab = new PrefabGUID(1997393014); public static readonly PrefabGUID NPCNecromancer_Ragdoll120_Prefab = new PrefabGUID(641571884); public static readonly PrefabGUID NPCPaladin_Ragdoll120_Prefab = new PrefabGUID(1436718613); public static readonly PrefabGUID NPCPaladin_Ragdoll180_Prefab = new PrefabGUID(-576334131); public static readonly PrefabGUID NPCTailor_Ragdoll100_Prefab = new PrefabGUID(984183203); public static readonly PrefabGUID NPCTallGuy_Ragdoll100_Prefab = new PrefabGUID(-2049121618); public static readonly PrefabGUID NPCTallGuy_Ragdoll100_Prefab_Sentinel = new PrefabGUID(-1413470678); public static readonly PrefabGUID NPCTallGuy_Ragdoll110_Prefab = new PrefabGUID(-664477091); public static readonly PrefabGUID NPCTallGuy_Ragdoll120_Prefab = new PrefabGUID(410073997); public static readonly PrefabGUID NPCTrooper_Flamethrower_Ragdoll110_Prefab = new PrefabGUID(-1804304436); public static readonly PrefabGUID NPCVampireFemale_Ragdoll100_Prefab = new PrefabGUID(-1573458306); public static readonly PrefabGUID NPCVampireHunter_Ragdoll100_Prefab = new PrefabGUID(-819471245); public static readonly PrefabGUID NPCVampireMale_Ragdoll100_Prefab = new PrefabGUID(930783815); public static readonly PrefabGUID OLD_VM_Player_Female_DONT_USE = new PrefabGUID(330992182); public static readonly PrefabGUID OLD_VM_Player_Male_DONT_USE = new PrefabGUID(-1308441114); public static readonly PrefabGUID OncePatrolDespawnBuff = new PrefabGUID(758863294); public static readonly PrefabGUID One = new PrefabGUID(-1274342143); public static readonly PrefabGUID Oscillating_Medium_Curve = new PrefabGUID(-1659374781); public static readonly PrefabGUID OutdoorStandingLightsBuildMenuGroup01 = new PrefabGUID(467492703); public static readonly PrefabGUID PaintingHorizontalBuildingMenuGroup = new PrefabGUID(-2139932892); public static readonly PrefabGUID PaintingOvalBuildingMenuGroup = new PrefabGUID(-1999286106); public static readonly PrefabGUID PaintingProjectKBuildMenuGroup = new PrefabGUID(-2003430006); public static readonly PrefabGUID PaintingSquareBuildingMenuGroup = new PrefabGUID(1840780971); public static readonly PrefabGUID PaintingStrongbladeDLC01BuildMenuGroup = new PrefabGUID(1138835019); public static readonly PrefabGUID PaintingVerticalBuildingMenuGroup = new PrefabGUID(-1260632034); public static readonly PrefabGUID PalisadesBuildMenuGroup = new PrefabGUID(889560609); public static readonly PrefabGUID PickingSettings = new PrefabGUID(1601806240); public static readonly PrefabGUID Pillar_Banners_BuildingMenuGroup = new PrefabGUID(732156278); public static readonly PrefabGUID Pillar_Bells_BuildingMenuGroup = new PrefabGUID(-1156462855); public static readonly PrefabGUID Pillar_DyeSwatch = new PrefabGUID(631243042); public static readonly PrefabGUID Pillar_DyeSwatchCollection = new PrefabGUID(-2048656392); public static readonly PrefabGUID Pillar_MiscOrnaments_BuildingMenuGroup = new PrefabGUID(-1685489020); public static readonly PrefabGUID Pillar_StoneOrnaments_BuildingMenuGroup = new PrefabGUID(-937998270); public static readonly PrefabGUID Pillar_StoneOrnaments_DLC01 = new PrefabGUID(-54154647); public static readonly PrefabGUID Plant_Forest01_Hedge01_Broken = new PrefabGUID(1909560955); public static readonly PrefabGUID Plant_Forest01_Hedge02_Broken = new PrefabGUID(-837456415); public static readonly PrefabGUID Plant_Forest01_HedgeCursed01_Broken = new PrefabGUID(-2106526909); public static readonly PrefabGUID Plant_Forest01_HedgeCursed02_Broken = new PrefabGUID(-51720040); public static readonly PrefabGUID Plant_WildRose01_Broken = new PrefabGUID(-352033015); public static readonly PrefabGUID PlantersExteriorBuildMenuGroup = new PrefabGUID(692816263); public static readonly PrefabGUID PlantersLargeBuildMenuGroup = new PrefabGUID(-901789829); public static readonly PrefabGUID PlantersLargeMegaBuildMenuGroup = new PrefabGUID(956790336); public static readonly PrefabGUID PlantersMediumBuildMenuGroup = new PrefabGUID(1621687723); public static readonly PrefabGUID PlantersSmallBuildMenuGroup = new PrefabGUID(1332563830); public static readonly PrefabGUID PlayerTeam = new PrefabGUID(1128897469); public static readonly PrefabGUID Poloma_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1513896601); public static readonly PrefabGUID Portal_Travel_Curve = new PrefabGUID(1499775392); public static readonly PrefabGUID Potatisbear_Ragdoll_Prefab = new PrefabGUID(1061125928); public static readonly PrefabGUID Potatispress_Ragdoll_prefab = new PrefabGUID(1777564790); public static readonly PrefabGUID Potatistree_RagdollPrefab = new PrefabGUID(-863747292); public static readonly PrefabGUID PrefabVariant_02_Prefab_Tree_01 = new PrefabGUID(384228836); public static readonly PrefabGUID PrefabVariant_02_Prefab_Tree_01_Dead = new PrefabGUID(-360850683); public static readonly PrefabGUID PrefabVariant_02_Prefab_TreeStump_01 = new PrefabGUID(1606558287); public static readonly PrefabGUID PrefabVariant_02_Prefab_TreeStump_01_SpiderWeb = new PrefabGUID(55230957); public static readonly PrefabGUID Prison01WallpaperBuildMenuGroup = new PrefabGUID(809387161); public static readonly PrefabGUID PrisonCellBuildMenuGroup = new PrefabGUID(-1703793729); public static readonly PrefabGUID PrisonerBloodQualityChangeFailBuff = new PrefabGUID(-638893418); public static readonly PrefabGUID PrisonerBloodQualityChangeSuccessBuff = new PrefabGUID(-167264377); public static readonly PrefabGUID PrisonFloorBuildMenuGroup = new PrefabGUID(353289575); public static readonly PrefabGUID ProfessorCoilBeam = new PrefabGUID(-1735851173); public static readonly PrefabGUID Progression_ArenaZonePlaced = new PrefabGUID(1844153864); public static readonly PrefabGUID ProgressionCollection = new PrefabGUID(259325625); public static readonly PrefabGUID ProgTestUnitActiveTimer = new PrefabGUID(-1518470375); public static readonly PrefabGUID Projectile = new PrefabGUID(1496743989); public static readonly PrefabGUID Projectile_Dual_Axes_Curve_X = new PrefabGUID(-1515066134); public static readonly PrefabGUID Projectile_Dual_Axes_Curve_Z = new PrefabGUID(1080306806); public static readonly PrefabGUID Projectile_OffsetAnimation_Curve = new PrefabGUID(1511317880); public static readonly PrefabGUID Projectile_Spear_Area_Curve = new PrefabGUID(2007100673); public static readonly PrefabGUID ProjectileBig = new PrefabGUID(1136068294); public static readonly PrefabGUID ProjectK01WindowsBuildMenuGroup = new PrefabGUID(1542881800); public static readonly PrefabGUID ProjectKDLC_StatuesBuildMenuGroup = new PrefabGUID(-1189411033); public static readonly PrefabGUID PurpleCarpetsBuildMenuGroup01 = new PrefabGUID(1144832236); public static readonly PrefabGUID PurpleCarpetsBuildMenuGroup02 = new PrefabGUID(1801004559); public static readonly PrefabGUID PurpleWindowsBuildMenuGroup = new PrefabGUID(667624227); public static readonly PrefabGUID PVP_CombatPreset_DefensiveSpellBuild = new PrefabGUID(669405535); public static readonly PrefabGUID PVP_CombatPreset_Endgame_Shmack = new PrefabGUID(1456936385); public static readonly PrefabGUID PVP_CombatPreset_Jewels_BiS = new PrefabGUID(135159818); public static readonly PrefabGUID PVP_CombatPreset_MinionBuild = new PrefabGUID(1366436603); public static readonly PrefabGUID PVP_CombatPreset_MovementBuild = new PrefabGUID(1571466947); public static readonly PrefabGUID PVP_CombatPreset_OffensiveSpellBuild = new PrefabGUID(-286350389); public static readonly PrefabGUID PVP_CombatPreset_ReleaseVersion_Endgame_BiS = new PrefabGUID(1369626232); public static readonly PrefabGUID PVP_CombatPreset_ReleaseVersion_Endgame_Shmack = new PrefabGUID(1862213784); public static readonly PrefabGUID PVP_CombatPreset_TankBuild = new PrefabGUID(2005383940); public static readonly PrefabGUID PVP_CombatPreset_WeaponBuild = new PrefabGUID(1139168502); public static readonly PrefabGUID RagdollSource_Melee = new PrefabGUID(1455784769); public static readonly PrefabGUID RagdollSource_Melee_Left = new PrefabGUID(1314975289); public static readonly PrefabGUID RagdollSource_Melee_Right = new PrefabGUID(1557785308); public static readonly PrefabGUID RagdollSource_Projectile = new PrefabGUID(-856857226); public static readonly PrefabGUID RagdollSource_Throw = new PrefabGUID(-1450115575); public static readonly PrefabGUID RagdollSource_ThrowInverted = new PrefabGUID(-1823134394); public static readonly PrefabGUID RandChain_Mechs_Type_A = new PrefabGUID(243807247); public static readonly PrefabGUID RandChain_Minerals_Type_A = new PrefabGUID(-482240288); public static readonly PrefabGUID RandChain_Minerals_Type_B = new PrefabGUID(1050329621); public static readonly PrefabGUID RandChain_Minerals_Type_C = new PrefabGUID(-372158513); public static readonly PrefabGUID RandChain_Minerals_Type_D = new PrefabGUID(-991500671); public static readonly PrefabGUID RandChain_Vegetation_Type_A = new PrefabGUID(686942566); public static readonly PrefabGUID RandChain_Vegetation_Type_B = new PrefabGUID(505948868); public static readonly PrefabGUID RandChain_Vegetation_Type_C = new PrefabGUID(710258077); public static readonly PrefabGUID RandomChain_Mechs_GloomRot_A = new PrefabGUID(922758622); public static readonly PrefabGUID RandomChain_Minerals = new PrefabGUID(616084525); public static readonly PrefabGUID RandomChain_Minerals_Cursed_General_A = new PrefabGUID(1215596531); public static readonly PrefabGUID RandomChain_Minerals_Cursed_GhostCrystal_B = new PrefabGUID(681634201); public static readonly PrefabGUID RandomChain_Minerals_Cursed_GhostVillage_B = new PrefabGUID(150196735); public static readonly PrefabGUID RandomChain_Minerals_Cursed_SpiderMine_B = new PrefabGUID(253064513); public static readonly PrefabGUID RandomChain_Minerals_DraculasDemise_B = new PrefabGUID(-1224342390); public static readonly PrefabGUID RandomChain_Minerals_Dunley_Churches_B = new PrefabGUID(1968084314); public static readonly PrefabGUID RandomChain_Minerals_Dunley_GemVeins_B = new PrefabGUID(-109414955); public static readonly PrefabGUID RandomChain_Minerals_Dunley_General_A = new PrefabGUID(-1686960061); public static readonly PrefabGUID RandomChain_Minerals_Dunley_General_C = new PrefabGUID(1883681676); public static readonly PrefabGUID RandomChain_Minerals_Dunley_IronMines_B = new PrefabGUID(69122226); public static readonly PrefabGUID RandomChain_Minerals_Dunley_QuartzQuarry_B = new PrefabGUID(-329543730); public static readonly PrefabGUID RandomChain_Minerals_Farbane_Copper_Guaranteed = new PrefabGUID(-1246980714); public static readonly PrefabGUID RandomChain_Minerals_Farbane_CopperQuarry_A = new PrefabGUID(-1508721555); public static readonly PrefabGUID RandomChain_Minerals_Farbane_Rock_A = new PrefabGUID(1699187683); public static readonly PrefabGUID RandomChain_Minerals_Farbane_SulfurMine_B = new PrefabGUID(1976530969); public static readonly PrefabGUID RandomChain_Minerals_Gloomrot_CopperMine_A = new PrefabGUID(332030847); public static readonly PrefabGUID RandomChain_Minerals_Gloomrot_North_General_A = new PrefabGUID(-936853849); public static readonly PrefabGUID RandomChain_Minerals_Gloomrot_South_General_A = new PrefabGUID(1581927905); public static readonly PrefabGUID RandomChain_Minerals_Noctem_General_A = new PrefabGUID(-1626851098); public static readonly PrefabGUID RandomChain_Minerals_SilverHills_GemVeins_B = new PrefabGUID(949609432); public static readonly PrefabGUID RandomChain_Minerals_SilverHills_General_A = new PrefabGUID(2044699992); public static readonly PrefabGUID RandomChain_Minerals_SilverHills_SilverMine_B = new PrefabGUID(-103943640); public static readonly PrefabGUID RandomChain_Minerals_StrongBlade_Emery_Guaranteed = new PrefabGUID(-1555903001); public static readonly PrefabGUID RandomChain_Minerals_StrongBlade_EmeryQuarry = new PrefabGUID(-13829184); public static readonly PrefabGUID RandomChain_Minerals_StrongBlade_General_A = new PrefabGUID(-730092869); public static readonly PrefabGUID RandomChain_Minerals_Type_A = new PrefabGUID(-2035732127); public static readonly PrefabGUID RandomChain_Minerals_Type_B = new PrefabGUID(668613367); public static readonly PrefabGUID RandomChain_Minerals_Type_C = new PrefabGUID(-488010311); public static readonly PrefabGUID RandomChain_Minerals_Type_D = new PrefabGUID(-574301209); public static readonly PrefabGUID RandomChain_Vegetation_Cursed_General_A = new PrefabGUID(1989776056); public static readonly PrefabGUID RandomChain_Vegetation_Cursed_Shrooms_B = new PrefabGUID(20818034); public static readonly PrefabGUID RandomChain_Vegetation_Cursed_Wisps_C = new PrefabGUID(-2144099588); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_Cave_B = new PrefabGUID(-1117329931); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_Cemetery_B = new PrefabGUID(1975962479); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_General_A = new PrefabGUID(-1743359472); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_WaterStream_B = new PrefabGUID(1956785886); public static readonly PrefabGUID RandomChain_Vegetation_Elris_General_A = new PrefabGUID(1628564254); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Builder_B = new PrefabGUID(-184524172); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Cave_B = new PrefabGUID(1604507828); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Cemetery_B = new PrefabGUID(-1465440716); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Meadow_C = new PrefabGUID(2078250001); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_SulfurQuarry_B = new PrefabGUID(-1393878847); public static readonly PrefabGUID RandomChain_Vegetation_GloomNorth_General_A = new PrefabGUID(-1685461799); public static readonly PrefabGUID RandomChain_Vegetation_GloomSouth_General_A = new PrefabGUID(366723259); public static readonly PrefabGUID RandomChain_Vegetation_Noctem_General_A = new PrefabGUID(1821124652); public static readonly PrefabGUID RandomChain_Vegetation_SilverHills_General_A = new PrefabGUID(411261009); public static readonly PrefabGUID RandomChain_Vegetation_SilverHills_Grapes_C = new PrefabGUID(1310361680); public static readonly PrefabGUID RandomChain_Vegetation_SilverHills_Harpy_B = new PrefabGUID(-157729892); public static readonly PrefabGUID RandomChain_Vegetation_StrongBlade_General_A = new PrefabGUID(1555906197); public static readonly PrefabGUID RandomChain_Vegetation_StrongBlade_Mushroom_B = new PrefabGUID(-2053899965); public static readonly PrefabGUID RandomChain_Vegetation_Type_A = new PrefabGUID(-1770724568); public static readonly PrefabGUID RandomChain_Vegetation_Type_B = new PrefabGUID(-1011544551); public static readonly PrefabGUID RandomChain_Vegetation_Type_C = new PrefabGUID(193881496); public static readonly PrefabGUID RareUnitActiveTimer = new PrefabGUID(-1552014489); public static readonly PrefabGUID Recipe_Armor_Boots_T01_Bone = new PrefabGUID(-61202530); public static readonly PrefabGUID Recipe_Armor_Boots_T02_Bone_Reinforced = new PrefabGUID(785023263); public static readonly PrefabGUID Recipe_Armor_Boots_T03_Cloth = new PrefabGUID(1159379254); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Brute = new PrefabGUID(-211066785); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Rogue = new PrefabGUID(30410046); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Scholar = new PrefabGUID(1241016364); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Warrior = new PrefabGUID(-1573355501); public static readonly PrefabGUID Recipe_Armor_Boots_T05_Cotton = new PrefabGUID(1859811298); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Brute = new PrefabGUID(564937663); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Rogue = new PrefabGUID(-501436877); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Scholar = new PrefabGUID(-1790839980); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Warrior = new PrefabGUID(1598255582); public static readonly PrefabGUID Recipe_Armor_Boots_T07_Silk = new PrefabGUID(-18516146); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Brute = new PrefabGUID(481223129); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Rogue = new PrefabGUID(1020324654); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Scholar = new PrefabGUID(26969974); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Warrior = new PrefabGUID(-1671420432); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula = new PrefabGUID(-1626042682); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Brute = new PrefabGUID(240689181); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Rogue = new PrefabGUID(-850978565); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Scholar = new PrefabGUID(-2040897849); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Warrior = new PrefabGUID(-1023773403); public static readonly PrefabGUID Recipe_Armor_Boots_T0X_BlackfangSultan = new PrefabGUID(-1358062441); public static readonly PrefabGUID Recipe_Armor_Boots_T0X_PMK = new PrefabGUID(-2073504211); public static readonly PrefabGUID Recipe_Armor_Boots_T0X_PMK_03 = new PrefabGUID(-1595671236); public static readonly PrefabGUID Recipe_Armor_Chest_T01_Bone = new PrefabGUID(1961555084); public static readonly PrefabGUID Recipe_Armor_Chest_T02_Bone_Reinforced = new PrefabGUID(1236392443); public static readonly PrefabGUID Recipe_Armor_Chest_T03_Cloth = new PrefabGUID(1384522986); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Brute = new PrefabGUID(-42975513); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Rogue = new PrefabGUID(-235084625); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Scholar = new PrefabGUID(1490955797); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Warrior = new PrefabGUID(-850288860); public static readonly PrefabGUID Recipe_Armor_Chest_T05_Cotton = new PrefabGUID(724016990); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Brute = new PrefabGUID(1640689004); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Rogue = new PrefabGUID(-921085381); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Scholar = new PrefabGUID(969479018); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Warrior = new PrefabGUID(917114760); public static readonly PrefabGUID Recipe_Armor_Chest_T07_Silk = new PrefabGUID(590293987); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Brute = new PrefabGUID(909405972); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Rogue = new PrefabGUID(2080647005); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Scholar = new PrefabGUID(-246992105); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Warrior = new PrefabGUID(636393327); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula = new PrefabGUID(-530701068); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Brute = new PrefabGUID(1130263669); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Rogue = new PrefabGUID(-640317541); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Scholar = new PrefabGUID(-1905495055); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Warrior = new PrefabGUID(-510627751); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_BlackfangSultan = new PrefabGUID(2082549756); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_Cosmetic_Dress01 = new PrefabGUID(-790370630); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_Cosmetic_Suit01 = new PrefabGUID(115376160); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_PMK = new PrefabGUID(-434051712); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_PMK_02 = new PrefabGUID(639186567); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_PMK_03 = new PrefabGUID(1712328309); public static readonly PrefabGUID Recipe_Armor_Gloves_T01_Bone = new PrefabGUID(1301724296); public static readonly PrefabGUID Recipe_Armor_Gloves_T02_Bone_Reinforced = new PrefabGUID(-2140040968); public static readonly PrefabGUID Recipe_Armor_Gloves_T03_Cloth = new PrefabGUID(-1213072175); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Brute = new PrefabGUID(928177888); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Rogue = new PrefabGUID(-1109520881); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Scholar = new PrefabGUID(1404998399); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Warrior = new PrefabGUID(872441116); public static readonly PrefabGUID Recipe_Armor_Gloves_T05_Cotton = new PrefabGUID(1314134803); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Brute = new PrefabGUID(55560401); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Rogue = new PrefabGUID(550971753); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Scholar = new PrefabGUID(2029351741); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Warrior = new PrefabGUID(1321683558); public static readonly PrefabGUID Recipe_Armor_Gloves_T07_Silk = new PrefabGUID(-1221068660); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Brute = new PrefabGUID(-693799437); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Rogue = new PrefabGUID(894482163); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Scholar = new PrefabGUID(-494730465); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Warrior = new PrefabGUID(1193907705); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula = new PrefabGUID(735928485); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Brute = new PrefabGUID(-1622946659); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Rogue = new PrefabGUID(-338932204); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Scholar = new PrefabGUID(-1548502696); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Warrior = new PrefabGUID(1103938523); public static readonly PrefabGUID Recipe_Armor_Gloves_T0X_BlackfangSultan = new PrefabGUID(-2121295872); public static readonly PrefabGUID Recipe_Armor_Gloves_T0X_PMK = new PrefabGUID(1318164039); public static readonly PrefabGUID Recipe_Armor_Legs_T01_Bone = new PrefabGUID(-1690725169); public static readonly PrefabGUID Recipe_Armor_Legs_T02_Bone_Reinforced = new PrefabGUID(-270797694); public static readonly PrefabGUID Recipe_Armor_Legs_T03_Cloth = new PrefabGUID(951656438); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Brute = new PrefabGUID(-1149764556); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Rogue = new PrefabGUID(-1585906930); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Scholar = new PrefabGUID(1891096609); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Warrior = new PrefabGUID(-1228356397); public static readonly PrefabGUID Recipe_Armor_Legs_T05_Cotton = new PrefabGUID(321376258); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Brute = new PrefabGUID(1446070886); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Rogue = new PrefabGUID(1989724461); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Scholar = new PrefabGUID(1934342576); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Warrior = new PrefabGUID(1489561003); public static readonly PrefabGUID Recipe_Armor_Legs_T07_Silk = new PrefabGUID(-1310297862); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Brute = new PrefabGUID(392270656); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Rogue = new PrefabGUID(24363319); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Scholar = new PrefabGUID(1352971933); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Warrior = new PrefabGUID(1912958943); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula = new PrefabGUID(67380899); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Brute = new PrefabGUID(39790654); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Rogue = new PrefabGUID(1779568881); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Scholar = new PrefabGUID(-195466783); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Warrior = new PrefabGUID(-1621263742); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_BlackfangSultan = new PrefabGUID(83251839); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_Cosmetic_Suit01 = new PrefabGUID(-1197884715); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_PMK = new PrefabGUID(587362253); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_PMK_02 = new PrefabGUID(-2087888734); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_PMK_03 = new PrefabGUID(706994576); public static readonly PrefabGUID Recipe_Bag_New_T02 = new PrefabGUID(-316487143); public static readonly PrefabGUID Recipe_Bag_New_T03 = new PrefabGUID(-1025651560); public static readonly PrefabGUID Recipe_Bag_New_T04 = new PrefabGUID(898844948); public static readonly PrefabGUID Recipe_Bag_New_T05 = new PrefabGUID(-828703620); public static readonly PrefabGUID Recipe_Bag_New_T06 = new PrefabGUID(219921994); public static readonly PrefabGUID Recipe_BloodEssence_PristineHeart = new PrefabGUID(937701215); public static readonly PrefabGUID Recipe_BloodEssence_Rat = new PrefabGUID(-112456787); public static readonly PrefabGUID Recipe_BloodEssence_TaintedHeart = new PrefabGUID(-1619521520); public static readonly PrefabGUID Recipe_BloodEssence_UnsulliedHeart = new PrefabGUID(-626789771); public static readonly PrefabGUID Recipe_BloodEssence_Upgrade_T02 = new PrefabGUID(335190592); public static readonly PrefabGUID Recipe_BloodEssence_Upgrade_T03 = new PrefabGUID(-2050480946); public static readonly PrefabGUID Recipe_CastleUpkeep_T01 = new PrefabGUID(155119506); public static readonly PrefabGUID Recipe_CastleUpkeep_T02 = new PrefabGUID(-1281672171); public static readonly PrefabGUID Recipe_Cloak_Main_T01 = new PrefabGUID(-1602222491); public static readonly PrefabGUID Recipe_Cloak_Main_T02 = new PrefabGUID(1004984938); public static readonly PrefabGUID Recipe_Cloak_Main_T03 = new PrefabGUID(544114772); public static readonly PrefabGUID Recipe_Cloak_ShroudOfTheForest = new PrefabGUID(-1118059274); public static readonly PrefabGUID Recipe_Cloak_T01_DraculasCloak = new PrefabGUID(-71891063); public static readonly PrefabGUID Recipe_Cloak_T01_GloomrotCloak = new PrefabGUID(1882617197); public static readonly PrefabGUID Recipe_Cloak_T01_RazerCloak = new PrefabGUID(-778599774); public static readonly PrefabGUID Recipe_Cloak_T02_DraculasCloak = new PrefabGUID(1801950047); public static readonly PrefabGUID Recipe_Cloak_T02_GloomrotCloak = new PrefabGUID(950343746); public static readonly PrefabGUID Recipe_Cloak_T02_RazerCloak = new PrefabGUID(-2120661831); public static readonly PrefabGUID Recipe_Cloak_T03_DraculasCloak = new PrefabGUID(489696550); public static readonly PrefabGUID Recipe_Cloak_T03_GloomrotCloak = new PrefabGUID(1581753666); public static readonly PrefabGUID Recipe_Cloak_T03_RazerCloak = new PrefabGUID(-1620745454); public static readonly PrefabGUID Recipe_Cloak_T0X_PMK = new PrefabGUID(-682982599); public static readonly PrefabGUID Recipe_Consumable_BarrelDisguise01 = new PrefabGUID(-108869773); public static readonly PrefabGUID Recipe_Consumable_DuskCaller = new PrefabGUID(232213040); public static readonly PrefabGUID Recipe_Consumable_EMP_T01 = new PrefabGUID(164757222); public static readonly PrefabGUID Recipe_Consumable_EmptyBottle_T02_Crafting = new PrefabGUID(-97893307); public static readonly PrefabGUID Recipe_Consumable_EmptyBottle_T02_Refinement = new PrefabGUID(461575192); public static readonly PrefabGUID Recipe_Consumable_Explosives_Major_T02 = new PrefabGUID(-1848951671); public static readonly PrefabGUID Recipe_Consumable_Explosives_Major_T03_Trader = new PrefabGUID(-752799345); public static readonly PrefabGUID Recipe_Consumable_Explosives_Minor_T01 = new PrefabGUID(-854411210); public static readonly PrefabGUID Recipe_Consumable_Explosives_Minor_T01_Trader = new PrefabGUID(-149394540); public static readonly PrefabGUID Recipe_Consumable_FireResistancePotion_T01 = new PrefabGUID(-1265439368); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T01 = new PrefabGUID(1602635578); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T01_Trader = new PrefabGUID(-767965323); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T02 = new PrefabGUID(600697104); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T02_Trader = new PrefabGUID(177026075); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T01 = new PrefabGUID(223228069); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T01_Trader = new PrefabGUID(1446468348); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T02 = new PrefabGUID(-1715555190); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T02_Trader = new PrefabGUID(-1089714492); public static readonly PrefabGUID Recipe_Consumable_HolyResistancePotion_T01 = new PrefabGUID(2121527776); public static readonly PrefabGUID Recipe_Consumable_HolyResistancePotion_T01_Trader = new PrefabGUID(573978764); public static readonly PrefabGUID Recipe_Consumable_HolyResistancePotion_T02 = new PrefabGUID(-1672850870); public static readonly PrefabGUID Recipe_Consumable_IrradiantGruel = new PrefabGUID(-1031042460); public static readonly PrefabGUID Recipe_Consumable_PhysicalPowerPotion_T01 = new PrefabGUID(2007269714); public static readonly PrefabGUID Recipe_Consumable_PhysicalPowerPotion_T01_Trader = new PrefabGUID(-1373956725); public static readonly PrefabGUID Recipe_Consumable_PhysicalPowerPotion_T02 = new PrefabGUID(-1336809713); public static readonly PrefabGUID Recipe_Consumable_PrisonPotion = new PrefabGUID(1839006118); public static readonly PrefabGUID Recipe_Consumable_PrisonPotion_Bloodwine = new PrefabGUID(1930190516); public static readonly PrefabGUID Recipe_Consumable_Rat = new PrefabGUID(-1521588244); public static readonly PrefabGUID Recipe_Consumable_Salve_Vermin = new PrefabGUID(2119570180); public static readonly PrefabGUID Recipe_Consumable_Siege_StoneGolem_T02 = new PrefabGUID(-2012301598); public static readonly PrefabGUID Recipe_Consumable_SilverResistancePotion_T01 = new PrefabGUID(-1391967609); public static readonly PrefabGUID Recipe_Consumable_SilverResistancePotion_T02 = new PrefabGUID(-878651797); public static readonly PrefabGUID Recipe_Consumable_SpellPowerPotion_T01 = new PrefabGUID(1292082146); public static readonly PrefabGUID Recipe_Consumable_SpellPowerPotion_T02 = new PrefabGUID(-739203329); public static readonly PrefabGUID Recipe_Consumable_SunResistancePotion_T01 = new PrefabGUID(-339125757); public static readonly PrefabGUID Recipe_Consumable_Waterskin_Leather_Crafting = new PrefabGUID(-1609862569); public static readonly PrefabGUID Recipe_Consumable_Waterskin_Leather_Refinement = new PrefabGUID(37553703); public static readonly PrefabGUID Recipe_Consumable_Waterskin_ThickLeather_Crafting = new PrefabGUID(-457097974); public static readonly PrefabGUID Recipe_Consumable_Waterskin_ThickLeather_Refinement = new PrefabGUID(882503740); public static readonly PrefabGUID Recipe_Consumable_WranglerPotion_T01 = new PrefabGUID(-1728254159); public static readonly PrefabGUID Recipe_DuelFlag = new PrefabGUID(-728009045); public static readonly PrefabGUID Recipe_Elixir_Bat_T01 = new PrefabGUID(-1617853548); public static readonly PrefabGUID Recipe_Elixir_Beast_T01 = new PrefabGUID(-663811339); public static readonly PrefabGUID Recipe_Elixir_Blasphemous_T01 = new PrefabGUID(654360877); public static readonly PrefabGUID Recipe_Elixir_Crow_T01 = new PrefabGUID(155374920); public static readonly PrefabGUID Recipe_Elixir_Prowler_T01 = new PrefabGUID(79253993); public static readonly PrefabGUID Recipe_Elixir_Raven_T01 = new PrefabGUID(-109469679); public static readonly PrefabGUID Recipe_Elixir_Twisted_T01 = new PrefabGUID(-2138549072); public static readonly PrefabGUID Recipe_Elixir_Werewolf_T01 = new PrefabGUID(198966224); public static readonly PrefabGUID Recipe_Fake_DO_NOT_ADD_BloodTracking = new PrefabGUID(-726644851); public static readonly PrefabGUID Recipe_Fake_DO_NOT_ADD_ShardBearerTracking = new PrefabGUID(-1431813390); public static readonly PrefabGUID Recipe_FusionForge_FuseJewel = new PrefabGUID(-664369931); public static readonly PrefabGUID Recipe_FusionForge_FuseWeapon = new PrefabGUID(1716898700); public static readonly PrefabGUID Recipe_Gem_Amethyst_T01_Trader = new PrefabGUID(-1101407057); public static readonly PrefabGUID Recipe_Gem_Amethyst_T02 = new PrefabGUID(-439001894); public static readonly PrefabGUID Recipe_Gem_Amethyst_T02_Trader = new PrefabGUID(434649116); public static readonly PrefabGUID Recipe_Gem_Amethyst_T03 = new PrefabGUID(1447381920); public static readonly PrefabGUID Recipe_Gem_Amethyst_T03_Trader = new PrefabGUID(-85930173); public static readonly PrefabGUID Recipe_Gem_Emerald_T01_Trader = new PrefabGUID(777459323); public static readonly PrefabGUID Recipe_Gem_Emerald_T02 = new PrefabGUID(301294529); public static readonly PrefabGUID Recipe_Gem_Emerald_T02_Trader = new PrefabGUID(194379742); public static readonly PrefabGUID Recipe_Gem_Emerald_T03 = new PrefabGUID(349993374); public static readonly PrefabGUID Recipe_Gem_Emerald_T03_Trader = new PrefabGUID(-71067907); public static readonly PrefabGUID Recipe_Gem_MistStone_T01_Trader = new PrefabGUID(-1882174403); public static readonly PrefabGUID Recipe_Gem_MistStone_T02 = new PrefabGUID(1692364442); public static readonly PrefabGUID Recipe_Gem_MistStone_T02_Trader = new PrefabGUID(1550840254); public static readonly PrefabGUID Recipe_Gem_MistStone_T03 = new PrefabGUID(-1932461468); public static readonly PrefabGUID Recipe_Gem_MistStone_T03_Trader = new PrefabGUID(2025196283); public static readonly PrefabGUID Recipe_Gem_Ruby_T01_Trader = new PrefabGUID(2003589362); public static readonly PrefabGUID Recipe_Gem_Ruby_T02 = new PrefabGUID(1058500365); public static readonly PrefabGUID Recipe_Gem_Ruby_T02_Trader = new PrefabGUID(11460503); public static readonly PrefabGUID Recipe_Gem_Ruby_T03 = new PrefabGUID(640226225); public static readonly PrefabGUID Recipe_Gem_Ruby_T03_Trader = new PrefabGUID(-484624052); public static readonly PrefabGUID Recipe_Gem_Sapphire_T01_Trader = new PrefabGUID(1469919230); public static readonly PrefabGUID Recipe_Gem_Sapphire_T02 = new PrefabGUID(1944880503); public static readonly PrefabGUID Recipe_Gem_Sapphire_T02_Trader = new PrefabGUID(231142834); public static readonly PrefabGUID Recipe_Gem_Sapphire_T03 = new PrefabGUID(1627234060); public static readonly PrefabGUID Recipe_Gem_Sapphire_T03_Trader = new PrefabGUID(571367805); public static readonly PrefabGUID Recipe_Gem_Topaz_T01_Trader = new PrefabGUID(1741718241); public static readonly PrefabGUID Recipe_Gem_Topaz_T02 = new PrefabGUID(-1954352551); public static readonly PrefabGUID Recipe_Gem_Topaz_T02_Trader = new PrefabGUID(1903291770); public static readonly PrefabGUID Recipe_Gem_Topaz_T03 = new PrefabGUID(-755095440); public static readonly PrefabGUID Recipe_Gem_Topaz_T03_Trader = new PrefabGUID(595424808); public static readonly PrefabGUID Recipe_Headgear_AshfolkHelm_T03_Trader = new PrefabGUID(-1261638563); public static readonly PrefabGUID Recipe_Headgear_BearTrophy_T02_Trader = new PrefabGUID(-1897439354); public static readonly PrefabGUID Recipe_Headgear_DeerTrophy_T02_Trader = new PrefabGUID(-383995717); public static readonly PrefabGUID Recipe_Headgear_NecromancerHat_T01_Trader = new PrefabGUID(737997561); public static readonly PrefabGUID Recipe_Headgear_PilgrimHat_T01_Trader = new PrefabGUID(742875514); public static readonly PrefabGUID Recipe_Headgear_PopeMitre_T03_Trader = new PrefabGUID(-2011894921); public static readonly PrefabGUID Recipe_Headgear_T01_Blackfang = new PrefabGUID(704251871); public static readonly PrefabGUID Recipe_Headgear_T01_DraculasHelmet = new PrefabGUID(-32466106); public static readonly PrefabGUID Recipe_Headgear_T01_GloomrotHead = new PrefabGUID(-1119842484); public static readonly PrefabGUID Recipe_Headgear_T01_RazerHood = new PrefabGUID(1316743638); public static readonly PrefabGUID Recipe_Headgear_WolfTrophy_T02_Trader = new PrefabGUID(-2135052861); public static readonly PrefabGUID Recipe_Ingredient_BatLeather = new PrefabGUID(878778315); public static readonly PrefabGUID Recipe_Ingredient_BatteryCharged = new PrefabGUID(-40415372); public static readonly PrefabGUID Recipe_Ingredient_BatteryCharged_10x = new PrefabGUID(1499185347); public static readonly PrefabGUID Recipe_Ingredient_Canister = new PrefabGUID(-1219663401); public static readonly PrefabGUID Recipe_Ingredient_CarpetRoll = new PrefabGUID(-76978559); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T01 = new PrefabGUID(-1158613345); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T02 = new PrefabGUID(-1538704240); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T03 = new PrefabGUID(690675608); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T04 = new PrefabGUID(1627186216); public static readonly PrefabGUID Recipe_Ingredient_ClayMold = new PrefabGUID(-1039804369); public static readonly PrefabGUID Recipe_Ingredient_Cloth01 = new PrefabGUID(-535699316); public static readonly PrefabGUID Recipe_Ingredient_Cloth02 = new PrefabGUID(691688637); public static readonly PrefabGUID Recipe_Ingredient_Cloth03 = new PrefabGUID(-18607093); public static readonly PrefabGUID Recipe_Ingredient_CoarseThread = new PrefabGUID(217985609); public static readonly PrefabGUID Recipe_Ingredient_Coin_Copper = new PrefabGUID(1611921852); public static readonly PrefabGUID Recipe_Ingredient_Coin_Royal = new PrefabGUID(1679369423); public static readonly PrefabGUID Recipe_Ingredient_Coin_Silver = new PrefabGUID(1987529758); public static readonly PrefabGUID Recipe_Ingredient_CopperBar = new PrefabGUID(43160202); public static readonly PrefabGUID Recipe_Ingredient_CopperWires = new PrefabGUID(-2031309726); public static readonly PrefabGUID Recipe_Ingredient_CottonYarn = new PrefabGUID(-1463059104); public static readonly PrefabGUID Recipe_Ingredient_DarkSilverBar = new PrefabGUID(1763037087); public static readonly PrefabGUID Recipe_Ingredient_Emberglass = new PrefabGUID(1907177885); public static readonly PrefabGUID Recipe_Ingredient_Fake_Gems_T02 = new PrefabGUID(1333711523); public static readonly PrefabGUID Recipe_Ingredient_Fake_Gems_T03 = new PrefabGUID(1197952732); public static readonly PrefabGUID Recipe_Ingredient_FakeFish = new PrefabGUID(-1690732149); public static readonly PrefabGUID Recipe_Ingredient_FakeGemDust = new PrefabGUID(-1105418306); public static readonly PrefabGUID Recipe_Ingredient_FakePollen = new PrefabGUID(-2095604835); public static readonly PrefabGUID Recipe_Ingredient_Fish_T01_FatGoby_Fishoil = new PrefabGUID(1456918437); public static readonly PrefabGUID Recipe_Ingredient_Fish_T01_FierceStinger_Fishoil = new PrefabGUID(310077690); public static readonly PrefabGUID Recipe_Ingredient_Fish_T01_RainbowTrout_Fishoil = new PrefabGUID(-1998323031); public static readonly PrefabGUID Recipe_Ingredient_Fish_T02_BloodSnapper_Fishoil = new PrefabGUID(2073670444); public static readonly PrefabGUID Recipe_Ingredient_Fish_T02_SageFish_Fishoil = new PrefabGUID(2034067759); public static readonly PrefabGUID Recipe_Ingredient_Fish_T02_TwilightSnapper_Fishoil = new PrefabGUID(-1158638582); public static readonly PrefabGUID Recipe_Ingredient_Fish_T03_CorruptedFish_Sap = new PrefabGUID(2001831411); public static readonly PrefabGUID Recipe_Ingredient_Fish_T03_GoldenRiverBass_Fishoil = new PrefabGUID(-579466337); public static readonly PrefabGUID Recipe_Ingredient_Fish_T03_SwampDweller_Fishoil = new PrefabGUID(-914403055); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T01 = new PrefabGUID(794513497); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T02 = new PrefabGUID(1267772432); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T03 = new PrefabGUID(-1305847600); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T04 = new PrefabGUID(-259193408); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T01 = new PrefabGUID(-818431229); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T02 = new PrefabGUID(2145878785); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T03 = new PrefabGUID(-49650299); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T04 = new PrefabGUID(824127202); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T01 = new PrefabGUID(1511000106); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T02 = new PrefabGUID(-1803835046); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T03 = new PrefabGUID(-793702579); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T04 = new PrefabGUID(191342827); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T01 = new PrefabGUID(510709307); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T02 = new PrefabGUID(1574438607); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T03 = new PrefabGUID(494499358); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T04 = new PrefabGUID(438072551); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T01 = new PrefabGUID(224077013); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T02 = new PrefabGUID(-1411717403); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T03 = new PrefabGUID(-830475571); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T04 = new PrefabGUID(-97850613); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T01 = new PrefabGUID(-671939022); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T02 = new PrefabGUID(-900164684); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T03 = new PrefabGUID(-680521717); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T04 = new PrefabGUID(-597461125); public static readonly PrefabGUID Recipe_Ingredient_GhostYarn = new PrefabGUID(-312139320); public static readonly PrefabGUID Recipe_Ingredient_Glass = new PrefabGUID(-1035277730); public static readonly PrefabGUID Recipe_Ingredient_GoldBar = new PrefabGUID(-882942445); public static readonly PrefabGUID Recipe_Ingredient_Gravedust = new PrefabGUID(-621968576); public static readonly PrefabGUID Recipe_Ingredient_ImperialThread = new PrefabGUID(-2087869889); public static readonly PrefabGUID Recipe_Ingredient_IronBar = new PrefabGUID(182584043); public static readonly PrefabGUID Recipe_Ingredient_IronBody = new PrefabGUID(-1270503528); public static readonly PrefabGUID Recipe_Ingredient_Leather = new PrefabGUID(1299251205); public static readonly PrefabGUID Recipe_Ingredient_NetherShard_T02 = new PrefabGUID(830427227); public static readonly PrefabGUID Recipe_Ingredient_Obsidian_NetherShards = new PrefabGUID(-1046062818); public static readonly PrefabGUID Recipe_Ingredient_Obsidian_RadiumAlloy = new PrefabGUID(-755040396); public static readonly PrefabGUID Recipe_Ingredient_OnyxTear = new PrefabGUID(-1624699880); public static readonly PrefabGUID Recipe_Ingredient_PaintingFrame = new PrefabGUID(639947458); public static readonly PrefabGUID Recipe_Ingredient_Paper = new PrefabGUID(1972184798); public static readonly PrefabGUID Recipe_Ingredient_Plank = new PrefabGUID(-7510953); public static readonly PrefabGUID Recipe_Ingredient_Plank_CorruptedSap = new PrefabGUID(1938879259); public static readonly PrefabGUID Recipe_Ingredient_Plank_WoodCurse = new PrefabGUID(1933452299); public static readonly PrefabGUID Recipe_Ingredient_Plank_WoodGloom = new PrefabGUID(1004035314); public static readonly PrefabGUID Recipe_Ingredient_Plank_WoodHallow = new PrefabGUID(-1161643303); public static readonly PrefabGUID Recipe_Ingredient_Plant_BleedingHeart_Pollen = new PrefabGUID(-1406676278); public static readonly PrefabGUID Recipe_Ingredient_Plant_BloodRose_Pollen = new PrefabGUID(-1262386399); public static readonly PrefabGUID Recipe_Ingredient_Plant_CorruptedFlower_Pollen = new PrefabGUID(312087613); public static readonly PrefabGUID Recipe_Ingredient_Plant_Cotton_Pollen = new PrefabGUID(-318813623); public static readonly PrefabGUID Recipe_Ingredient_Plant_FireBlossom_Pollen = new PrefabGUID(1492043256); public static readonly PrefabGUID Recipe_Ingredient_Plant_GhostShroom_Pollen = new PrefabGUID(981205115); public static readonly PrefabGUID Recipe_Ingredient_Plant_HellsClarion_Pollen = new PrefabGUID(-807387227); public static readonly PrefabGUID Recipe_Ingredient_Plant_MourningLily_Pollen = new PrefabGUID(1987128673); public static readonly PrefabGUID Recipe_Ingredient_Plant_PlagueBrier_Pollen = new PrefabGUID(-1209065169); public static readonly PrefabGUID Recipe_Ingredient_Plant_SnowFlower_Pollen = new PrefabGUID(-1444512478); public static readonly PrefabGUID Recipe_Ingredient_Plant_SunFlower_Pollen = new PrefabGUID(-731341444); public static readonly PrefabGUID Recipe_Ingredient_PowerCore = new PrefabGUID(1399845400); public static readonly PrefabGUID Recipe_Ingredient_PristineLeather = new PrefabGUID(3903463); public static readonly PrefabGUID Recipe_Ingredient_RadiumAlloy = new PrefabGUID(1802509122); public static readonly PrefabGUID Recipe_Ingredient_ReinforcedPlank = new PrefabGUID(-1038174753); public static readonly PrefabGUID Recipe_Ingredient_Schematic = new PrefabGUID(1665157021); public static readonly PrefabGUID Recipe_Ingredient_Scourgestone = new PrefabGUID(667958797); public static readonly PrefabGUID Recipe_Ingredient_Scroll = new PrefabGUID(-1639279845); public static readonly PrefabGUID Recipe_Ingredient_SculpturedWood = new PrefabGUID(222408145); public static readonly PrefabGUID Recipe_Ingredient_ShadowWeave = new PrefabGUID(-279454572); public static readonly PrefabGUID Recipe_Ingredient_Silk = new PrefabGUID(-1803829778); public static readonly PrefabGUID Recipe_Ingredient_SilverBar = new PrefabGUID(-1633898285); public static readonly PrefabGUID Recipe_Ingredient_Spectraldust = new PrefabGUID(-329288568); public static readonly PrefabGUID Recipe_Ingredient_StoneBody = new PrefabGUID(1356454823); public static readonly PrefabGUID Recipe_Ingredient_StoneBrick = new PrefabGUID(484814347); public static readonly PrefabGUID Recipe_Ingredient_Sulfur = new PrefabGUID(-1718362434); public static readonly PrefabGUID Recipe_Ingredient_ThickLeather = new PrefabGUID(1265153742); public static readonly PrefabGUID Recipe_Ingredient_Vampiricdust = new PrefabGUID(311920560); public static readonly PrefabGUID Recipe_Ingredient_Whetstone = new PrefabGUID(-1490920585); public static readonly PrefabGUID Recipe_Ingredient_WoolThread = new PrefabGUID(-387502181); public static readonly PrefabGUID Recipe_Jewel_Blood_T01 = new PrefabGUID(-445494585); public static readonly PrefabGUID Recipe_Jewel_Blood_T02 = new PrefabGUID(279714151); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_BloodFountain = new PrefabGUID(1790399614); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_BloodRage = new PrefabGUID(-1730685483); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_BloodRite = new PrefabGUID(-1673417294); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_CarrionSwarm = new PrefabGUID(1327091316); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_SanguineCoil = new PrefabGUID(805999157); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_Shadowbolt = new PrefabGUID(2140352508); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_VampiricCurse = new PrefabGUID(-1221458026); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_VeilOfBlood = new PrefabGUID(-471735309); public static readonly PrefabGUID Recipe_Jewel_Blood_T03 = new PrefabGUID(1484442015); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_BloodFountain = new PrefabGUID(1536138304); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_BloodRage = new PrefabGUID(-117709259); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_BloodRite = new PrefabGUID(1332879261); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_CarrionSwarm = new PrefabGUID(265064568); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_SanguineCoil = new PrefabGUID(-998540356); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_Shadowbolt = new PrefabGUID(-132912845); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_VampiricCurse = new PrefabGUID(641872418); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_VeilOfBlood = new PrefabGUID(-1280075933); public static readonly PrefabGUID Recipe_Jewel_Blood_T04 = new PrefabGUID(-1589272885); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_BloodFountain = new PrefabGUID(-1647468496); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_BloodRage = new PrefabGUID(1616468375); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_BloodRite = new PrefabGUID(1349479077); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_CarrionSwarm = new PrefabGUID(1394410783); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_SanguineCoil = new PrefabGUID(-1824834918); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_Shadowbolt = new PrefabGUID(-1124531408); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_VampiricCurse = new PrefabGUID(1500294983); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_VeilOfBlood = new PrefabGUID(-389291045); public static readonly PrefabGUID Recipe_Jewel_Chaos_T01 = new PrefabGUID(-945572632); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02 = new PrefabGUID(-845714536); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_Aftershock = new PrefabGUID(-2125962345); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_ChaosBarrier = new PrefabGUID(-1441194655); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_ChaosVolley = new PrefabGUID(2130221261); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_PowerSurge = new PrefabGUID(-421166152); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_RainOfChaos = new PrefabGUID(-354986500); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_VeilOfChaos = new PrefabGUID(-712982171); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_Void = new PrefabGUID(1804676837); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03 = new PrefabGUID(-455612969); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_Aftershock = new PrefabGUID(19321091); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_ChaosBarrier = new PrefabGUID(-1390850741); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_ChaosVolley = new PrefabGUID(1013687480); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_PowerSurge = new PrefabGUID(-621123461); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_RainOfChaos = new PrefabGUID(-620902396); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_VeilOfChaos = new PrefabGUID(-871123559); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_Void = new PrefabGUID(-1993706550); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04 = new PrefabGUID(2092747590); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_Aftershock = new PrefabGUID(-1432868001); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_ChaosBarrier = new PrefabGUID(249492436); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_ChaosVolley = new PrefabGUID(-1862071851); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_PowerSurge = new PrefabGUID(-1231616717); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_RainOfChaos = new PrefabGUID(-255313331); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_VeilOfChaos = new PrefabGUID(-273088264); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_Void = new PrefabGUID(1628679944); public static readonly PrefabGUID Recipe_Jewel_Frost_T01 = new PrefabGUID(-184777350); public static readonly PrefabGUID Recipe_Jewel_Frost_T02 = new PrefabGUID(-1982816801); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_ColdSnap = new PrefabGUID(-1921009561); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_CrystalLance = new PrefabGUID(-295731844); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_FrostBarrier = new PrefabGUID(-722322275); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_FrostBat = new PrefabGUID(-739674375); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_FrostCone = new PrefabGUID(-1885123423); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_IceNova = new PrefabGUID(-1743625798); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_VeilOfFrost = new PrefabGUID(955124009); public static readonly PrefabGUID Recipe_Jewel_Frost_T03 = new PrefabGUID(106264515); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_ColdSnap = new PrefabGUID(-1863610651); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_CrystalLance = new PrefabGUID(-1334648733); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_FrostBarrier = new PrefabGUID(513866428); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_FrostBat = new PrefabGUID(1589453917); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_FrostCone = new PrefabGUID(-1217040138); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_IceNova = new PrefabGUID(995009212); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_VeilOfFrost = new PrefabGUID(-245144906); public static readonly PrefabGUID Recipe_Jewel_Frost_T04 = new PrefabGUID(1220982133); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_ColdSnap = new PrefabGUID(1548333309); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_CrystalLance = new PrefabGUID(-366508312); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_FrostBarrier = new PrefabGUID(-1916181867); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_FrostBat = new PrefabGUID(1669439853); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_FrostCone = new PrefabGUID(-586089909); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_IceNova = new PrefabGUID(2058110132); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_VeilOfFrost = new PrefabGUID(-1413146031); public static readonly PrefabGUID Recipe_Jewel_Illusion_T01 = new PrefabGUID(1885790026); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02 = new PrefabGUID(-443627358); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_Curse = new PrefabGUID(-1928857475); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_MistTrance = new PrefabGUID(-1972338710); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_Mosquito = new PrefabGUID(251557275); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_PhantomAegis = new PrefabGUID(1588865021); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_SpectralWolf = new PrefabGUID(-1099144954); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_VeilOfIllusion = new PrefabGUID(-899623094); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_WraithSpear = new PrefabGUID(1130803007); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03 = new PrefabGUID(-1638077703); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_Curse = new PrefabGUID(1646432213); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_MistTrance = new PrefabGUID(593821386); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_Mosquito = new PrefabGUID(1949752494); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_PhantomAegis = new PrefabGUID(-244123374); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_SpectralWolf = new PrefabGUID(1192126839); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_VeilOfIllusion = new PrefabGUID(832118211); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_WraithSpear = new PrefabGUID(-970138509); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04 = new PrefabGUID(86391798); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_Curse = new PrefabGUID(-1255084741); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_MistTrance = new PrefabGUID(113014730); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_Mosquito = new PrefabGUID(817310228); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_PhantomAegis = new PrefabGUID(-32531606); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_SpectralWolf = new PrefabGUID(253232005); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_VeilOfIllusion = new PrefabGUID(941258392); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_WraithSpear = new PrefabGUID(1099730006); public static readonly PrefabGUID Recipe_Jewel_Storm_T01 = new PrefabGUID(81501826); public static readonly PrefabGUID Recipe_Jewel_Storm_T02 = new PrefabGUID(687440022); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_BallLightning = new PrefabGUID(-269714118); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_Cyclone = new PrefabGUID(-1385380788); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_Discharge = new PrefabGUID(-1829203567); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_LightningTendrils = new PrefabGUID(1839373951); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_LightningWall = new PrefabGUID(793838493); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_PolarityShift = new PrefabGUID(-1843641524); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_VeilOfStorm = new PrefabGUID(-2021884201); public static readonly PrefabGUID Recipe_Jewel_Storm_T03 = new PrefabGUID(-1901900501); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_BallLightning = new PrefabGUID(595324174); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_Cyclone = new PrefabGUID(-57395936); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_Discharge = new PrefabGUID(20833766); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_LightningTendrils = new PrefabGUID(1717016346); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_LightningWall = new PrefabGUID(-12176904); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_PolarityShift = new PrefabGUID(-697842923); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_VeilOfStorm = new PrefabGUID(-1164864103); public static readonly PrefabGUID Recipe_Jewel_Storm_T04 = new PrefabGUID(310567762); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_BallLightning = new PrefabGUID(891968939); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_Cyclone = new PrefabGUID(-794779743); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_Discharge = new PrefabGUID(1385565480); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_LightningTendrils = new PrefabGUID(-38691585); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_LightningWall = new PrefabGUID(199150725); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_PolarityShift = new PrefabGUID(-636221299); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_VeilOfStorm = new PrefabGUID(185593335); public static readonly PrefabGUID Recipe_Jewel_Unholy_T01 = new PrefabGUID(-1841149251); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02 = new PrefabGUID(1628896277); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_ChainsOfDeath = new PrefabGUID(1098089916); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_CorpseExplosion = new PrefabGUID(-548400473); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_CorruptedSkull = new PrefabGUID(986923658); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_DeathKnight = new PrefabGUID(-338535841); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_Soulburn = new PrefabGUID(1259976804); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_VeilOfBones = new PrefabGUID(-20844245); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_WardOfTheDamned = new PrefabGUID(812735179); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03 = new PrefabGUID(-1441428013); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_ChainsOfDeath = new PrefabGUID(912357966); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_CorpseExplosion = new PrefabGUID(-476269715); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_CorruptedSkull = new PrefabGUID(625989230); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_DeathKnight = new PrefabGUID(-145359715); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_Soulburn = new PrefabGUID(-1836185186); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_VeilOfBones = new PrefabGUID(-1660160596); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_WardOfTheDamned = new PrefabGUID(405933740); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04 = new PrefabGUID(-459320498); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_ChainsOfDeath = new PrefabGUID(495345726); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_CorpseExplosion = new PrefabGUID(-263798740); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_CorruptedSkull = new PrefabGUID(-299276760); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_DeathKnight = new PrefabGUID(-624069541); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_Soulburn = new PrefabGUID(-530631333); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_VeilOfBones = new PrefabGUID(-1669971047); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_WardOfTheDamned = new PrefabGUID(-1026108429); public static readonly PrefabGUID Recipe_MagicSource_BloodKey_T01 = new PrefabGUID(152004500); public static readonly PrefabGUID Recipe_MagicSource_General_T01_BoneRing = new PrefabGUID(2112434273); public static readonly PrefabGUID Recipe_MagicSource_General_T02_BloodRoseRing = new PrefabGUID(-377694156); public static readonly PrefabGUID Recipe_MagicSource_General_T03_GravediggerRing = new PrefabGUID(-84929462); public static readonly PrefabGUID Recipe_MagicSource_General_T04_Duskwatcher = new PrefabGUID(-1392969895); public static readonly PrefabGUID Recipe_MagicSource_General_T04_EmberChain = new PrefabGUID(606793986); public static readonly PrefabGUID Recipe_MagicSource_General_T04_FrozenEye = new PrefabGUID(-1252143324); public static readonly PrefabGUID Recipe_MagicSource_General_T04_KnightRing = new PrefabGUID(134822591); public static readonly PrefabGUID Recipe_MagicSource_General_T04_MistSignet = new PrefabGUID(-1643108625); public static readonly PrefabGUID Recipe_MagicSource_General_T04_SorcererRing = new PrefabGUID(-1954484110); public static readonly PrefabGUID Recipe_MagicSource_General_T05_Relic = new PrefabGUID(464548553); public static readonly PrefabGUID Recipe_MagicSource_General_T06_AmethystPendant = new PrefabGUID(575942293); public static readonly PrefabGUID Recipe_MagicSource_General_T06_EmeraldNecklace = new PrefabGUID(-1789687685); public static readonly PrefabGUID Recipe_MagicSource_General_T06_MistStoneNecklace = new PrefabGUID(2113597811); public static readonly PrefabGUID Recipe_MagicSource_General_T06_RubyPendant = new PrefabGUID(1192551289); public static readonly PrefabGUID Recipe_MagicSource_General_T06_SapphirePendant = new PrefabGUID(932186802); public static readonly PrefabGUID Recipe_MagicSource_General_T06_TopazAmulet = new PrefabGUID(1272778289); public static readonly PrefabGUID Recipe_MagicSource_General_T07_BloodwineAmulet = new PrefabGUID(307631810); public static readonly PrefabGUID Recipe_MagicSource_General_T08_Beast = new PrefabGUID(-590297568); public static readonly PrefabGUID Recipe_MagicSource_General_T08_CrimsonSky = new PrefabGUID(-1485680334); public static readonly PrefabGUID Recipe_MagicSource_General_T08_Delusion = new PrefabGUID(-321571889); public static readonly PrefabGUID Recipe_MagicSource_General_T08_FrozenCrypt = new PrefabGUID(-831940419); public static readonly PrefabGUID Recipe_MagicSource_General_T08_Madness = new PrefabGUID(1926933208); public static readonly PrefabGUID Recipe_MagicSource_General_T08_WickedProphet = new PrefabGUID(-715761764); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Dracula = new PrefabGUID(-414358988); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Manticore = new PrefabGUID(-111826090); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Monster = new PrefabGUID(1791150988); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Morgana = new PrefabGUID(1129993300); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Solarus = new PrefabGUID(-958598508); public static readonly PrefabGUID Recipe_Misc_ExtractEssencePrisoner = new PrefabGUID(1716338316); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_BloodSnapper = new PrefabGUID(956953141); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_Corrupted = new PrefabGUID(493259323); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_FatGoby = new PrefabGUID(-2047246570); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_FierceStinger = new PrefabGUID(-37587809); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_GoldenRiverBass = new PrefabGUID(1816434122); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_RainbowTrout = new PrefabGUID(-1206171767); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_SageFish = new PrefabGUID(1800570390); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_SwampDweller = new PrefabGUID(-460272822); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_TwilightSnapper = new PrefabGUID(-252411567); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_IrradiantGruel = new PrefabGUID(-279936313); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Rat = new PrefabGUID(1469101010); public static readonly PrefabGUID Recipe_Saddle_Basic_T01 = new PrefabGUID(367529732); public static readonly PrefabGUID Recipe_Saddle_Blackfang_DLC_T01 = new PrefabGUID(1477520375); public static readonly PrefabGUID Recipe_Saddle_Gloomrot_DLC_T01 = new PrefabGUID(-2076606690); public static readonly PrefabGUID Recipe_Saddle_ProjectK_DLC_T01 = new PrefabGUID(841431479); public static readonly PrefabGUID Recipe_Seed_BloodRose_T01_Trader = new PrefabGUID(1930056104); public static readonly PrefabGUID Recipe_Seed_FireBlossom_T01_Trader = new PrefabGUID(-693582888); public static readonly PrefabGUID Recipe_Seed_GhostShroom_T03_Trader = new PrefabGUID(-56026974); public static readonly PrefabGUID Recipe_Seed_HellsClarion_T01_Trader = new PrefabGUID(-1079722820); public static readonly PrefabGUID Recipe_Seed_Lotus_T03_Trader = new PrefabGUID(-1660279142); public static readonly PrefabGUID Recipe_Seed_MourningLily_T01_Trader = new PrefabGUID(-1271741418); public static readonly PrefabGUID Recipe_Seed_SnowFlower_T01_Trader = new PrefabGUID(640919389); public static readonly PrefabGUID Recipe_Seed_SunFlower_T02_Trader = new PrefabGUID(-486247420); public static readonly PrefabGUID Recipe_Soulshard_Extract_TheMonster = new PrefabGUID(1743327679); public static readonly PrefabGUID Recipe_UnitSpawn_Banshee = new PrefabGUID(1065325546); public static readonly PrefabGUID Recipe_UnitSpawn_Ghoul = new PrefabGUID(1470479508); public static readonly PrefabGUID Recipe_UnitSpawn_GiantRat = new PrefabGUID(-1953870432); public static readonly PrefabGUID Recipe_UnitSpawn_Mosquito = new PrefabGUID(-614781206); public static readonly PrefabGUID Recipe_UnitSpawn_Mutant = new PrefabGUID(-591009330); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_BloodSoul = new PrefabGUID(286874232); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_Knowledge = new PrefabGUID(99503299); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_Minerals = new PrefabGUID(-1050470705); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_Seed = new PrefabGUID(535319065); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_Alchemy = new PrefabGUID(-1555052563); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_BloodSoul = new PrefabGUID(-1679457981); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_Knowledge = new PrefabGUID(-1569877264); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_Minerals = new PrefabGUID(329917761); public static readonly PrefabGUID Recipe_UnitSpawn_PutridRat = new PrefabGUID(-753029646); public static readonly PrefabGUID Recipe_UnitSpawn_Rat = new PrefabGUID(255936441); public static readonly PrefabGUID Recipe_UnitSpawn_Silkworm = new PrefabGUID(-96946162); public static readonly PrefabGUID Recipe_UnitSpawn_Skeleton = new PrefabGUID(365601143); public static readonly PrefabGUID Recipe_UnitSpawn_SkeletonPriest = new PrefabGUID(-2114825141); public static readonly PrefabGUID Recipe_UnitSpawn_Spiderling = new PrefabGUID(1172635875); public static readonly PrefabGUID Recipe_Weapon_Axe_T01_Bone = new PrefabGUID(-837028877); public static readonly PrefabGUID Recipe_Weapon_Axe_T02_Bone_Reinforced = new PrefabGUID(1031414138); public static readonly PrefabGUID Recipe_Weapon_Axe_T03_Copper = new PrefabGUID(-1864396632); public static readonly PrefabGUID Recipe_Weapon_Axe_T04_Copper_Reinforced = new PrefabGUID(-411123427); public static readonly PrefabGUID Recipe_Weapon_Axe_T05_Iron = new PrefabGUID(305819079); public static readonly PrefabGUID Recipe_Weapon_Axe_T06_Iron_Reinforced = new PrefabGUID(690858507); public static readonly PrefabGUID Recipe_Weapon_Axe_T07_DarkSilver = new PrefabGUID(-1896566066); public static readonly PrefabGUID Recipe_Weapon_Axe_T08_Sanguine = new PrefabGUID(-67490827); public static readonly PrefabGUID Recipe_Weapon_Axe_T09_ShadowMatter = new PrefabGUID(-998610023); public static readonly PrefabGUID Recipe_Weapon_Claws_T05_Iron = new PrefabGUID(-1520452495); public static readonly PrefabGUID Recipe_Weapon_Claws_T06_Iron_Reinforced = new PrefabGUID(-1690827442); public static readonly PrefabGUID Recipe_Weapon_Claws_T07_DarkSilver = new PrefabGUID(1020521578); public static readonly PrefabGUID Recipe_Weapon_Claws_T08_Sanguine = new PrefabGUID(-749910443); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T01_Bone = new PrefabGUID(-1384817143); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T02_Bone_Reinforced = new PrefabGUID(-1421664082); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T03_Copper = new PrefabGUID(841082368); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T04_Copper_Reinforced = new PrefabGUID(-283375796); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T05_Iron = new PrefabGUID(1268051742); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T06_Iron_Reinforced = new PrefabGUID(1341382268); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T07_DarkSilver = new PrefabGUID(-971743976); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T08_Sanguine = new PrefabGUID(-1064000514); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T09_ShadowMatter = new PrefabGUID(-178724798); public static readonly PrefabGUID Recipe_Weapon_Daggers_T05_Iron = new PrefabGUID(908837210); public static readonly PrefabGUID Recipe_Weapon_Daggers_T06_Iron_Reinforced = new PrefabGUID(-328931595); public static readonly PrefabGUID Recipe_Weapon_Daggers_T07_DarkSilver = new PrefabGUID(847424089); public static readonly PrefabGUID Recipe_Weapon_Daggers_T08_Sanguine = new PrefabGUID(268825874); public static readonly PrefabGUID Recipe_Weapon_FishingPole_T01 = new PrefabGUID(319663209); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T05_Iron = new PrefabGUID(1731901666); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T06_Iron_Reinforced = new PrefabGUID(648459378); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T07_DarkSilver = new PrefabGUID(-2116357114); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T08_Sanguine = new PrefabGUID(1944286219); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T09_ShadowMatter = new PrefabGUID(-1525227854); public static readonly PrefabGUID Recipe_Weapon_Longbow_T03_Copper = new PrefabGUID(-514405267); public static readonly PrefabGUID Recipe_Weapon_Longbow_T04_Copper_Reinforced = new PrefabGUID(777859879); public static readonly PrefabGUID Recipe_Weapon_Longbow_T05_Iron = new PrefabGUID(-80393444); public static readonly PrefabGUID Recipe_Weapon_Longbow_T06_Iron_Reinforced = new PrefabGUID(-149592989); public static readonly PrefabGUID Recipe_Weapon_Longbow_T07_DarkSilver = new PrefabGUID(-1063439615); public static readonly PrefabGUID Recipe_Weapon_Longbow_T08_Sanguine = new PrefabGUID(-603557479); public static readonly PrefabGUID Recipe_Weapon_Longbow_T09_ShadowMatter = new PrefabGUID(1378881717); public static readonly PrefabGUID Recipe_Weapon_LumberjackAxe_T01_Trader = new PrefabGUID(2136704250); public static readonly PrefabGUID Recipe_Weapon_Mace_T01_Bone = new PrefabGUID(-1064109772); public static readonly PrefabGUID Recipe_Weapon_Mace_T02_Bone_Reinforced = new PrefabGUID(1377610318); public static readonly PrefabGUID Recipe_Weapon_Mace_T03_Copper = new PrefabGUID(-356991727); public static readonly PrefabGUID Recipe_Weapon_Mace_T04_Copper_Reinforced = new PrefabGUID(897446828); public static readonly PrefabGUID Recipe_Weapon_Mace_T05_Iron = new PrefabGUID(-612459251); public static readonly PrefabGUID Recipe_Weapon_Mace_T06_Iron_Reinforced = new PrefabGUID(-1538728965); public static readonly PrefabGUID Recipe_Weapon_Mace_T07_DarkSilver = new PrefabGUID(532951453); public static readonly PrefabGUID Recipe_Weapon_Mace_T08_Sanguine = new PrefabGUID(-1492594940); public static readonly PrefabGUID Recipe_Weapon_Mace_T09_ShadowMatter = new PrefabGUID(-240353582); public static readonly PrefabGUID Recipe_Weapon_MinersMace_T01_Trader = new PrefabGUID(-1476908192); public static readonly PrefabGUID Recipe_Weapon_Pistols_T05_Iron = new PrefabGUID(1314793960); public static readonly PrefabGUID Recipe_Weapon_Pistols_T06_Iron_Reinforced = new PrefabGUID(-1015239074); public static readonly PrefabGUID Recipe_Weapon_Pistols_T07_DarkSilver = new PrefabGUID(-296690999); public static readonly PrefabGUID Recipe_Weapon_Pistols_T08_Sanguine = new PrefabGUID(1058461467); public static readonly PrefabGUID Recipe_Weapon_Pistols_T09_ShadowMatter = new PrefabGUID(-299780538); public static readonly PrefabGUID Recipe_Weapon_Reaper_T01_Bone = new PrefabGUID(1678839668); public static readonly PrefabGUID Recipe_Weapon_Reaper_T02_Bone_Reinforced = new PrefabGUID(-238493462); public static readonly PrefabGUID Recipe_Weapon_Reaper_T03_Copper = new PrefabGUID(787254471); public static readonly PrefabGUID Recipe_Weapon_Reaper_T04_Copper_Reinforced = new PrefabGUID(-681071811); public static readonly PrefabGUID Recipe_Weapon_Reaper_T05_Iron = new PrefabGUID(1109951557); public static readonly PrefabGUID Recipe_Weapon_Reaper_T06_Iron_Reinforced = new PrefabGUID(537685806); public static readonly PrefabGUID Recipe_Weapon_Reaper_T07_DarkSilver = new PrefabGUID(-1112081437); public static readonly PrefabGUID Recipe_Weapon_Reaper_T08_Sanguine = new PrefabGUID(-1816552963); public static readonly PrefabGUID Recipe_Weapon_Reaper_T09_ShadowMatter = new PrefabGUID(-884753903); public static readonly PrefabGUID Recipe_Weapon_Slashers_T01_Bone = new PrefabGUID(-1536889801); public static readonly PrefabGUID Recipe_Weapon_Slashers_T02_Bone_Reinforced = new PrefabGUID(1679813913); public static readonly PrefabGUID Recipe_Weapon_Slashers_T03_Copper = new PrefabGUID(-1560601100); public static readonly PrefabGUID Recipe_Weapon_Slashers_T04_Copper_Reinforced = new PrefabGUID(396156173); public static readonly PrefabGUID Recipe_Weapon_Slashers_T05_Iron = new PrefabGUID(-808348493); public static readonly PrefabGUID Recipe_Weapon_Slashers_T06_Iron_Reinforced = new PrefabGUID(1469893872); public static readonly PrefabGUID Recipe_Weapon_Slashers_T07_DarkSilver = new PrefabGUID(-1919160227); public static readonly PrefabGUID Recipe_Weapon_Slashers_T08_Sanguine = new PrefabGUID(373339628); public static readonly PrefabGUID Recipe_Weapon_Slashers_T09_ShadowMatter = new PrefabGUID(501702204); public static readonly PrefabGUID Recipe_Weapon_Spear_T01_Bone = new PrefabGUID(1394854694); public static readonly PrefabGUID Recipe_Weapon_Spear_T02_Bone_Reinforced = new PrefabGUID(-1328539101); public static readonly PrefabGUID Recipe_Weapon_Spear_T03_Copper = new PrefabGUID(-791471134); public static readonly PrefabGUID Recipe_Weapon_Spear_T04_Copper_Reinforced = new PrefabGUID(-118222260); public static readonly PrefabGUID Recipe_Weapon_Spear_T05_Iron = new PrefabGUID(239811022); public static readonly PrefabGUID Recipe_Weapon_Spear_T06_Iron_Reinforced = new PrefabGUID(-499925914); public static readonly PrefabGUID Recipe_Weapon_Spear_T07_DarkSilver = new PrefabGUID(-194303255); public static readonly PrefabGUID Recipe_Weapon_Spear_T08_Sanguine = new PrefabGUID(-314047482); public static readonly PrefabGUID Recipe_Weapon_Spear_T09_ShadowMatter = new PrefabGUID(-190896313); public static readonly PrefabGUID Recipe_Weapon_Sword_T01_Bone = new PrefabGUID(-2125590443); public static readonly PrefabGUID Recipe_Weapon_Sword_T02_Bone_Reinforced = new PrefabGUID(1742703328); public static readonly PrefabGUID Recipe_Weapon_Sword_T03_Copper = new PrefabGUID(-267802321); public static readonly PrefabGUID Recipe_Weapon_Sword_T04_Copper_Reinforced = new PrefabGUID(774557022); public static readonly PrefabGUID Recipe_Weapon_Sword_T05_Iron = new PrefabGUID(-2098625697); public static readonly PrefabGUID Recipe_Weapon_Sword_T06_Iron_Reinforced = new PrefabGUID(-1052674868); public static readonly PrefabGUID Recipe_Weapon_Sword_T07_DarkSilver = new PrefabGUID(374085302); public static readonly PrefabGUID Recipe_Weapon_Sword_T08_Sanguine = new PrefabGUID(895742048); public static readonly PrefabGUID Recipe_Weapon_Sword_T09_ShadowMatter = new PrefabGUID(1363919271); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T05_Iron = new PrefabGUID(-496801516); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T06_Iron_Reinforced = new PrefabGUID(1687058710); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T07_DarkSilver = new PrefabGUID(895579931); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T08_Sanguine = new PrefabGUID(1259720344); public static readonly PrefabGUID Recipe_Weapon_Whip_T05_Iron = new PrefabGUID(688528978); public static readonly PrefabGUID Recipe_Weapon_Whip_T06_Iron_Reinforced = new PrefabGUID(465080212); public static readonly PrefabGUID Recipe_Weapon_Whip_T07_DarkSilver = new PrefabGUID(1507781061); public static readonly PrefabGUID Recipe_Weapon_Whip_T08_Sanguine = new PrefabGUID(-1968497565); public static readonly PrefabGUID Recipe_Weapon_Whip_T09_ShadowMatter = new PrefabGUID(-941901707); public static readonly PrefabGUID Recipe_WeaponCoating_Blood = new PrefabGUID(-1487423952); public static readonly PrefabGUID Recipe_WeaponCoating_Chaos = new PrefabGUID(-338717708); public static readonly PrefabGUID Recipe_WeaponCoating_Frost = new PrefabGUID(-789668816); public static readonly PrefabGUID Recipe_WeaponCoating_Illusion = new PrefabGUID(405829513); public static readonly PrefabGUID Recipe_WeaponCoating_Storm = new PrefabGUID(-2034775483); public static readonly PrefabGUID Recipe_WeaponCoating_Unholy = new PrefabGUID(216972181); public static readonly PrefabGUID RedCarpetsBuildMenuGroup01 = new PrefabGUID(837616279); public static readonly PrefabGUID RedCarpetsBuildMenuGroup02 = new PrefabGUID(1307908983); public static readonly PrefabGUID ReducedActivityTimer = new PrefabGUID(276853963); public static readonly PrefabGUID Refinementstation_Inventory = new PrefabGUID(-534407618); public static readonly PrefabGUID Refinementstation_Inventory_Big = new PrefabGUID(1436956144); public static readonly PrefabGUID Refinementstation_Inventory_Soulshard = new PrefabGUID(-1814907421); public static readonly PrefabGUID RegularScrap01_Broken = new PrefabGUID(955047892); public static readonly PrefabGUID RegularScrap02_Broken = new PrefabGUID(-1180133071); public static readonly PrefabGUID RegularScrap03_Broken = new PrefabGUID(-2137026243); public static readonly PrefabGUID RegularScrap04_Broken = new PrefabGUID(1253256675); public static readonly PrefabGUID Resource_DeathContainer_Drop = new PrefabGUID(55868820); public static readonly PrefabGUID Resource_Drop_Bag = new PrefabGUID(-132814229); public static readonly PrefabGUID Resource_Drop_BloodCrystal = new PrefabGUID(-2134166369); public static readonly PrefabGUID Resource_Drop_BloodRose = new PrefabGUID(2035436823); public static readonly PrefabGUID Resource_Drop_Bone = new PrefabGUID(741092750); public static readonly PrefabGUID Resource_Drop_Bricks = new PrefabGUID(-786648468); public static readonly PrefabGUID Resource_Drop_Canister_01 = new PrefabGUID(1008788107); public static readonly PrefabGUID Resource_Drop_Canister_02 = new PrefabGUID(1617336008); public static readonly PrefabGUID Resource_Drop_Canteen = new PrefabGUID(338642029); public static readonly PrefabGUID Resource_Drop_CarpetRoll = new PrefabGUID(273090451); public static readonly PrefabGUID Resource_Drop_Clay = new PrefabGUID(2132573277); public static readonly PrefabGUID Resource_Drop_Cloak = new PrefabGUID(1521943193); public static readonly PrefabGUID Resource_Drop_Cloth = new PrefabGUID(-1560414694); public static readonly PrefabGUID Resource_Drop_Coal = new PrefabGUID(672726950); public static readonly PrefabGUID Resource_Drop_CoarseThread = new PrefabGUID(-1463968409); public static readonly PrefabGUID Resource_Drop_CoilCircuit = new PrefabGUID(2109036970); public static readonly PrefabGUID Resource_Drop_CoinCopper = new PrefabGUID(-863944122); public static readonly PrefabGUID Resource_Drop_CoinGold = new PrefabGUID(-945352002); public static readonly PrefabGUID Resource_Drop_CoinSilver = new PrefabGUID(636843233); public static readonly PrefabGUID Resource_Drop_Component = new PrefabGUID(-259659176); public static readonly PrefabGUID Resource_Drop_CopperIngot = new PrefabGUID(1231830058); public static readonly PrefabGUID Resource_Drop_CopperOre = new PrefabGUID(-1293505743); public static readonly PrefabGUID Resource_Drop_Cotton = new PrefabGUID(-584778120); public static readonly PrefabGUID Resource_Drop_CottonYarn = new PrefabGUID(470647052); public static readonly PrefabGUID Resource_Drop_Emery = new PrefabGUID(1954116869); public static readonly PrefabGUID Resource_Drop_EMP = new PrefabGUID(1188008126); public static readonly PrefabGUID Resource_Drop_EnergyCore01 = new PrefabGUID(-1751477752); public static readonly PrefabGUID Resource_Drop_EnergyCore02 = new PrefabGUID(-1758094831); public static readonly PrefabGUID Resource_Drop_Essence_Ancestral = new PrefabGUID(705511783); public static readonly PrefabGUID Resource_Drop_Essence_Greater = new PrefabGUID(-294351577); public static readonly PrefabGUID Resource_Drop_Essence_T01 = new PrefabGUID(-967912460); public static readonly PrefabGUID Resource_Drop_FireBlossom = new PrefabGUID(-1261102854); public static readonly PrefabGUID Resource_Drop_Fish = new PrefabGUID(526872006); public static readonly PrefabGUID Resource_Drop_FishOil = new PrefabGUID(-834438334); public static readonly PrefabGUID Resource_Drop_Fragments = new PrefabGUID(-290346143); public static readonly PrefabGUID Resource_Drop_Garment_Boots = new PrefabGUID(-1055389478); public static readonly PrefabGUID Resource_Drop_Garment_Gloves = new PrefabGUID(1116210695); public static readonly PrefabGUID Resource_Drop_Garment_Pants = new PrefabGUID(1871602977); public static readonly PrefabGUID Resource_Drop_Garment_Shirt = new PrefabGUID(-5892362); public static readonly PrefabGUID Resource_Drop_Gear = new PrefabGUID(1402023307); public static readonly PrefabGUID Resource_Drop_Gem = new PrefabGUID(1365230928); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T01 = new PrefabGUID(1340305950); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T02 = new PrefabGUID(-1522062715); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T03 = new PrefabGUID(1507288770); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T04 = new PrefabGUID(-1107505282); public static readonly PrefabGUID Resource_Drop_Gemdust = new PrefabGUID(-874871536); public static readonly PrefabGUID Resource_Drop_GemEmerald_T01 = new PrefabGUID(-1881141613); public static readonly PrefabGUID Resource_Drop_GemEmerald_T02 = new PrefabGUID(84842326); public static readonly PrefabGUID Resource_Drop_GemEmerald_T03 = new PrefabGUID(-1743633722); public static readonly PrefabGUID Resource_Drop_GemEmerald_T04 = new PrefabGUID(-420137271); public static readonly PrefabGUID Resource_Drop_GemOpal_T01 = new PrefabGUID(-699097755); public static readonly PrefabGUID Resource_Drop_GemOpal_T02 = new PrefabGUID(1351986583); public static readonly PrefabGUID Resource_Drop_GemOpal_T03 = new PrefabGUID(1167189460); public static readonly PrefabGUID Resource_Drop_GemOpal_T04 = new PrefabGUID(-49717999); public static readonly PrefabGUID Resource_Drop_GemRuby_T01 = new PrefabGUID(-1965092460); public static readonly PrefabGUID Resource_Drop_GemRuby_T02 = new PrefabGUID(1749912032); public static readonly PrefabGUID Resource_Drop_GemRuby_T03 = new PrefabGUID(1497878745); public static readonly PrefabGUID Resource_Drop_GemRuby_T04 = new PrefabGUID(1014893329); public static readonly PrefabGUID Resource_Drop_GemSapphire_T01 = new PrefabGUID(-926390268); public static readonly PrefabGUID Resource_Drop_GemSapphire_T02 = new PrefabGUID(-288789863); public static readonly PrefabGUID Resource_Drop_GemSapphire_T03 = new PrefabGUID(-1445210561); public static readonly PrefabGUID Resource_Drop_GemSapphire_T04 = new PrefabGUID(2104051835); public static readonly PrefabGUID Resource_Drop_GemTopaz_T01 = new PrefabGUID(258998099); public static readonly PrefabGUID Resource_Drop_GemTopaz_T02 = new PrefabGUID(349566843); public static readonly PrefabGUID Resource_Drop_GemTopaz_T03 = new PrefabGUID(1958027464); public static readonly PrefabGUID Resource_Drop_GemTopaz_T04 = new PrefabGUID(146261020); public static readonly PrefabGUID Resource_Drop_General = new PrefabGUID(-1221682951); public static readonly PrefabGUID Resource_Drop_GhostCrystal = new PrefabGUID(881945195); public static readonly PrefabGUID Resource_Drop_GhostShroom = new PrefabGUID(1680406965); public static readonly PrefabGUID Resource_Drop_GhostYarn = new PrefabGUID(391609785); public static readonly PrefabGUID Resource_Drop_Glass = new PrefabGUID(639818560); public static readonly PrefabGUID Resource_Drop_GlassBottle = new PrefabGUID(1121583475); public static readonly PrefabGUID Resource_Drop_Grapes = new PrefabGUID(658951117); public static readonly PrefabGUID Resource_Drop_Gravedust = new PrefabGUID(2036389174); public static readonly PrefabGUID Resource_Drop_Headgear = new PrefabGUID(362690558); public static readonly PrefabGUID Resource_Drop_Heart = new PrefabGUID(648059360); public static readonly PrefabGUID Resource_Drop_Heart_Basic = new PrefabGUID(-446137777); public static readonly PrefabGUID Resource_Drop_Heart_Rare = new PrefabGUID(-1025260281); public static readonly PrefabGUID Resource_Drop_HellsClarion = new PrefabGUID(725236544); public static readonly PrefabGUID Resource_Drop_Hide = new PrefabGUID(2086608040); public static readonly PrefabGUID Resource_Drop_HighlandLotus = new PrefabGUID(1670221615); public static readonly PrefabGUID Resource_Drop_IronIngot = new PrefabGUID(-1617135517); public static readonly PrefabGUID Resource_Drop_IronOre = new PrefabGUID(-1357977690); public static readonly PrefabGUID Resource_Drop_Jewel = new PrefabGUID(2114665159); public static readonly PrefabGUID Resource_Drop_Jewel_T04 = new PrefabGUID(1345661752); public static readonly PrefabGUID Resource_Drop_Leather = new PrefabGUID(-40351197); public static readonly PrefabGUID Resource_Drop_LegendaryWeapons = new PrefabGUID(-376707940); public static readonly PrefabGUID Resource_Drop_Lumber = new PrefabGUID(-1086097069); public static readonly PrefabGUID Resource_Drop_MourningLily = new PrefabGUID(-384761539); public static readonly PrefabGUID Resource_Drop_MutantGrease = new PrefabGUID(-797430410); public static readonly PrefabGUID Resource_Drop_NetherShard_T01 = new PrefabGUID(-1692425655); public static readonly PrefabGUID Resource_Drop_NetherShard_T02 = new PrefabGUID(-193094031); public static readonly PrefabGUID Resource_Drop_NetherShard_T03 = new PrefabGUID(644720806); public static readonly PrefabGUID Resource_Drop_OnyxTear = new PrefabGUID(-2073210980); public static readonly PrefabGUID Resource_Drop_PaintingFrame = new PrefabGUID(1582869873); public static readonly PrefabGUID Resource_Drop_Paper = new PrefabGUID(-1707229047); public static readonly PrefabGUID Resource_Drop_Passive = new PrefabGUID(-1674657717); public static readonly PrefabGUID Resource_Drop_Pendant = new PrefabGUID(-583542658); public static readonly PrefabGUID Resource_Drop_Plantfiber = new PrefabGUID(-2146401969); public static readonly PrefabGUID Resource_Drop_PotionBottle = new PrefabGUID(-1094561191); public static readonly PrefabGUID Resource_Drop_PrimalLeather = new PrefabGUID(155317997); public static readonly PrefabGUID Resource_Drop_Quartz = new PrefabGUID(-842432547); public static readonly PrefabGUID Resource_Drop_RaidItem = new PrefabGUID(-1588736269); public static readonly PrefabGUID Resource_Drop_ReinforcedPlank = new PrefabGUID(-1125205733); public static readonly PrefabGUID Resource_Drop_Relic = new PrefabGUID(-1693842783); public static readonly PrefabGUID Resource_Drop_Ring = new PrefabGUID(925101108); public static readonly PrefabGUID Resource_Drop_Rock = new PrefabGUID(-796841019); public static readonly PrefabGUID Resource_Drop_Sawdust = new PrefabGUID(-382879005); public static readonly PrefabGUID Resource_Drop_Schematic = new PrefabGUID(532174117); public static readonly PrefabGUID Resource_Drop_Scourgestone = new PrefabGUID(1097674092); public static readonly PrefabGUID Resource_Drop_Scroll = new PrefabGUID(-2067985489); public static readonly PrefabGUID Resource_Drop_SculpturedWood = new PrefabGUID(14280401); public static readonly PrefabGUID Resource_Drop_Seeds = new PrefabGUID(-1444686586); public static readonly PrefabGUID Resource_Drop_Silk = new PrefabGUID(1992618619); public static readonly PrefabGUID Resource_Drop_Snowflower = new PrefabGUID(1899422145); public static readonly PrefabGUID Resource_Drop_SoulShard = new PrefabGUID(2088872209); public static readonly PrefabGUID Resource_Drop_Spectraldust = new PrefabGUID(-970714772); public static readonly PrefabGUID Resource_Drop_SpiderWeb = new PrefabGUID(710409210); public static readonly PrefabGUID Resource_Drop_SteelIngot = new PrefabGUID(96881789); public static readonly PrefabGUID Resource_Drop_StoneBody = new PrefabGUID(-773308565); public static readonly PrefabGUID Resource_Drop_Stonedust = new PrefabGUID(-1718242130); public static readonly PrefabGUID Resource_Drop_Sulfur = new PrefabGUID(-1782215599); public static readonly PrefabGUID Resource_Drop_Sunflower = new PrefabGUID(1191294763); public static readonly PrefabGUID Resource_Drop_Tech = new PrefabGUID(-1168158116); public static readonly PrefabGUID Resource_Drop_TechScrap = new PrefabGUID(1266142904); public static readonly PrefabGUID Resource_Drop_ThickLeather = new PrefabGUID(-1305286125); public static readonly PrefabGUID Resource_Drop_TrippyShroom = new PrefabGUID(1360483679); public static readonly PrefabGUID Resource_Drop_WaterGlassBottle = new PrefabGUID(776167693); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster = new PrefabGUID(2080553210); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster_Epic = new PrefabGUID(-1623103673); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster_Legendary = new PrefabGUID(-749126916); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster_Rare = new PrefabGUID(1349020541); public static readonly PrefabGUID Resource_Drop_Whetstone = new PrefabGUID(482313771); public static readonly PrefabGUID Resource_Drop_WoodenPlank = new PrefabGUID(-1635345321); public static readonly PrefabGUID Resource_Drop_WoolThread = new PrefabGUID(-1101718335); public static readonly PrefabGUID Resource_PlayerDeathContainer_Drop = new PrefabGUID(-1167134977); public static readonly PrefabGUID Resource_PlayerDeathContainer_Drop_ClanMembers = new PrefabGUID(1988127386); public static readonly PrefabGUID Resource_PlayerDeathContainer_Drop_Self = new PrefabGUID(-145322157); public static readonly PrefabGUID Resource_PlayerEntireInventoryContainer_Drop = new PrefabGUID(388822843); public static readonly PrefabGUID RippedRugsBuildMenuGroup01 = new PrefabGUID(555159354); public static readonly PrefabGUID RobotTurret_Ragdoll100_Prefab = new PrefabGUID(-1631011417); public static readonly PrefabGUID RockLaunchBounceHeightCurve = new PrefabGUID(521821910); public static readonly PrefabGUID RockNode01_Broken = new PrefabGUID(498034569); public static readonly PrefabGUID RockNode01_Broken_Small = new PrefabGUID(-2030727104); public static readonly PrefabGUID RockNode02_Broken = new PrefabGUID(-775406803); public static readonly PrefabGUID RockNode02_Broken_Small = new PrefabGUID(2122487943); public static readonly PrefabGUID RockNode03_Broken = new PrefabGUID(551929350); public static readonly PrefabGUID RockNode03_Broken_Small = new PrefabGUID(639740132); public static readonly PrefabGUID RockNode04_Broken = new PrefabGUID(-1169207343); public static readonly PrefabGUID RockNode04_Broken_Small = new PrefabGUID(-1459707548); public static readonly PrefabGUID RockNodeBig01_Broken = new PrefabGUID(321324502); public static readonly PrefabGUID RockNodeMedium01_Broken = new PrefabGUID(-159799385); public static readonly PrefabGUID RoofCategory_Castle = new PrefabGUID(-1718269807); public static readonly PrefabGUID RoofCategory_RusticHouse = new PrefabGUID(800161619); public static readonly PrefabGUID RoyalDLC01WindowsBuildMenuGroup = new PrefabGUID(133133579); public static readonly PrefabGUID RugsBuildMenuGroup01 = new PrefabGUID(-438029986); public static readonly PrefabGUID RuntimeSequenceConversion = new PrefabGUID(-2119731411); public static readonly PrefabGUID Rustle_Curve_Leaves = new PrefabGUID(-408855615); public static readonly PrefabGUID Rustle_Curve_PlantFiber = new PrefabGUID(230408611); public static readonly PrefabGUID Rustle_Curve_Stone = new PrefabGUID(1638161369); public static readonly PrefabGUID Rustle_Curve_Wood = new PrefabGUID(-1287158218); public static readonly PrefabGUID Scenery_CritterGroup_Bunny = new PrefabGUID(-726797863); public static readonly PrefabGUID Scenery_CritterGroup_Cat = new PrefabGUID(-462619446); public static readonly PrefabGUID Scenery_CritterGroup_Chicken = new PrefabGUID(-513938186); public static readonly PrefabGUID Scenery_CritterGroup_Cockroach = new PrefabGUID(-2070712292); public static readonly PrefabGUID Scenery_CritterGroup_Crow = new PrefabGUID(-1635715249); public static readonly PrefabGUID Scenery_CritterGroup_Mouse = new PrefabGUID(161195385); public static readonly PrefabGUID Scenery_CritterGroup_Single_Crow = new PrefabGUID(819393749); public static readonly PrefabGUID Scenery_CritterGroup_Spider = new PrefabGUID(338617196); public static readonly PrefabGUID Scenery_CritterGroup_Squirrel = new PrefabGUID(-1481118347); public static readonly PrefabGUID ScrollingCombatTextMessage = new PrefabGUID(-1661525964); public static readonly PrefabGUID SCT_Type_Absorb = new PrefabGUID(-1507060983); public static readonly PrefabGUID SCT_Type_AIReaction = new PrefabGUID(2058410553); public static readonly PrefabGUID SCT_Type_BloodEssenceGain = new PrefabGUID(2131080437); public static readonly PrefabGUID SCT_Type_BloodGain = new PrefabGUID(-999981247); public static readonly PrefabGUID SCT_Type_BloodTypeChange = new PrefabGUID(1154316853); public static readonly PrefabGUID SCT_Type_CannotTeleport = new PrefabGUID(-1203529515); public static readonly PrefabGUID SCT_Type_CastFailResult = new PrefabGUID(-1404311249); public static readonly PrefabGUID SCT_Type_CritDamage = new PrefabGUID(71612833); public static readonly PrefabGUID SCT_Type_Damage = new PrefabGUID(1185773513); public static readonly PrefabGUID SCT_Type_DamageDone = new PrefabGUID(781573820); public static readonly PrefabGUID SCT_Type_DamageDoneWeak = new PrefabGUID(-403787477); public static readonly PrefabGUID SCT_Type_DamageTaken = new PrefabGUID(-1967038487); public static readonly PrefabGUID SCT_Type_DamageTakenCorruption = new PrefabGUID(2141794156); public static readonly PrefabGUID SCT_Type_Generic = new PrefabGUID(-1687715009); public static readonly PrefabGUID SCT_Type_HaveEquippedItems = new PrefabGUID(1868620532); public static readonly PrefabGUID SCT_Type_Healing = new PrefabGUID(-856835573); public static readonly PrefabGUID SCT_Type_HealingMinor = new PrefabGUID(-1081349591); public static readonly PrefabGUID SCT_Type_IgniteExtinguished = new PrefabGUID(-544486556); public static readonly PrefabGUID SCT_Type_Immune = new PrefabGUID(-1203333778); public static readonly PrefabGUID SCT_Type_InfoError = new PrefabGUID(311215354); public static readonly PrefabGUID SCT_Type_InfoMessage = new PrefabGUID(-118474030); public static readonly PrefabGUID SCT_Type_InfoWarning = new PrefabGUID(106212079); public static readonly PrefabGUID SCT_Type_InventoryFull = new PrefabGUID(-1223353367); public static readonly PrefabGUID SCT_Type_Invulernable = new PrefabGUID(-1872940151); public static readonly PrefabGUID SCT_Type_LocalChat = new PrefabGUID(-1855103687); public static readonly PrefabGUID SCT_Type_MAX = new PrefabGUID(1783352458); public static readonly PrefabGUID SCT_Type_MissingLiquidSource = new PrefabGUID(-1891230577); public static readonly PrefabGUID SCT_Type_MissingMaterials = new PrefabGUID(1192126406); public static readonly PrefabGUID SCT_Type_NeedBetterTool = new PrefabGUID(1823472841); public static readonly PrefabGUID SCT_Type_PvECastleDamage = new PrefabGUID(321841627); public static readonly PrefabGUID SCT_Type_PvPCastleDamageOutsideTime = new PrefabGUID(944031787); public static readonly PrefabGUID SCT_Type_PVPProtectionIN = new PrefabGUID(-2002168845); public static readonly PrefabGUID SCT_Type_PVPProtectionOUT = new PrefabGUID(917424779); public static readonly PrefabGUID SCT_Type_RequiredExplosives = new PrefabGUID(750222285); public static readonly PrefabGUID SCT_Type_RequiredExplosivesOrBear = new PrefabGUID(-928087973); public static readonly PrefabGUID SCT_Type_RequiresEMP = new PrefabGUID(-1849014216); public static readonly PrefabGUID SCT_Type_RequiresRecipe = new PrefabGUID(415888609); public static readonly PrefabGUID SCT_Type_ResouceGain = new PrefabGUID(1876501183); public static readonly PrefabGUID SCT_Type_StoneWalls = new PrefabGUID(-581098863); public static readonly PrefabGUID SCT_Type_WoodenWalls = new PrefabGUID(-802591385); public static readonly PrefabGUID SCTTypeCollection = new PrefabGUID(1328911186); public static readonly PrefabGUID SequenceTestCollection = new PrefabGUID(1945063752); public static readonly PrefabGUID ServantCoffinBuildMenuGroup = new PrefabGUID(709084037); public static readonly PrefabGUID ServantComponentsTemplate = new PrefabGUID(-1746730611); public static readonly PrefabGUID ServantInjury_BloodLoss = new PrefabGUID(-2075488993); public static readonly PrefabGUID ServantInjury_Cross = new PrefabGUID(935529743); public static readonly PrefabGUID ServantInjury_ExposedToHolyWater = new PrefabGUID(186809177); public static readonly PrefabGUID ServantInjury_Farmer = new PrefabGUID(-351784592); public static readonly PrefabGUID ServantInjury_Fight = new PrefabGUID(1951642705); public static readonly PrefabGUID ServantInjury_Fire = new PrefabGUID(156962313); public static readonly PrefabGUID ServantInjury_Garlic = new PrefabGUID(1747602415); public static readonly PrefabGUID ServantInjury_Ratform = new PrefabGUID(-1304230302); public static readonly PrefabGUID ServantInjury_SilverArrow = new PrefabGUID(1612634118); public static readonly PrefabGUID ServantInjury_StabbedByStake = new PrefabGUID(-421754319); public static readonly PrefabGUID ServantInjury_SunBurned = new PrefabGUID(685584511); public static readonly PrefabGUID ServantInjury_VampireHunter = new PrefabGUID(1092922249); public static readonly PrefabGUID ServantMission_Cursed_AncientVillage = new PrefabGUID(-395595366); public static readonly PrefabGUID ServantMission_Cursed_CursedVillage = new PrefabGUID(1596714739); public static readonly PrefabGUID ServantMission_Cursed_Forest = new PrefabGUID(589926828); public static readonly PrefabGUID ServantMission_Cursed_SpiderCave = new PrefabGUID(-313828225); public static readonly PrefabGUID ServantMission_Cursed_Swamp = new PrefabGUID(-679169716); public static readonly PrefabGUID ServantMission_Dunley_ChurchOfTheDamned = new PrefabGUID(107611488); public static readonly PrefabGUID ServantMission_Dunley_CottonFarm_East = new PrefabGUID(-1925203213); public static readonly PrefabGUID ServantMission_Dunley_CottonFarm_West = new PrefabGUID(-577507732); public static readonly PrefabGUID ServantMission_Dunley_IronMine = new PrefabGUID(-1591895762); public static readonly PrefabGUID ServantMission_Dunley_MilitiaFort = new PrefabGUID(-1658007185); public static readonly PrefabGUID ServantMission_Dunley_Monastery = new PrefabGUID(-1248995433); public static readonly PrefabGUID ServantMission_Dunley_Mountains = new PrefabGUID(-1409789123); public static readonly PrefabGUID ServantMission_Dunley_QuartzQuarry = new PrefabGUID(55657928); public static readonly PrefabGUID ServantMission_Dunley_VillageDawnbreak = new PrefabGUID(1811427365); public static readonly PrefabGUID ServantMission_Dunley_VillageMosswick = new PrefabGUID(1971860195); public static readonly PrefabGUID ServantMission_Farbane_AnimalCamp = new PrefabGUID(602495896); public static readonly PrefabGUID ServantMission_Farbane_BanditFortress = new PrefabGUID(-297512745); public static readonly PrefabGUID ServantMission_Farbane_CopperQuarry = new PrefabGUID(-1617816771); public static readonly PrefabGUID ServantMission_Farbane_Fisherman = new PrefabGUID(-327479531); public static readonly PrefabGUID ServantMission_Farbane_FlowerMeadows = new PrefabGUID(399747737); public static readonly PrefabGUID ServantMission_Farbane_Forge = new PrefabGUID(51694127); public static readonly PrefabGUID ServantMission_Farbane_HauntedGraveyard = new PrefabGUID(-1154991380); public static readonly PrefabGUID ServantMission_Farbane_LumberjackCamp = new PrefabGUID(195492129); public static readonly PrefabGUID ServantMission_Farbane_SulfurQuarry = new PrefabGUID(568952932); public static readonly PrefabGUID ServantMission_Gloomrot_CoilFactory = new PrefabGUID(610822105); public static readonly PrefabGUID ServantMission_Gloomrot_CopperMine = new PrefabGUID(-706951992); public static readonly PrefabGUID ServantMission_Gloomrot_Lab = new PrefabGUID(-506759403); public static readonly PrefabGUID ServantMission_Gloomrot_PestPools = new PrefabGUID(-1170116308); public static readonly PrefabGUID ServantMission_Gloomrot_PowerPlant = new PrefabGUID(1301932941); public static readonly PrefabGUID ServantMission_Gloomrot_Village = new PrefabGUID(271417492); public static readonly PrefabGUID ServantMission_HallowedMountain_Wild = new PrefabGUID(1796467976); public static readonly PrefabGUID ServantMission_Noctem_Garden = new PrefabGUID(1915682015); public static readonly PrefabGUID ServantMission_Noctem_Ruins = new PrefabGUID(311828353); public static readonly PrefabGUID ServantMission_Silverlight_ArchmagePOI = new PrefabGUID(295204422); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Cathedral = new PrefabGUID(-1034748789); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Harbor = new PrefabGUID(-1079312509); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Slums = new PrefabGUID(-1353577732); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Square = new PrefabGUID(1561380478); public static readonly PrefabGUID ServantMission_Silverlight_HarpyNest_North = new PrefabGUID(179835121); public static readonly PrefabGUID ServantMission_Silverlight_HarpyNest_South = new PrefabGUID(-389296424); public static readonly PrefabGUID ServantMission_Silverlight_SilverMines = new PrefabGUID(348653938); public static readonly PrefabGUID ServantMission_Silverlight_Vineyard = new PrefabGUID(-851359443); public static readonly PrefabGUID ServantMission_Strongblade_Bastion = new PrefabGUID(222147257); public static readonly PrefabGUID ServantMission_Strongblade_CarversLoggingOutpost = new PrefabGUID(2064518699); public static readonly PrefabGUID ServantMission_Strongblade_Shoreline = new PrefabGUID(1928198431); public static readonly PrefabGUID ServantMission_Strongblade_VenomMixingOutpost = new PrefabGUID(2051852663); public static readonly PrefabGUID ServantMission_TEST = new PrefabGUID(-756885851); public static readonly PrefabGUID ServantMissionBuff = new PrefabGUID(-1100464221); public static readonly PrefabGUID ServantMissionSettings = new PrefabGUID(-1830466155); public static readonly PrefabGUID ServantPerk_BloodType_Brute = new PrefabGUID(740985277); public static readonly PrefabGUID ServantPerk_BloodType_Rogue = new PrefabGUID(-1937299872); public static readonly PrefabGUID ServantPerk_BloodType_Scholar = new PrefabGUID(-1410655756); public static readonly PrefabGUID ServantPerk_BloodType_Warrior = new PrefabGUID(-1947526080); public static readonly PrefabGUID ServantPerk_BloodType_Worker = new PrefabGUID(-49207502); public static readonly PrefabGUID ServantPerk_Faction_CursedExpert = new PrefabGUID(-1394605411); public static readonly PrefabGUID ServantPerk_Faction_DunleyExpert = new PrefabGUID(81754057); public static readonly PrefabGUID ServantPerk_Faction_FarbaneExpert = new PrefabGUID(1427742366); public static readonly PrefabGUID ServantPerk_Faction_GloomrotExpert = new PrefabGUID(-1509519094); public static readonly PrefabGUID ServantPerk_Faction_NoctemExpert = new PrefabGUID(-1031211388); public static readonly PrefabGUID ServantPerk_Faction_OakveilExpert = new PrefabGUID(-1745352584); public static readonly PrefabGUID ServantPerk_Faction_SilverExpert = new PrefabGUID(226032448); public static readonly PrefabGUID ServantPerkCollection = new PrefabGUID(-64904809); public static readonly PrefabGUID ServerDebugLogs = new PrefabGUID(1538180840); public static readonly PrefabGUID ServerDebugSettings = new PrefabGUID(1388494640); public static readonly PrefabGUID ServerDebugViewData = new PrefabGUID(-192904674); public static readonly PrefabGUID ServerResetScheduleNoticeSettings = new PrefabGUID(-1354241064); public static readonly PrefabGUID SetBonus_AllLeech_T09 = new PrefabGUID(1774716596); public static readonly PrefabGUID SetBonus_DamageReduction_T04 = new PrefabGUID(-1194884384); public static readonly PrefabGUID SetBonus_DamageReduction_T06 = new PrefabGUID(547075454); public static readonly PrefabGUID SetBonus_DamageReduction_T08 = new PrefabGUID(1291208985); public static readonly PrefabGUID SetBonus_DamageReduction_T09 = new PrefabGUID(572492278); public static readonly PrefabGUID SetBonus_GearLevel_01 = new PrefabGUID(-1469378405); public static readonly PrefabGUID SetBonus_GearLevel_02 = new PrefabGUID(244750581); public static readonly PrefabGUID SetBonus_MaxHealth_01 = new PrefabGUID(-161632603); public static readonly PrefabGUID SetBonus_MaxHealth_T04 = new PrefabGUID(-1833184773); public static readonly PrefabGUID SetBonus_MaxHealth_T06 = new PrefabGUID(-1109053021); public static readonly PrefabGUID SetBonus_MaxHealth_T08 = new PrefabGUID(-870510971); public static readonly PrefabGUID SetBonus_MaxHealth_T09 = new PrefabGUID(-1971511915); public static readonly PrefabGUID SetBonus_MovementSpeed_T04 = new PrefabGUID(-1240045321); public static readonly PrefabGUID SetBonus_MovementSpeed_T06 = new PrefabGUID(1966156848); public static readonly PrefabGUID SetBonus_MovementSpeed_T08 = new PrefabGUID(1079442692); public static readonly PrefabGUID SetBonus_MovementSpeed_T09 = new PrefabGUID(-252942383); public static readonly PrefabGUID SetBonus_PhysicalAndSpellPower_T05 = new PrefabGUID(-1672433701); public static readonly PrefabGUID SetBonus_PhysicalAndSpellPower_T08 = new PrefabGUID(-1122472005); public static readonly PrefabGUID SetBonus_PhysicalAndSpellPower_T09 = new PrefabGUID(-1825126422); public static readonly PrefabGUID SetBonus_PhysicalCritChance_T04 = new PrefabGUID(-1161614593); public static readonly PrefabGUID SetBonus_PhysicalCritPower_T06 = new PrefabGUID(1394868853); public static readonly PrefabGUID SetBonus_PhysicalCritPower_T08 = new PrefabGUID(1013898296); public static readonly PrefabGUID SetBonus_PhysicalCritPower_T09 = new PrefabGUID(-93763706); public static readonly PrefabGUID SetBonus_PhysicalLeech_T06 = new PrefabGUID(76282300); public static readonly PrefabGUID SetBonus_PhysicalPower_01 = new PrefabGUID(1444835872); public static readonly PrefabGUID SetBonus_PrimaryLeech_T04 = new PrefabGUID(-2031427570); public static readonly PrefabGUID SetBonus_PrimaryLeech_T06 = new PrefabGUID(322688242); public static readonly PrefabGUID SetBonus_PrimaryLeech_T08 = new PrefabGUID(247251959); public static readonly PrefabGUID SetBonus_PrimaryLeech_T09 = new PrefabGUID(529890028); public static readonly PrefabGUID SetBonus_ShieldPowerAndHealingReceived_T08 = new PrefabGUID(-809648681); public static readonly PrefabGUID SetBonus_ShieldPowerAndHealingReceived_T09 = new PrefabGUID(1486229325); public static readonly PrefabGUID SetBonus_Silk_Twilight = new PrefabGUID(32681348); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T04 = new PrefabGUID(-356131055); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T06 = new PrefabGUID(868810527); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T08 = new PrefabGUID(541136174); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T09 = new PrefabGUID(754479248); public static readonly PrefabGUID SetBonus_SpellCritChance_T06 = new PrefabGUID(254588562); public static readonly PrefabGUID SetBonus_SpellLeech_T04 = new PrefabGUID(1346704977); public static readonly PrefabGUID SetBonus_SpellLeech_T06 = new PrefabGUID(-386548305); public static readonly PrefabGUID SetBonus_SpellLeech_T08 = new PrefabGUID(-1438282243); public static readonly PrefabGUID SetBonus_SpellLeech_T09 = new PrefabGUID(-349368984); public static readonly PrefabGUID SetBonus_T02_BoneguardReinforced = new PrefabGUID(1581003665); public static readonly PrefabGUID SetBonus_T04_Copper_Brute = new PrefabGUID(1121142849); public static readonly PrefabGUID SetBonus_T04_Copper_Rogue = new PrefabGUID(-593972812); public static readonly PrefabGUID SetBonus_T04_Copper_Scholar = new PrefabGUID(-1174630965); public static readonly PrefabGUID SetBonus_T04_Copper_Warrior = new PrefabGUID(-909697685); public static readonly PrefabGUID SetBonus_T05_Iron = new PrefabGUID(443172945); public static readonly PrefabGUID SetBonus_T06_Iron_Brute = new PrefabGUID(1863848884); public static readonly PrefabGUID SetBonus_T06_Iron_Rogue = new PrefabGUID(-776568419); public static readonly PrefabGUID SetBonus_T06_Iron_Scholar = new PrefabGUID(-559686728); public static readonly PrefabGUID SetBonus_T06_Iron_Warrior = new PrefabGUID(532997228); public static readonly PrefabGUID SetBonus_T07_Dawnthorn = new PrefabGUID(772440843); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Brute = new PrefabGUID(320623981); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Rogue = new PrefabGUID(-2006015924); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Scholar = new PrefabGUID(1766981478); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Warrior = new PrefabGUID(523774634); public static readonly PrefabGUID SetBonus_T09_Dracula = new PrefabGUID(1757441634); public static readonly PrefabGUID SetBonus_T09_Dracula_Brute = new PrefabGUID(-1970130150); public static readonly PrefabGUID SetBonus_T09_Dracula_Rogue = new PrefabGUID(-973082812); public static readonly PrefabGUID SetBonus_T09_Dracula_Scholar = new PrefabGUID(1458910387); public static readonly PrefabGUID SetBonus_T09_Dracula_Warrior = new PrefabGUID(-913344764); public static readonly PrefabGUID SetBonus_Veil_BonusDamage_T09 = new PrefabGUID(-564979747); public static readonly PrefabGUID SetBonus_Veil_HealAttackSpeed_T09 = new PrefabGUID(1126020850); public static readonly PrefabGUID SetBonus_Veil_PhysCrit_T09 = new PrefabGUID(-45464851); public static readonly PrefabGUID SetBonus_Veil_SpellCrit_T09 = new PrefabGUID(1796711064); public static readonly PrefabGUID SetBonus_VeilCooldownRecovery_T06 = new PrefabGUID(-1711241549); public static readonly PrefabGUID SetBonus_VeilCooldownRecovery_T08 = new PrefabGUID(-1541850088); public static readonly PrefabGUID SetBonus_VeilCooldownRecovery_T09 = new PrefabGUID(-1689852255); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T04 = new PrefabGUID(-2084311603); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T06 = new PrefabGUID(529499943); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T08 = new PrefabGUID(-1892430788); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T09 = new PrefabGUID(46345251); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T04 = new PrefabGUID(-735670327); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T06 = new PrefabGUID(1699593962); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T08 = new PrefabGUID(562186869); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T09 = new PrefabGUID(-1449839186); public static readonly PrefabGUID ShadowSpellSchoolAsset = new PrefabGUID(-420104199); public static readonly PrefabGUID Shared_Affix_LevelAura_Buff = new PrefabGUID(-463147620); public static readonly PrefabGUID Shared_Affix_LevelAura_Self = new PrefabGUID(-2104035188); public static readonly PrefabGUID Shared_Affix_LevelAura_Trigger = new PrefabGUID(-304023722); public static readonly PrefabGUID Shared_CosineAboveOneLoop_Curve = new PrefabGUID(2068089580); public static readonly PrefabGUID Shared_LeapMovementCurve = new PrefabGUID(1287678087); public static readonly PrefabGUID ShieldBlockCurve = new PrefabGUID(-1712263022); public static readonly PrefabGUID SilverNode01_Shattered = new PrefabGUID(980522282); public static readonly PrefabGUID SilverNode01_Shattered_Small = new PrefabGUID(-237709830); public static readonly PrefabGUID SilverNode02_Shattered = new PrefabGUID(-357372486); public static readonly PrefabGUID SilverNode02_Shattered_Small = new PrefabGUID(1022913195); public static readonly PrefabGUID SilverNode03_Shattered = new PrefabGUID(420810643); public static readonly PrefabGUID SilverNode03_Shattered_Small = new PrefabGUID(1922266562); public static readonly PrefabGUID SimpleBustBuildMenuGroup = new PrefabGUID(1374073181); public static readonly PrefabGUID SimpleFloorBuildMenuGroup = new PrefabGUID(1370035216); public static readonly PrefabGUID SimpleGargoyleBuildMenuGroup = new PrefabGUID(-1953051592); public static readonly PrefabGUID SimpleStatueBuildMenuGroup = new PrefabGUID(256740223); public static readonly PrefabGUID SkyBlueWindowsBuildMenuGroup = new PrefabGUID(-1719171290); public static readonly PrefabGUID SmallStashBuildMenuGroup = new PrefabGUID(1357162194); public static readonly PrefabGUID Snapping_Point_Carpet = new PrefabGUID(-405810096); public static readonly PrefabGUID Snapping_Point_CastleEntrance = new PrefabGUID(192047127); public static readonly PrefabGUID Snapping_Point_CastleEntranceWide = new PrefabGUID(1684992744); public static readonly PrefabGUID Snapping_Point_CastleWallCurtain = new PrefabGUID(1310745578); public static readonly PrefabGUID Snapping_Point_CastleWindow = new PrefabGUID(-629206606); public static readonly PrefabGUID Snapping_Point_CastleWindowCurtain = new PrefabGUID(1431129932); public static readonly PrefabGUID Snapping_Point_Floor_Castle = new PrefabGUID(-891391036); public static readonly PrefabGUID Snapping_Point_Floor_Pillars = new PrefabGUID(1107064508); public static readonly PrefabGUID Snapping_Point_Hedge = new PrefabGUID(-1296878775); public static readonly PrefabGUID Snapping_Point_HouseWindow = new PrefabGUID(-293373435); public static readonly PrefabGUID Snapping_Point_Module = new PrefabGUID(-329891278); public static readonly PrefabGUID Snapping_Point_PillarDecor = new PrefabGUID(672221628); public static readonly PrefabGUID Snapping_Point_Seed = new PrefabGUID(1492094160); public static readonly PrefabGUID Snapping_Point_Trees = new PrefabGUID(-2115189399); public static readonly PrefabGUID Snapping_Point_WallObject = new PrefabGUID(-77072833); public static readonly PrefabGUID Snapping_Point_Wallpaper = new PrefabGUID(811937554); public static readonly PrefabGUID Snapping_PrefabSet_Carpets = new PrefabGUID(-1803589826); public static readonly PrefabGUID Snapping_PrefabSet_Castle_Floors = new PrefabGUID(1734982571); public static readonly PrefabGUID Snapping_PrefabSet_Castle_PillarsAndWideWalls = new PrefabGUID(2103452847); public static readonly PrefabGUID Snapping_PrefabSet_Castle_Walls = new PrefabGUID(797917351); public static readonly PrefabGUID Snapping_PrefabSet_Castle_Walls_AllTiers = new PrefabGUID(1633669796); public static readonly PrefabGUID Snapping_PrefabSet_CastleDoors = new PrefabGUID(-815752177); public static readonly PrefabGUID Snapping_PrefabSet_CastleDoorsWide = new PrefabGUID(-1670833887); public static readonly PrefabGUID Snapping_PrefabSet_CastleWallCurtains = new PrefabGUID(1193860088); public static readonly PrefabGUID Snapping_PrefabSet_CastleWindowCurtains = new PrefabGUID(1683897205); public static readonly PrefabGUID Snapping_PrefabSet_CastleWindows = new PrefabGUID(651487096); public static readonly PrefabGUID Snapping_PrefabSet_Graveyard_Fence = new PrefabGUID(-1056508325); public static readonly PrefabGUID Snapping_PrefabSet_HedgeCorners = new PrefabGUID(816992238); public static readonly PrefabGUID Snapping_PrefabSet_HedgePillars = new PrefabGUID(1947118461); public static readonly PrefabGUID Snapping_PrefabSet_Hedges = new PrefabGUID(-1644466152); public static readonly PrefabGUID Snapping_PrefabSet_HouseWindows = new PrefabGUID(-1240247986); public static readonly PrefabGUID Snapping_PrefabSet_Modules = new PrefabGUID(-2003280162); public static readonly PrefabGUID Snapping_PrefabSet_Pavement = new PrefabGUID(913493006); public static readonly PrefabGUID Snapping_PrefabSet_PillarTorches = new PrefabGUID(1907761274); public static readonly PrefabGUID Snapping_PrefabSet_Seeds = new PrefabGUID(-1450226155); public static readonly PrefabGUID Snapping_PrefabSet_Trees = new PrefabGUID(-67371969); public static readonly PrefabGUID Snapping_PrefabSet_WallObjects = new PrefabGUID(295358146); public static readonly PrefabGUID Snapping_PrefabSet_Wallpapers = new PrefabGUID(-70934868); public static readonly PrefabGUID SofaBuildMenuGroup = new PrefabGUID(-473102442); public static readonly PrefabGUID SpawnMutantFromBiteBuff = new PrefabGUID(-651661301); public static readonly PrefabGUID SpectralAssassin_Lunge_Curve = new PrefabGUID(844050996); public static readonly PrefabGUID SpectralTravelCurve = new PrefabGUID(-1133311450); public static readonly PrefabGUID Spell_Corruption_Tier3_Snare_Throw = new PrefabGUID(123399875); public static readonly PrefabGUID SpellMod_Axe_Frenzy_Duration = new PrefabGUID(-728210223); public static readonly PrefabGUID SpellMod_Axe_XStrike_MultiThrow = new PrefabGUID(-1434279243); public static readonly PrefabGUID SpellMod_BallLightning_BonusDamage = new PrefabGUID(-531481445); public static readonly PrefabGUID SpellMod_BallLightning_DetonateOnRecast = new PrefabGUID(353305817); public static readonly PrefabGUID SpellMod_BallLightning_Haste = new PrefabGUID(-485022350); public static readonly PrefabGUID SpellMod_BallLightning_KnockbackOnExplode = new PrefabGUID(-316223882); public static readonly PrefabGUID SpellMod_BloodFountain_ConsumeLeechBonusDamage = new PrefabGUID(1317706622); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactApplyLeech = new PrefabGUID(306122420); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactDispell = new PrefabGUID(-1068750721); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactFadingSnare = new PrefabGUID(-1789930630); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactHealIncrease = new PrefabGUID(-946443951); public static readonly PrefabGUID SpellMod_BloodFountain_IncreaseArea = new PrefabGUID(1143457644); public static readonly PrefabGUID SpellMod_BloodFountain_RecastLesser = new PrefabGUID(681330075); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactDamageIncrease = new PrefabGUID(-209970409); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactHealIncrease = new PrefabGUID(-1612403007); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactKnockback = new PrefabGUID(2051676361); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactSpeedBuff = new PrefabGUID(1475152083); public static readonly PrefabGUID SpellMod_BloodRage_DamageBoost = new PrefabGUID(1612736867); public static readonly PrefabGUID SpellMod_BloodRage_HealOnKill = new PrefabGUID(-503268826); public static readonly PrefabGUID SpellMod_BloodRage_IncreaseArea = new PrefabGUID(-1663211505); public static readonly PrefabGUID SpellMod_BloodRage_IncreaseLifetime = new PrefabGUID(1585822911); public static readonly PrefabGUID SpellMod_BloodRage_IncreaseMoveSpeed = new PrefabGUID(2035114890); public static readonly PrefabGUID SpellMod_BloodRage_Shield = new PrefabGUID(2088281423); public static readonly PrefabGUID SpellMod_BloodRite_ApplyFadingSnare = new PrefabGUID(-2135785408); public static readonly PrefabGUID SpellMod_BloodRite_BonusDaggers = new PrefabGUID(1819957855); public static readonly PrefabGUID SpellMod_BloodRite_BonusDamage = new PrefabGUID(361109184); public static readonly PrefabGUID SpellMod_BloodRite_ConsumeLeechHealXTimes = new PrefabGUID(610780185); public static readonly PrefabGUID SpellMod_BloodRite_ConsumeLeechReduceCooldownXTimes = new PrefabGUID(1578280782); public static readonly PrefabGUID SpellMod_BloodRite_DaggerBonusDamage = new PrefabGUID(-921605525); public static readonly PrefabGUID SpellMod_BloodRite_DamageOnAttack = new PrefabGUID(395008950); public static readonly PrefabGUID SpellMod_BloodRite_HealOnTrigger = new PrefabGUID(-1298328788); public static readonly PrefabGUID SpellMod_BloodRite_IncreaseLifetime = new PrefabGUID(-1364514258); public static readonly PrefabGUID SpellMod_BloodRite_Stealth = new PrefabGUID(-1514094720); public static readonly PrefabGUID SpellMod_BloodRite_TossDaggers = new PrefabGUID(864217573); public static readonly PrefabGUID SpellMod_CarrionSwam_BonusDamage = new PrefabGUID(-1547199412); public static readonly PrefabGUID SpellMod_CarrionSwam_Explode = new PrefabGUID(-884299127); public static readonly PrefabGUID SpellMod_CarrionSwam_Leech = new PrefabGUID(-2020998085); public static readonly PrefabGUID SpellMod_CarrionSwam_StunOnHit = new PrefabGUID(-1837470543); public static readonly PrefabGUID SpellMod_CarrionSwam_VampiricCurse = new PrefabGUID(1940553981); public static readonly PrefabGUID SpellMod_ChainsOfDeath_BoneSpirit = new PrefabGUID(-1214230143); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Dot = new PrefabGUID(599900100); public static readonly PrefabGUID SpellMod_ChainsOfDeath_DurationAndDamage = new PrefabGUID(1558320813); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Explosion = new PrefabGUID(1549057800); public static readonly PrefabGUID SpellMod_ChainsOfDeath_FadingSnare = new PrefabGUID(-1529767682); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Haste = new PrefabGUID(1756722785); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Leech = new PrefabGUID(1235988685); public static readonly PrefabGUID SpellMod_ChainsOfDeath_ReducedDamage = new PrefabGUID(1618961316); public static readonly PrefabGUID SpellMod_ChainsOfDeath_SkullNova = new PrefabGUID(-1853462369); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Slow = new PrefabGUID(-1709420734); public static readonly PrefabGUID SpellMod_Chaos_Aftershock_BonusDamage = new PrefabGUID(-648008702); public static readonly PrefabGUID SpellMod_Chaos_Aftershock_InflictSlowOnProjectile = new PrefabGUID(-68573491); public static readonly PrefabGUID SpellMod_Chaos_Aftershock_KnockbackArea = new PrefabGUID(-960235388); public static readonly PrefabGUID SpellMod_Chaos_Barrier_BonusDamage = new PrefabGUID(-547116142); public static readonly PrefabGUID SpellMod_Chaos_Barrier_ConsumeAttackReduceCooldownXTimes = new PrefabGUID(-1611128617); public static readonly PrefabGUID SpellMod_Chaos_Barrier_ExplodeOnHit = new PrefabGUID(1906516980); public static readonly PrefabGUID SpellMod_Chaos_Barrier_LesserPowerSurge = new PrefabGUID(1600880528); public static readonly PrefabGUID SpellMod_Chaos_Barrier_StunOnHit = new PrefabGUID(-1251505269); public static readonly PrefabGUID SpellMod_Chaos_Void_BonusDamage = new PrefabGUID(281216122); public static readonly PrefabGUID SpellMod_Chaos_Void_BurnArea = new PrefabGUID(-1310320536); public static readonly PrefabGUID SpellMod_Chaos_Void_FragBomb = new PrefabGUID(-2083269917); public static readonly PrefabGUID SpellMod_Chaos_Void_ReduceChargeCD = new PrefabGUID(1886458301); public static readonly PrefabGUID SpellMod_Chaos_Volley_BonusDamage = new PrefabGUID(1104681306); public static readonly PrefabGUID SpellMod_Chaos_Volley_SecondProjectileBonusDamage = new PrefabGUID(-681348970); public static readonly PrefabGUID SpellMod_Claws_SkeweringLeap_Unholy = new PrefabGUID(-1115342146); public static readonly PrefabGUID SpellMod_Claws_VaultSlash_Unholy = new PrefabGUID(-588535952); public static readonly PrefabGUID SpellMod_ColdSnap_BonusAbsorb = new PrefabGUID(1336836422); public static readonly PrefabGUID SpellMod_ColdSnap_BonusDamage = new PrefabGUID(-1757583318); public static readonly PrefabGUID SpellMod_ColdSnap_HasteWhileShielded = new PrefabGUID(986977415); public static readonly PrefabGUID SpellMod_ColdSnap_Immaterial = new PrefabGUID(1616797198); public static readonly PrefabGUID SpellMod_CorpseExplosion_BonusDamage = new PrefabGUID(585605138); public static readonly PrefabGUID SpellMod_CorpseExplosion_DoubleImpact = new PrefabGUID(-968605931); public static readonly PrefabGUID SpellMod_CorpseExplosion_HealMinions = new PrefabGUID(1291379982); public static readonly PrefabGUID SpellMod_CorpseExplosion_KillingBlow = new PrefabGUID(-612004637); public static readonly PrefabGUID SpellMod_CorpseExplosion_SkullNova = new PrefabGUID(47727933); public static readonly PrefabGUID SpellMod_CorpseExplosion_SnareBonus = new PrefabGUID(419000172); public static readonly PrefabGUID SpellMod_CorruptedSkull_BoneSpirit = new PrefabGUID(1562979558); public static readonly PrefabGUID SpellMod_CorruptedSkull_BonusDamage = new PrefabGUID(538792139); public static readonly PrefabGUID SpellMod_CorruptedSkull_DetonateSkeleton = new PrefabGUID(1944307151); public static readonly PrefabGUID SpellMod_CorruptedSkull_LesserProjectiles = new PrefabGUID(-203019589); public static readonly PrefabGUID SpellMod_Crossbow_Primary_CritMark = new PrefabGUID(-1150792867); public static readonly PrefabGUID SpellMod_Crossbow_RainOfBolts_BonusArrows = new PrefabGUID(-281838471); public static readonly PrefabGUID SpellMod_Crossbow_Snapshot_BonusArrows = new PrefabGUID(-1912502761); public static readonly PrefabGUID SpellMod_Crossbow_Snapshot_Fear = new PrefabGUID(350145324); public static readonly PrefabGUID SpellMod_CrystalLance_BonusDamageToFrosty = new PrefabGUID(-771579655); public static readonly PrefabGUID SpellMod_CrystalLance_PierceEnemies = new PrefabGUID(-30104212); public static readonly PrefabGUID SpellMod_Curse_DamageFactor = new PrefabGUID(240097113); public static readonly PrefabGUID SpellMod_Curse_DamageOnHit = new PrefabGUID(401599216); public static readonly PrefabGUID SpellMod_Curse_IncreaseDuration = new PrefabGUID(-1926752281); public static readonly PrefabGUID SpellMod_Curse_ReapplyWeaken = new PrefabGUID(570496464); public static readonly PrefabGUID SpellMod_Curse_SpawnWispOnDeath = new PrefabGUID(1881441820); public static readonly PrefabGUID SpellMod_Cyclone_BonusDamage = new PrefabGUID(-1643437789); public static readonly PrefabGUID SpellMod_Cyclone_BonusDamageStormShield = new PrefabGUID(-1842616277); public static readonly PrefabGUID SpellMod_Cyclone_BonusShield = new PrefabGUID(-703040254); public static readonly PrefabGUID SpellMod_Cyclone_IncreaseLifetime = new PrefabGUID(2062783787); public static readonly PrefabGUID SpellMod_Cyclone_ReducedDamageReduction = new PrefabGUID(1974249816); public static readonly PrefabGUID SpellMod_Cyclone_SpellLeechStormShield = new PrefabGUID(-1730057341); public static readonly PrefabGUID SpellMod_Daggers_CallDaggers_GainPhantasm = new PrefabGUID(-1333522898); public static readonly PrefabGUID SpellMod_Daggers_RainOfDaggers_DamagePhantasm = new PrefabGUID(-215395888); public static readonly PrefabGUID SpellMod_DeathKnight_BonusDamage = new PrefabGUID(406584937); public static readonly PrefabGUID SpellMod_DeathKnight_BonusDamageBelowTreshhold = new PrefabGUID(-46382355); public static readonly PrefabGUID SpellMod_DeathKnight_IncreaseLifetime = new PrefabGUID(771873857); public static readonly PrefabGUID SpellMod_DeathKnight_LifeLeech = new PrefabGUID(1163307889); public static readonly PrefabGUID SpellMod_DeathKnight_MaxHealth = new PrefabGUID(655278112); public static readonly PrefabGUID SpellMod_DeathKnight_SkeletonMageOnDeath = new PrefabGUID(391324937); public static readonly PrefabGUID SpellMod_DeathKnight_SkeletonMageOnLifetimeEnded = new PrefabGUID(-750244242); public static readonly PrefabGUID SpellMod_DeathKnight_SnareEnemiesOnSummon = new PrefabGUID(1830138631); public static readonly PrefabGUID SpellMod_DefaultCurve = new PrefabGUID(2105087445); public static readonly PrefabGUID SpellMod_Discharge_BonusDamage = new PrefabGUID(171817139); public static readonly PrefabGUID SpellMod_Discharge_Immaterial = new PrefabGUID(-2071143392); public static readonly PrefabGUID SpellMod_Discharge_IncreaseStormShieldDuration = new PrefabGUID(-511085637); public static readonly PrefabGUID SpellMod_Discharge_IncreaseStunDuration = new PrefabGUID(98803150); public static readonly PrefabGUID SpellMod_Discharge_RecastDetonate = new PrefabGUID(1158616225); public static readonly PrefabGUID SpellMod_Discharge_SpellLeech = new PrefabGUID(1113225149); public static readonly PrefabGUID SpellMod_FrostBarrier_BonusDamage = new PrefabGUID(-178978862); public static readonly PrefabGUID SpellMod_FrostBarrier_BonusSpellPowerOnAbsorb = new PrefabGUID(-581148490); public static readonly PrefabGUID SpellMod_FrostBarrier_ConsumeAttackReduceCooldownXTimes = new PrefabGUID(631373543); public static readonly PrefabGUID SpellMod_FrostBarrier_KnockbackOnRecast = new PrefabGUID(1944125102); public static readonly PrefabGUID SpellMod_FrostBarrier_ShieldOnFrostyRecast = new PrefabGUID(536126279); public static readonly PrefabGUID SpellMod_FrostBat_AreaDamage = new PrefabGUID(1644464649); public static readonly PrefabGUID SpellMod_FrostBat_BonusDamageToFrosty = new PrefabGUID(440375591); public static readonly PrefabGUID SpellMod_FrostCone_BonusDamage = new PrefabGUID(287381106); public static readonly PrefabGUID SpellMod_FrostCone_BonusSpeed = new PrefabGUID(1362931942); public static readonly PrefabGUID SpellMod_FrostCone_FrostWave = new PrefabGUID(-1578113529); public static readonly PrefabGUID SpellMod_FrostCone_IncreaseFreeze = new PrefabGUID(-1829520054); public static readonly PrefabGUID SpellMod_FrostCone_KnockbackOnEnd = new PrefabGUID(1471056038); public static readonly PrefabGUID SpellMod_FrostCone_Leech = new PrefabGUID(-539833003); public static readonly PrefabGUID SpellMod_FrostCone_Shield = new PrefabGUID(1476790178); public static readonly PrefabGUID SpellMod_GreatSword_GreatCleaver_ChaosDamage = new PrefabGUID(305929028); public static readonly PrefabGUID SpellMod_GreatSword_LeapAttack_Aftershock = new PrefabGUID(2047998866); public static readonly PrefabGUID SpellMod_IceNova_ApplyShield = new PrefabGUID(-1070941840); public static readonly PrefabGUID SpellMod_IceNova_BonusDamageToFrosty = new PrefabGUID(-1916056946); public static readonly PrefabGUID SpellMod_IceNova_IncreaseRadius = new PrefabGUID(-1570661806); public static readonly PrefabGUID SpellMod_IceNova_RecastLesserNova = new PrefabGUID(1934366532); public static readonly PrefabGUID SpellMod_LightningTendrils_BonusDamage = new PrefabGUID(723250184); public static readonly PrefabGUID SpellMod_LightningTendrils_BonusProjectile = new PrefabGUID(1576597957); public static readonly PrefabGUID SpellMod_LightningTendrils_ChainLightning = new PrefabGUID(-1680074607); public static readonly PrefabGUID SpellMod_LightningTendrils_SpeedChanneling = new PrefabGUID(-402953124); public static readonly PrefabGUID SpellMod_LightningTendrils_StunOnHit = new PrefabGUID(1488885094); public static readonly PrefabGUID SpellMod_LightningWall_ApplyShield = new PrefabGUID(1780108774); public static readonly PrefabGUID SpellMod_LightningWall_BonusDamage = new PrefabGUID(-928750139); public static readonly PrefabGUID SpellMod_LightningWall_ConsumeProjectileWeaponCharge = new PrefabGUID(-635781998); public static readonly PrefabGUID SpellMod_LightningWall_FadingSnare = new PrefabGUID(-743834336); public static readonly PrefabGUID SpellMod_LightningWall_IncreaseMovementSpeed = new PrefabGUID(-2109940363); public static readonly PrefabGUID SpellMod_Longbow_GuidedArrow_FirstHit = new PrefabGUID(734427846); public static readonly PrefabGUID SpellMod_Longbow_Multishot_Focus = new PrefabGUID(1352089265); public static readonly PrefabGUID SpellMod_Mace_CrushingBlow_Shatter = new PrefabGUID(-1103044109); public static readonly PrefabGUID SpellMod_Mace_Smack_Freeze = new PrefabGUID(1066839075); public static readonly PrefabGUID SpellMod_MIstTrance_DamageOnAttack = new PrefabGUID(-845453001); public static readonly PrefabGUID SpellMod_MistTrance_FearOnTrigger = new PrefabGUID(1301174222); public static readonly PrefabGUID SpellMod_MistTrance_HasteOnTrigger = new PrefabGUID(-415768376); public static readonly PrefabGUID SpellMod_MistTrance_PhantasmOnTrigger = new PrefabGUID(1891772829); public static readonly PrefabGUID SpellMod_MistTrance_ReduceSecondaryWeaponCD = new PrefabGUID(1552774208); public static readonly PrefabGUID SpellMod_Mosquito_BonusDamage = new PrefabGUID(-529803606); public static readonly PrefabGUID SpellMod_Mosquito_BonusFearDuration = new PrefabGUID(1212582123); public static readonly PrefabGUID SpellMod_Mosquito_BonusHealthAndSpeed = new PrefabGUID(-1928057811); public static readonly PrefabGUID SpellMod_Mosquito_ShieldOnSpawn = new PrefabGUID(-1673859267); public static readonly PrefabGUID SpellMod_Mosquito_WispsOnDestroy = new PrefabGUID(-1087850059); public static readonly PrefabGUID SpellMod_PhantomAegis_ConsumeShieldAndPullAlly = new PrefabGUID(928811526); public static readonly PrefabGUID SpellMod_PhantomAegis_ConsumeWeakenIntoFear = new PrefabGUID(-2088123746); public static readonly PrefabGUID SpellMod_PhantomAegis_ExplodeOnDestroy = new PrefabGUID(-1904117138); public static readonly PrefabGUID SpellMod_PhantomAegis_IncreaseLifetime = new PrefabGUID(804206378); public static readonly PrefabGUID SpellMod_PhantomAegis_IncreaseSpellPower = new PrefabGUID(1484898935); public static readonly PrefabGUID SpellMod_Pistols_ExplosiveShot_DoubleBarrel = new PrefabGUID(1658350517); public static readonly PrefabGUID SpellMod_Pistols_FanTheHammer_Move = new PrefabGUID(1311781547); public static readonly PrefabGUID SpellMod_PowerSurge_AttackSpeed = new PrefabGUID(23473943); public static readonly PrefabGUID SpellMod_PowerSurge_EmpowerPhysical = new PrefabGUID(10430423); public static readonly PrefabGUID SpellMod_PowerSurge_Haste = new PrefabGUID(-1414823595); public static readonly PrefabGUID SpellMod_PowerSurge_IncreaseDurationOnKill = new PrefabGUID(1749175755); public static readonly PrefabGUID SpellMod_PowerSurge_Lifetime = new PrefabGUID(-842072895); public static readonly PrefabGUID SpellMod_PowerSurge_RecastDestonate = new PrefabGUID(2062624895); public static readonly PrefabGUID SpellMod_PowerSurge_Shield = new PrefabGUID(-581430582); public static readonly PrefabGUID SpellMod_RainOfChaos_BonusMeteor = new PrefabGUID(-33694441); public static readonly PrefabGUID SpellMod_RainOfChaos_BurnArea = new PrefabGUID(956784340); public static readonly PrefabGUID SpellMod_RainOfChaos_MegaMeteor = new PrefabGUID(-305171830); public static readonly PrefabGUID SpellMod_Reaper_HowlingReaper_SpawnSkeleton = new PrefabGUID(1523741236); public static readonly PrefabGUID SpellMod_Reaper_HowlingReaper_VeilResetCD = new PrefabGUID(1426874591); public static readonly PrefabGUID SpellMod_Reaper_TendonSwing_Consume = new PrefabGUID(-1160585374); public static readonly PrefabGUID SpellMod_SanguineCoil_AddBounces = new PrefabGUID(459492812); public static readonly PrefabGUID SpellMod_SanguineCoil_BonusDamage = new PrefabGUID(786676751); public static readonly PrefabGUID SpellMod_SanguineCoil_BonusHealing = new PrefabGUID(515468772); public static readonly PrefabGUID SpellMod_SanguineCoil_BonusLifeLeech = new PrefabGUID(-1106879810); public static readonly PrefabGUID SpellMod_SanguineCoil_KillRecharge = new PrefabGUID(-2026740129); public static readonly PrefabGUID SpellMod_SanguineCoil_LeechBonusDamage = new PrefabGUID(2115999081); public static readonly PrefabGUID SpellMod_Shadowbolt_ExplodeOnHit = new PrefabGUID(-1144993512); public static readonly PrefabGUID SpellMod_Shadowbolt_ForkOnHit = new PrefabGUID(1308571570); public static readonly PrefabGUID SpellMod_Shadowbolt_LeechBonusDamage = new PrefabGUID(411514116); public static readonly PrefabGUID SpellMod_Shadowbolt_VampiricCurse = new PrefabGUID(-218122346); public static readonly PrefabGUID SpellMod_Shared_AddCharges = new PrefabGUID(-1721922606); public static readonly PrefabGUID SpellMod_Shared_ApplyFadingSnare_Long = new PrefabGUID(1915162299); public static readonly PrefabGUID SpellMod_Shared_ApplyFadingSnare_Medium = new PrefabGUID(-1565427919); public static readonly PrefabGUID SpellMod_Shared_ApplyFadingSnare_Short = new PrefabGUID(1326058627); public static readonly PrefabGUID SpellMod_Shared_Blood_ConsumeLeechSelfHeal_Big = new PrefabGUID(585897634); public static readonly PrefabGUID SpellMod_Shared_Blood_ConsumeLeechSelfHeal_Small = new PrefabGUID(-1967214301); public static readonly PrefabGUID SpellMod_Shared_CastRate = new PrefabGUID(-111114882); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames = new PrefabGUID(2113057383); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames_OnAttack = new PrefabGUID(1702103303); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoCombustion = new PrefabGUID(-1714479986); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoCombustion_OnAttack = new PrefabGUID(-1534415419); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoHeated = new PrefabGUID(-2085767639); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoHeated_OnAttack = new PrefabGUID(1698069117); public static readonly PrefabGUID SpellMod_Shared_Cooldown_Medium = new PrefabGUID(1439297485); public static readonly PrefabGUID SpellMod_Shared_DispellDebuffs = new PrefabGUID(-47350874); public static readonly PrefabGUID SpellMod_Shared_DispellDebuffs_Self = new PrefabGUID(-696735285); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze = new PrefabGUID(1152422729); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze_Nova = new PrefabGUID(-36383536); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze_OnAttack = new PrefabGUID(-292495274); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze_Recast = new PrefabGUID(774570130); public static readonly PrefabGUID SpellMod_Shared_Frost_IncreaseFreezeWhenChill = new PrefabGUID(-311910625); public static readonly PrefabGUID SpellMod_Shared_Frost_ShieldOnFrosty = new PrefabGUID(950989548); public static readonly PrefabGUID SpellMod_Shared_Frost_SplinterNovaOnFrosty = new PrefabGUID(-2047023759); public static readonly PrefabGUID SpellMod_Shared_FrostWeapon = new PrefabGUID(1222918506); public static readonly PrefabGUID SpellMod_Shared_Illusion_ConsumeWeakenReduceCooldown = new PrefabGUID(-304492703); public static readonly PrefabGUID SpellMod_Shared_Illusion_ConsumeWeakenShield_Counter = new PrefabGUID(-1449937438); public static readonly PrefabGUID SpellMod_Shared_Illusion_ConsumeWeakenSpawnWisp = new PrefabGUID(1531499726); public static readonly PrefabGUID SpellMod_Shared_Illusion_WeakenShield = new PrefabGUID(1610681142); public static readonly PrefabGUID SpellMod_Shared_Illusion_WeakenShield_OnAttack = new PrefabGUID(-450361030); public static readonly PrefabGUID SpellMod_Shared_IncreaseArea_Normal = new PrefabGUID(-2054206667); public static readonly PrefabGUID SpellMod_Shared_IncreaseMoveSpeedDuringChannel_High = new PrefabGUID(291310353); public static readonly PrefabGUID SpellMod_Shared_IncreaseMoveSpeedDuringChannel_Low = new PrefabGUID(1930502023); public static readonly PrefabGUID SpellMod_Shared_KnockbackOnHit_Light = new PrefabGUID(-628722771); public static readonly PrefabGUID SpellMod_Shared_KnockbackOnHit_Medium = new PrefabGUID(-1967899075); public static readonly PrefabGUID SpellMod_Shared_MovementSpeed_Normal = new PrefabGUID(-491408666); public static readonly PrefabGUID SpellMod_Shared_Projectile_IncreaseRange_Medium = new PrefabGUID(-1772665607); public static readonly PrefabGUID SpellMod_Shared_Projectile_IncreaseVelocity_Medium = new PrefabGUID(1098753243); public static readonly PrefabGUID SpellMod_Shared_Projectile_RangeAndVelocity = new PrefabGUID(-2009288107); public static readonly PrefabGUID SpellMod_Shared_Storm_ConsumeStaticIntoStun = new PrefabGUID(1215957974); public static readonly PrefabGUID SpellMod_Shared_Storm_ConsumeStaticIntoStun_Explode = new PrefabGUID(292333199); public static readonly PrefabGUID SpellMod_Shared_Storm_ConsumeStaticIntoWeaponCharge = new PrefabGUID(946721895); public static readonly PrefabGUID SpellMod_Shared_Storm_GrantWeaponCharge = new PrefabGUID(-1202845465); public static readonly PrefabGUID SpellMod_Shared_TargetAoE_IncreaseRange_Medium = new PrefabGUID(681802645); public static readonly PrefabGUID SpellMod_Shared_TravelBuff_IncreaseRange_Medium = new PrefabGUID(-1274845133); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyAgony = new PrefabGUID(-1111601927); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyAgony_OnAttack = new PrefabGUID(-1103091347); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyBane = new PrefabGUID(602003155); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyBane_OnAttack = new PrefabGUID(-331245931); public static readonly PrefabGUID SpellMod_Shared_Unholy_SkeletonBomb = new PrefabGUID(715404066); public static readonly PrefabGUID SpellMod_Shared_Veil_BonusDamageOnPrimary = new PrefabGUID(255266111); public static readonly PrefabGUID SpellMod_Shared_Veil_BuffAndIllusionDuration = new PrefabGUID(-1430581265); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Blood = new PrefabGUID(-393121490); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Chaos = new PrefabGUID(-803412822); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Frost = new PrefabGUID(-143254053); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Illusion = new PrefabGUID(1924953980); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Storm = new PrefabGUID(-409118621); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Unholy = new PrefabGUID(2128100437); public static readonly PrefabGUID SpellMod_Slashers_Camouflage_BonusDamage = new PrefabGUID(975988820); public static readonly PrefabGUID SpellMod_Slashers_Camouflage_Main_Speed = new PrefabGUID(770026876); public static readonly PrefabGUID SpellMod_Slashers_Camouflage_Rupture = new PrefabGUID(1550976453); public static readonly PrefabGUID SpellMod_Slashers_ElusiveStrike_BloodFountain = new PrefabGUID(1095611673); public static readonly PrefabGUID SpellMod_Slashers_ElusiveStrike_TripleDash = new PrefabGUID(-1228842551); public static readonly PrefabGUID SpellMod_Soulburn_BonusDamage = new PrefabGUID(-1096014124); public static readonly PrefabGUID SpellMod_Soulburn_BonusLifeDrain = new PrefabGUID(1670819844); public static readonly PrefabGUID SpellMod_Soulburn_ConsumeSkeletonEmpower = new PrefabGUID(-249390913); public static readonly PrefabGUID SpellMod_Soulburn_ConsumeSkeletonHeal = new PrefabGUID(15549217); public static readonly PrefabGUID SpellMod_Soulburn_IncreasedSilenceDuration = new PrefabGUID(219517192); public static readonly PrefabGUID SpellMod_Soulburn_IncreaseTriggerCount = new PrefabGUID(-770033390); public static readonly PrefabGUID SpellMod_Soulburn_ReduceCooldownOnSilence = new PrefabGUID(1871790882); public static readonly PrefabGUID SpellMod_Soulburn_Shield = new PrefabGUID(-700379423); public static readonly PrefabGUID SpellMod_Soulburn_SpawnSkeleton = new PrefabGUID(1195000360); public static readonly PrefabGUID SpellMod_Spear_AThousandSpears_BallLightning = new PrefabGUID(-471217599); public static readonly PrefabGUID SpellMod_Spear_Harpoon_DragSelf = new PrefabGUID(2065538060); public static readonly PrefabGUID SpellMod_SpectralWolf_AddBounces = new PrefabGUID(1499233761); public static readonly PrefabGUID SpellMod_SpectralWolf_DecreaseBounceDamageReduction = new PrefabGUID(-389780147); public static readonly PrefabGUID SpellMod_SpectralWolf_FirstBounceInflictFadingSnare = new PrefabGUID(-1224808007); public static readonly PrefabGUID SpellMod_SpectralWolf_ReturnToOwner = new PrefabGUID(424876885); public static readonly PrefabGUID SpellMod_SpectralWolf_WeakenApplyXPhantasm = new PrefabGUID(-191364711); public static readonly PrefabGUID SpellMod_Storm_PolarityShift_AreaImpactDestination = new PrefabGUID(958439837); public static readonly PrefabGUID SpellMod_Storm_PolarityShift_AreaImpactOrigin = new PrefabGUID(578859494); public static readonly PrefabGUID SpellMod_Sword_Shockwave_ReduceWhirlwindCDOnHit = new PrefabGUID(224337721); public static readonly PrefabGUID SpellMod_Sword_Whirlwind_ResetDurationOnKill = new PrefabGUID(-1020791769); public static readonly PrefabGUID SpellMod_TwinBlades_Javelin_Freeze = new PrefabGUID(1754381439); public static readonly PrefabGUID SpellMod_TwinBlades_SweepingStrike_DamageToFrost = new PrefabGUID(-802983036); public static readonly PrefabGUID SpellMod_VampiricCurse_Amplify = new PrefabGUID(-1334050748); public static readonly PrefabGUID SpellMod_VampiricCurse_BonusLeech = new PrefabGUID(-236968097); public static readonly PrefabGUID SpellMod_VampiricCurse_ExplodeOnHit = new PrefabGUID(-1033753337); public static readonly PrefabGUID SpellMod_VampiricCurse_Slow = new PrefabGUID(1024644257); public static readonly PrefabGUID SpellMod_VeilOfBlood_AttackInflictFadingSnare = new PrefabGUID(626026650); public static readonly PrefabGUID SpellMod_VeilOfBlood_BloodNova = new PrefabGUID(1886596801); public static readonly PrefabGUID SpellMod_VeilOfBlood_BloodNovaArea = new PrefabGUID(1884623864); public static readonly PrefabGUID SpellMod_VeilOfBlood_DashInflictLeech = new PrefabGUID(1855739816); public static readonly PrefabGUID SpellMod_VeilOfBlood_Empower = new PrefabGUID(156877668); public static readonly PrefabGUID SpellMod_VeilOfBlood_SelfHealing = new PrefabGUID(1384658374); public static readonly PrefabGUID SpellMod_VeilOfBones_BonusDamageBelowTreshhold = new PrefabGUID(-319638993); public static readonly PrefabGUID SpellMod_VeilOfBones_DashHealMinions = new PrefabGUID(-394612778); public static readonly PrefabGUID SpellMod_VeilOfBones_DashInflictCondemn = new PrefabGUID(-1776361271); public static readonly PrefabGUID SpellMod_VeilOfBones_SkeletonBomb = new PrefabGUID(1795974165); public static readonly PrefabGUID SpellMod_VeilOfBones_SpawnSkeleton = new PrefabGUID(-2075676460); public static readonly PrefabGUID SpellMod_VeilOfBones_SpawnSkeletonMage = new PrefabGUID(952126692); public static readonly PrefabGUID SpellMod_VeilOfChaos_ApplySnareOnExplode = new PrefabGUID(2000559018); public static readonly PrefabGUID SpellMod_VeilOfChaos_BonusDamageOnExplode = new PrefabGUID(-593156502); public static readonly PrefabGUID SpellMod_VeilOfChaos_BonusIllusion = new PrefabGUID(-812464660); public static readonly PrefabGUID SpellMod_VeilOfFrost_BonusDamage = new PrefabGUID(-18291527); public static readonly PrefabGUID SpellMod_VeilOfFrost_FrostNova = new PrefabGUID(1126070097); public static readonly PrefabGUID SpellMod_VeilOfFrost_IllusionFrostBlast = new PrefabGUID(-1378154439); public static readonly PrefabGUID SpellMod_VeilOfFrost_ShieldBonus = new PrefabGUID(620700670); public static readonly PrefabGUID SpellMod_VeilOfIllusion_AttackInflictFadingSnare = new PrefabGUID(2138408718); public static readonly PrefabGUID SpellMod_VeilOfIllusion_IllusionFireProjectiles = new PrefabGUID(-1087841111); public static readonly PrefabGUID SpellMod_VeilOfIllusion_IllusionProjectileDamage = new PrefabGUID(557219983); public static readonly PrefabGUID SpellMod_VeilOfIllusion_PhantasmOnHit = new PrefabGUID(1016557168); public static readonly PrefabGUID SpellMod_VeilOfIllusion_RecastDetonate = new PrefabGUID(-1743623080); public static readonly PrefabGUID SpellMod_VeilOfStorm_AttackInflictFadingSnare = new PrefabGUID(-387102419); public static readonly PrefabGUID SpellMod_VeilOfStorm_DashInflictStatic = new PrefabGUID(-115293432); public static readonly PrefabGUID SpellMod_VeilOfStorm_RecastIllusionDash = new PrefabGUID(1799076972); public static readonly PrefabGUID SpellMod_VeilOfStorm_SparklingIllusion = new PrefabGUID(1221500964); public static readonly PrefabGUID SpellMod_WardOfTheDamned_BonusDamageOnRecast = new PrefabGUID(-1729725919); public static readonly PrefabGUID SpellMod_WardOfTheDamned_DamageMeleeAttackers = new PrefabGUID(1998410228); public static readonly PrefabGUID SpellMod_WardOfTheDamned_EmpowerSkeletonsOnRecast = new PrefabGUID(761541981); public static readonly PrefabGUID SpellMod_WardOfTheDamned_HealOnAbsorbProjectile = new PrefabGUID(-649562549); public static readonly PrefabGUID SpellMod_WardOfTheDamned_KnockbackOnRecast = new PrefabGUID(909721987); public static readonly PrefabGUID SpellMod_WardOfTheDamned_MightSpawnMageSkeleton = new PrefabGUID(-2133606415); public static readonly PrefabGUID SpellMod_WardOfTheDamned_ShieldSkeletonsOnRecast = new PrefabGUID(-1840862497); public static readonly PrefabGUID SpellMod_Weapon_BloodInfused = new PrefabGUID(-634479113); public static readonly PrefabGUID SpellMod_Weapon_ChaosInfused = new PrefabGUID(-1102157891); public static readonly PrefabGUID SpellMod_Weapon_FrostInfused = new PrefabGUID(-1538516012); public static readonly PrefabGUID SpellMod_Weapon_IllusionInfused = new PrefabGUID(-1957977808); public static readonly PrefabGUID SpellMod_Weapon_StormInfused = new PrefabGUID(-1099263242); public static readonly PrefabGUID SpellMod_Weapon_UndeadInfused = new PrefabGUID(-766734228); public static readonly PrefabGUID SpellMod_Whip_Dash_FlameWhip = new PrefabGUID(-942513246); public static readonly PrefabGUID SpellMod_Whip_Entangle_FlameWhip = new PrefabGUID(-28667500); public static readonly PrefabGUID SpellMod_WraithSpear_BonusDamage = new PrefabGUID(-1653068805); public static readonly PrefabGUID SpellMod_WraithSpear_ReducedDamageReduction = new PrefabGUID(-233951066); public static readonly PrefabGUID SpellMod_WraithSpear_ShieldAlly = new PrefabGUID(-1538705520); public static readonly PrefabGUID SpellPassive_Blood_T01_BloodSpray = new PrefabGUID(-1027845865); public static readonly PrefabGUID SpellPassive_Blood_T02_BloodTypeEfficiency = new PrefabGUID(-441009092); public static readonly PrefabGUID SpellPassive_Blood_T03_VBloodSlayer = new PrefabGUID(896859617); public static readonly PrefabGUID SpellPassive_Blood_T04_Rampage = new PrefabGUID(596456522); public static readonly PrefabGUID SpellPassive_Chaos_T01_ChaosKindling = new PrefabGUID(1088642354); public static readonly PrefabGUID SpellPassive_Chaos_T02_RenewingFlames = new PrefabGUID(2088195977); public static readonly PrefabGUID SpellPassive_Chaos_T03_Overpower = new PrefabGUID(1250779598); public static readonly PrefabGUID SpellPassive_Chaos_T04_RavenousStrikes = new PrefabGUID(-1251152602); public static readonly PrefabGUID SpellPassive_Frost_T01_ColdSoul = new PrefabGUID(1855867703); public static readonly PrefabGUID SpellPassive_Frost_T02_ChillWeave = new PrefabGUID(-492383335); public static readonly PrefabGUID SpellPassive_Frost_T03_Bastion = new PrefabGUID(1023033912); public static readonly PrefabGUID SpellPassive_Frost_T04_DarkEnchantment = new PrefabGUID(1865004925); public static readonly PrefabGUID SpellPassive_Illusion_T01_SpiritualInfusion = new PrefabGUID(-204224143); public static readonly PrefabGUID SpellPassive_Illusion_T02_FlowingSorcery = new PrefabGUID(-1979168975); public static readonly PrefabGUID SpellPassive_Illusion_T03_FeralHaste = new PrefabGUID(-2136476823); public static readonly PrefabGUID SpellPassive_Illusion_T04_WickedPower = new PrefabGUID(21458851); public static readonly PrefabGUID SpellPassive_Storm_T01_LightningFastStrikes = new PrefabGUID(-1042692472); public static readonly PrefabGUID SpellPassive_Storm_T02_EnhancedConductivity = new PrefabGUID(-395364978); public static readonly PrefabGUID SpellPassive_Storm_T03_HungerForPower = new PrefabGUID(594395982); public static readonly PrefabGUID SpellPassive_Storm_T04_TurbulentVelocity = new PrefabGUID(-1148833103); public static readonly PrefabGUID SpellPassive_Unholy_T01_ArcaneAnimator = new PrefabGUID(-539962543); public static readonly PrefabGUID SpellPassive_Unholy_T02_SoulDrinker = new PrefabGUID(-1612317745); public static readonly PrefabGUID SpellPassive_Unholy_T03_LethalStrikes = new PrefabGUID(-2124258403); public static readonly PrefabGUID SpellPassive_Unholy_T04_EmbraceMayhem = new PrefabGUID(422612021); public static readonly PrefabGUID Spider_Queen_VBlood_Emote_OnAggro_Buff = new PrefabGUID(585358044); public static readonly PrefabGUID SpiderTank_Zapper_HeavyProjectileCurve = new PrefabGUID(-539144352); public static readonly PrefabGUID SpiderTankScrap01_Broken = new PrefabGUID(-1491988914); public static readonly PrefabGUID SpiderTankScrap01_Growing_Broken = new PrefabGUID(-235808734); public static readonly PrefabGUID SpiderTankScrap02_Broken = new PrefabGUID(-227993692); public static readonly PrefabGUID SpiderTankScrap02_Growing_Broken = new PrefabGUID(-2020176430); public static readonly PrefabGUID SpiderTankScrap03_Broken = new PrefabGUID(1699935899); public static readonly PrefabGUID SpiderTankScrap03_Growing_Broken = new PrefabGUID(-899607691); public static readonly PrefabGUID Stable01WallpaperBuildMenuGroup = new PrefabGUID(-1549349956); public static readonly PrefabGUID Stable02WallpaperBuildMenuGroup = new PrefabGUID(1868524555); public static readonly PrefabGUID StablesPerk_Athletics = new PrefabGUID(538052140); public static readonly PrefabGUID StablesPerk_Base = new PrefabGUID(1602989945); public static readonly PrefabGUID StablesPerk_DemountProtection = new PrefabGUID(1447490736); public static readonly PrefabGUID StablesPerk_NPCInvisibility = new PrefabGUID(-1055295487); public static readonly PrefabGUID StablesPerk_Severance = new PrefabGUID(587673163); public static readonly PrefabGUID StablesPerk_Thrust = new PrefabGUID(-860970951); public static readonly PrefabGUID StairsBuildMenuCCWGroup = new PrefabGUID(-898414953); public static readonly PrefabGUID StairsBuildMenuCWGroup = new PrefabGUID(1234946809); public static readonly PrefabGUID StairsBuildMenuGroup = new PrefabGUID(1644560853); public static readonly PrefabGUID StairsWideBuildMenuGroup = new PrefabGUID(-356886481); public static readonly PrefabGUID StartGraveyardExitWaypoint = new PrefabGUID(-1705688562); public static readonly PrefabGUID Stash_Alchemy_BuildMenuGroup = new PrefabGUID(1947207681); public static readonly PrefabGUID Stash_Armor_BuildMenuGroup = new PrefabGUID(1674083567); public static readonly PrefabGUID Stash_BloodPotion_BuildMenuGroup = new PrefabGUID(-1235156482); public static readonly PrefabGUID Stash_Coins_BuildMenuGroup = new PrefabGUID(-10142565); public static readonly PrefabGUID Stash_Consumables_BuildMenuGroup = new PrefabGUID(-503398133); public static readonly PrefabGUID Stash_Fish_BuildMenuGroup = new PrefabGUID(-1738594904); public static readonly PrefabGUID Stash_Gems_BuildMenuGroup = new PrefabGUID(-1658383476); public static readonly PrefabGUID Stash_Herbs_BuildMenuGroup = new PrefabGUID(-1927367771); public static readonly PrefabGUID Stash_Jewels_BuildMenuGroup = new PrefabGUID(-1346859888); public static readonly PrefabGUID Stash_Knowledge_BuildMenuGroup = new PrefabGUID(-1234459791); public static readonly PrefabGUID Stash_Minerals_BuildMenuGroup = new PrefabGUID(-1591920392); public static readonly PrefabGUID Stash_ShardPedestal_BuildMenuGroup = new PrefabGUID(1738253630); public static readonly PrefabGUID Stash_SoulShards_BuildMenuGroup = new PrefabGUID(842209218); public static readonly PrefabGUID Stash_Tailoring_BuildMenuGroup = new PrefabGUID(28844335); public static readonly PrefabGUID Stash_Weapons_BuildMenuGroup = new PrefabGUID(673536256); public static readonly PrefabGUID Stash_Woodworking_BuildMenuGroup = new PrefabGUID(-482144407); public static readonly PrefabGUID StashBuildMenuGroup = new PrefabGUID(773961284); public static readonly PrefabGUID StationBonus_Prison_BloodEssence_Power = new PrefabGUID(-1550842326); public static readonly PrefabGUID StationBonus_Prison_MatchingFloor = new PrefabGUID(1792532014); public static readonly PrefabGUID StationBonus_Refinementstation_1_ConfinedRoom = new PrefabGUID(538725667); public static readonly PrefabGUID StationBonus_Refinementstation_2_MatchingFloor = new PrefabGUID(19937529); public static readonly PrefabGUID StationBonus_Refinementstation_3_Servant = new PrefabGUID(390109582); public static readonly PrefabGUID StationBonus_Refinementstation_4_BloodEssence_Power = new PrefabGUID(587452849); public static readonly PrefabGUID StationBonus_Refinementstation_5_BloodEssence_TimeModifier = new PrefabGUID(-766586367); public static readonly PrefabGUID StationBonus_Refinementstation_6_ConfinedRoom_Big = new PrefabGUID(1561598423); public static readonly PrefabGUID StationBonus_Refinementstation_7_ConfinedRoom_SharedInventory = new PrefabGUID(-1322083259); public static readonly PrefabGUID StationBonus_Research_1_ConfinedRoom = new PrefabGUID(-1143076987); public static readonly PrefabGUID StationBonus_Research_2_MatchingFloor = new PrefabGUID(-1273877682); public static readonly PrefabGUID StationBonus_Research_4_BloodEssence_Power = new PrefabGUID(-1528697074); public static readonly PrefabGUID StationBonus_Research_5_BloodEssence_TimeModifier = new PrefabGUID(-518983852); public static readonly PrefabGUID StationBonus_Salvagestation_1_ConfinedRoom = new PrefabGUID(-610002994); public static readonly PrefabGUID StationBonus_Salvagestation_2_MatchingFloor = new PrefabGUID(-1341018638); public static readonly PrefabGUID StationBonus_Salvagestation_4_BloodEssence_Power = new PrefabGUID(596857655); public static readonly PrefabGUID StationBonus_ServantCoffin_1_MatchingFloor = new PrefabGUID(-1542442059); public static readonly PrefabGUID StationBonus_Stash_1_ConfinedRoom_SharedInventory = new PrefabGUID(646815477); public static readonly PrefabGUID StationBonus_Workstation_1_ConfinedRoom = new PrefabGUID(-559914291); public static readonly PrefabGUID StationBonus_Workstation_2_MatchingFloor = new PrefabGUID(2138932807); public static readonly PrefabGUID StationBonus_Workstation_3_Servant = new PrefabGUID(-1663322960); public static readonly PrefabGUID StationBonus_Workstation_4_BloodEssence_Power = new PrefabGUID(-1264959599); public static readonly PrefabGUID StationBonus_Workstation_5_BloodEssence_TimeModifier = new PrefabGUID(-1641834739); public static readonly PrefabGUID StatMod_AttackSpeed = new PrefabGUID(-542568600); public static readonly PrefabGUID StatMod_CriticalStrikePhysical = new PrefabGUID(-184681371); public static readonly PrefabGUID StatMod_CriticalStrikePhysicalPower = new PrefabGUID(-1480767601); public static readonly PrefabGUID StatMod_CriticalStrikeSpellPower = new PrefabGUID(-1157374165); public static readonly PrefabGUID StatMod_CriticalStrikeSpells = new PrefabGUID(193642528); public static readonly PrefabGUID StatMod_DamageReduction = new PrefabGUID(303731846); public static readonly PrefabGUID StatMod_HealthRegen = new PrefabGUID(-1644092685); public static readonly PrefabGUID StatMod_MaxHealth = new PrefabGUID(1915954443); public static readonly PrefabGUID StatMod_MovementSpeed = new PrefabGUID(-285192213); public static readonly PrefabGUID StatMod_PhysicalPower = new PrefabGUID(-1917650844); public static readonly PrefabGUID StatMod_ResourceYield = new PrefabGUID(-1276596814); public static readonly PrefabGUID StatMod_SpellCooldownReduction = new PrefabGUID(-1639076208); public static readonly PrefabGUID StatMod_SpellLeech = new PrefabGUID(-427223401); public static readonly PrefabGUID StatMod_SpellPower = new PrefabGUID(1705753146); public static readonly PrefabGUID StatMod_TravelCooldownReduction = new PrefabGUID(703010343); public static readonly PrefabGUID StatMod_Unique_AttackSpeed_High = new PrefabGUID(-1545133628); public static readonly PrefabGUID StatMod_Unique_AttackSpeed_Mid = new PrefabGUID(1448170922); public static readonly PrefabGUID StatMod_Unique_BloodEfficiency_High = new PrefabGUID(-1700712765); public static readonly PrefabGUID StatMod_Unique_BonusPhysicalPower_Mid = new PrefabGUID(523084427); public static readonly PrefabGUID StatMod_Unique_BonusSpellPower_Mid = new PrefabGUID(1179205309); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysical_Low = new PrefabGUID(-1274939577); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysical_Mid = new PrefabGUID(1032018140); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysicalPower_Low = new PrefabGUID(-2004879548); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysicalPower_Mid = new PrefabGUID(539854831); public static readonly PrefabGUID StatMod_Unique_CriticalStrikeSpell_Low = new PrefabGUID(-269007548); public static readonly PrefabGUID StatMod_Unique_CriticalStrikeSpell_Mid = new PrefabGUID(-1466424600); public static readonly PrefabGUID StatMod_Unique_CriticalStrikeSpellPower_Mid = new PrefabGUID(1842448780); public static readonly PrefabGUID StatMod_Unique_DamageReduction_Low = new PrefabGUID(-1282352396); public static readonly PrefabGUID StatMod_Unique_DamageToDemons_Mid = new PrefabGUID(369266120); public static readonly PrefabGUID StatMod_Unique_MaxHealth_High = new PrefabGUID(1732724221); public static readonly PrefabGUID StatMod_Unique_MaxHealth_Mid = new PrefabGUID(1410628524); public static readonly PrefabGUID StatMod_Unique_MovementSpeed_Mid = new PrefabGUID(-1088278970); public static readonly PrefabGUID StatMod_Unique_PlayerResist_Mid = new PrefabGUID(-20933838); public static readonly PrefabGUID StatMod_Unique_SpellCooldown_High = new PrefabGUID(-394348256); public static readonly PrefabGUID StatMod_Unique_SpellCooldown_Mid = new PrefabGUID(-1171110486); public static readonly PrefabGUID StatMod_Unique_VampireDamage_High = new PrefabGUID(-1659606994); public static readonly PrefabGUID StatMod_Unique_VampireDamage_Mid = new PrefabGUID(530283515); public static readonly PrefabGUID StatMod_Unique_WeaponCooldown_Mid = new PrefabGUID(29688024); public static readonly PrefabGUID StatMod_Unique_WeaponLeech_Mid = new PrefabGUID(1996994528); public static readonly PrefabGUID StatMod_WeaponCooldownReduction = new PrefabGUID(-1122907647); public static readonly PrefabGUID StatMod_WeaponSkillPower = new PrefabGUID(1683818955); public static readonly PrefabGUID Statue_02_Shattered = new PrefabGUID(-342991758); public static readonly PrefabGUID Statue_07_Shattered = new PrefabGUID(1817524993); public static readonly PrefabGUID Statue_11_Shattered = new PrefabGUID(-540164461); public static readonly PrefabGUID Statue_13_Shattered = new PrefabGUID(-204722750); public static readonly PrefabGUID Statue_22_Shattered = new PrefabGUID(-115542485); public static readonly PrefabGUID StoneCoffinBuildMenuGroup = new PrefabGUID(2144088157); public static readonly PrefabGUID StoneWallpaperBuildMenuGroup = new PrefabGUID(-249919151); public static readonly PrefabGUID Storm_Vampire_Buff_Static = new PrefabGUID(-1576512627); public static readonly PrefabGUID Storm_Vampire_Buff_Static_Stun = new PrefabGUID(-1590232453); public static readonly PrefabGUID Storm_Vampire_Buff_Static_WeaponCharge = new PrefabGUID(665288451); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning = new PrefabGUID(1076663023); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_AreaCheck = new PrefabGUID(-2101801592); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_HitBuff = new PrefabGUID(-543256675); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_Target_01 = new PrefabGUID(-704926422); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_Target_02 = new PrefabGUID(-1963704797); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_Target_03 = new PrefabGUID(-837878143); public static readonly PrefabGUID Storm_Windbolt_AirHeightCurve = new PrefabGUID(-1181048596); public static readonly PrefabGUID StormSpellSchoolAsset = new PrefabGUID(-829934972); public static readonly PrefabGUID StrongbladeDLC_PoolsBuildMenuGroup = new PrefabGUID(700649584); public static readonly PrefabGUID StrongbladeDLC_SeatingBuildMenuGroup = new PrefabGUID(-1272030379); public static readonly PrefabGUID StrongbladeDLC_StatuesBuildMenuGroup = new PrefabGUID(1622119866); public static readonly PrefabGUID Styx_AirDrop_X_Curve = new PrefabGUID(-169185670); public static readonly PrefabGUID Styx_AirDrop_Y_Curve = new PrefabGUID(1445792877); public static readonly PrefabGUID SulfurNode01_Broken = new PrefabGUID(-1990720752); public static readonly PrefabGUID SulfurNode01_Broken_Small = new PrefabGUID(-364714325); public static readonly PrefabGUID SulfurNode02_Broken = new PrefabGUID(912452523); public static readonly PrefabGUID SulfurNode02_Broken_Small = new PrefabGUID(-1018886947); public static readonly PrefabGUID SulfurNode03_Broken = new PrefabGUID(-169624846); public static readonly PrefabGUID SulfurNode03_Broken_Small = new PrefabGUID(-896346948); public static readonly PrefabGUID SulfurNodeBig01_Broken = new PrefabGUID(465015265); public static readonly PrefabGUID SulfurNodeMedium01_Broken = new PrefabGUID(-1226826158); public static readonly PrefabGUID SUMMON_Forest_Wolf = new PrefabGUID(-2110724275); public static readonly PrefabGUID SummonCastle_TileModelPlacementRules = new PrefabGUID(-1168096405); public static readonly PrefabGUID SunDamageDebuff = new PrefabGUID(-1315531444); public static readonly PrefabGUID SunFullScreenBuildUpCurve = new PrefabGUID(795834085); public static readonly PrefabGUID SunInitFlash = new PrefabGUID(-245738049); public static readonly PrefabGUID SunRayAlpha = new PrefabGUID(-1286274685); public static readonly PrefabGUID SunRayColor = new PrefabGUID(-1568885694); public static readonly PrefabGUID SunRayColorBlue = new PrefabGUID(-1953241118); public static readonly PrefabGUID SunRayColorGreen = new PrefabGUID(-1310890254); public static readonly PrefabGUID SunRayColorRed = new PrefabGUID(-617668592); public static readonly PrefabGUID SunRayEmber = new PrefabGUID(-809681720); public static readonly PrefabGUID SunRayScale = new PrefabGUID(929522326); public static readonly PrefabGUID SunRayScale_v2 = new PrefabGUID(241792091); public static readonly PrefabGUID SunRaySmoke = new PrefabGUID(1706898129); public static readonly PrefabGUID TailorFloorBuildMenuGroup = new PrefabGUID(28852821); public static readonly PrefabGUID TargetDummyBuildMenuGroup = new PrefabGUID(-1590776918); public static readonly PrefabGUID Tech_Ability_CommandingForm = new PrefabGUID(-1301155150); public static readonly PrefabGUID Tech_Ability_PsychicForm = new PrefabGUID(-647200166); public static readonly PrefabGUID Tech_Armor_Boots_T04_Brute = new PrefabGUID(676266407); public static readonly PrefabGUID Tech_Armor_Boots_T04_Rogue = new PrefabGUID(2120172621); public static readonly PrefabGUID Tech_Armor_Boots_T04_Scholar = new PrefabGUID(1906599762); public static readonly PrefabGUID Tech_Armor_Boots_T04_Warrior = new PrefabGUID(1879028083); public static readonly PrefabGUID Tech_Armor_Boots_T06_Brute = new PrefabGUID(-867568357); public static readonly PrefabGUID Tech_Armor_Boots_T06_Rogue = new PrefabGUID(399247086); public static readonly PrefabGUID Tech_Armor_Boots_T06_Scholar = new PrefabGUID(-2051781325); public static readonly PrefabGUID Tech_Armor_Boots_T06_Warrior = new PrefabGUID(-2023969604); public static readonly PrefabGUID Tech_Armor_Boots_T08_Brute = new PrefabGUID(1941997114); public static readonly PrefabGUID Tech_Armor_Boots_T08_Rogue = new PrefabGUID(-592100304); public static readonly PrefabGUID Tech_Armor_Boots_T08_Scholar = new PrefabGUID(-1816818535); public static readonly PrefabGUID Tech_Armor_Boots_T08_Warrior = new PrefabGUID(1673193738); public static readonly PrefabGUID Tech_Armor_Chest_T04_Brute = new PrefabGUID(-178432582); public static readonly PrefabGUID Tech_Armor_Chest_T04_Rogue = new PrefabGUID(1868487918); public static readonly PrefabGUID Tech_Armor_Chest_T04_Scholar = new PrefabGUID(755372402); public static readonly PrefabGUID Tech_Armor_Chest_T04_Warrior = new PrefabGUID(657926195); public static readonly PrefabGUID Tech_Armor_Chest_T06_Brute = new PrefabGUID(320958383); public static readonly PrefabGUID Tech_Armor_Chest_T06_Rogue = new PrefabGUID(-962794065); public static readonly PrefabGUID Tech_Armor_Chest_T06_Scholar = new PrefabGUID(1291904224); public static readonly PrefabGUID Tech_Armor_Chest_T06_Warrior = new PrefabGUID(-1191678823); public static readonly PrefabGUID Tech_Armor_Chest_T08_Brute = new PrefabGUID(750468260); public static readonly PrefabGUID Tech_Armor_Chest_T08_Rogue = new PrefabGUID(-1170753047); public static readonly PrefabGUID Tech_Armor_Chest_T08_Scholar = new PrefabGUID(1188570352); public static readonly PrefabGUID Tech_Armor_Chest_T08_Warrior = new PrefabGUID(-1435202677); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Brute = new PrefabGUID(935228271); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Rogue = new PrefabGUID(1577296935); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Scholar = new PrefabGUID(-1611749320); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Warrior = new PrefabGUID(2125292818); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Brute = new PrefabGUID(1232232420); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Rogue = new PrefabGUID(-1831064302); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Scholar = new PrefabGUID(-2034432336); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Warrior = new PrefabGUID(-215891793); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Brute = new PrefabGUID(-371547835); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Rogue = new PrefabGUID(693752504); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Scholar = new PrefabGUID(-2038786647); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Warrior = new PrefabGUID(-1696823248); public static readonly PrefabGUID Tech_Armor_Legs_T04_Brute = new PrefabGUID(352798374); public static readonly PrefabGUID Tech_Armor_Legs_T04_Rogue = new PrefabGUID(-366570135); public static readonly PrefabGUID Tech_Armor_Legs_T04_Scholar = new PrefabGUID(-1510681319); public static readonly PrefabGUID Tech_Armor_Legs_T04_Warrior = new PrefabGUID(-466068499); public static readonly PrefabGUID Tech_Armor_Legs_T06_Brute = new PrefabGUID(754248969); public static readonly PrefabGUID Tech_Armor_Legs_T06_Rogue = new PrefabGUID(1811127257); public static readonly PrefabGUID Tech_Armor_Legs_T06_Scholar = new PrefabGUID(-1857837378); public static readonly PrefabGUID Tech_Armor_Legs_T06_Warrior = new PrefabGUID(-1866364260); public static readonly PrefabGUID Tech_Armor_Legs_T08_Brute = new PrefabGUID(-996734096); public static readonly PrefabGUID Tech_Armor_Legs_T08_Rogue = new PrefabGUID(419994007); public static readonly PrefabGUID Tech_Armor_Legs_T08_Scholar = new PrefabGUID(1190578873); public static readonly PrefabGUID Tech_Armor_Legs_T08_Warrior = new PrefabGUID(1738492884); public static readonly PrefabGUID Tech_Collection_Armor_T01_BoneAll = new PrefabGUID(-347160774); public static readonly PrefabGUID Tech_Collection_Armor_T01_BoneLower = new PrefabGUID(376701344); public static readonly PrefabGUID Tech_Collection_Armor_T01_BoneUpper_Salve = new PrefabGUID(-1657036518); public static readonly PrefabGUID Tech_Collection_ArtisansCorner = new PrefabGUID(2022418671); public static readonly PrefabGUID Tech_Collection_BloodTracking = new PrefabGUID(1396665832); public static readonly PrefabGUID Tech_Collection_Brazier_01 = new PrefabGUID(1789166952); public static readonly PrefabGUID Tech_Collection_Braziers02 = new PrefabGUID(1928348865); public static readonly PrefabGUID Tech_Collection_Braziers03 = new PrefabGUID(-1841292034); public static readonly PrefabGUID Tech_Collection_BustStatues_Vampire = new PrefabGUID(-1045980026); public static readonly PrefabGUID Tech_Collection_Candles_T02 = new PrefabGUID(1982396745); public static readonly PrefabGUID Tech_Collection_CandleStands_T01 = new PrefabGUID(-1032220214); public static readonly PrefabGUID Tech_Collection_CandleStands_T02 = new PrefabGUID(1186146964); public static readonly PrefabGUID Tech_Collection_Carpet_Ostenstatious = new PrefabGUID(377882346); public static readonly PrefabGUID Tech_Collection_Carpet_Stately = new PrefabGUID(-1363487077); public static readonly PrefabGUID Tech_Collection_Carpet_T01 = new PrefabGUID(971588976); public static readonly PrefabGUID Tech_Collection_Carpet_T02 = new PrefabGUID(-59044434); public static readonly PrefabGUID Tech_Collection_Carpet_T03 = new PrefabGUID(-166104992); public static readonly PrefabGUID Tech_Collection_Castle_Paintings = new PrefabGUID(698575581); public static readonly PrefabGUID Tech_Collection_Castle_Windows_T01 = new PrefabGUID(-1270150309); public static readonly PrefabGUID Tech_Collection_Clocks = new PrefabGUID(-1847627135); public static readonly PrefabGUID Tech_Collection_CoatOfArms = new PrefabGUID(-1637580865); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Boots = new PrefabGUID(-1000381969); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Chest = new PrefabGUID(-784761022); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Gloves = new PrefabGUID(1518908715); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Legs = new PrefabGUID(-997181076); public static readonly PrefabGUID Tech_Collection_Fence_Rural = new PrefabGUID(1194397556); public static readonly PrefabGUID Tech_Collection_Fence_Verdant = new PrefabGUID(-4950312); public static readonly PrefabGUID Tech_Collection_FenceFountain_Noble_T02 = new PrefabGUID(-1776617088); public static readonly PrefabGUID Tech_Collection_Fireplaces = new PrefabGUID(-820554605); public static readonly PrefabGUID Tech_Collection_FlyingCandles_T03 = new PrefabGUID(1863270378); public static readonly PrefabGUID Tech_Collection_Fountain_T03 = new PrefabGUID(-1296064423); public static readonly PrefabGUID Tech_Collection_Framework_CastleHeart = new PrefabGUID(-1377692981); public static readonly PrefabGUID Tech_Collection_Framework_Gargoyles_and_DLC = new PrefabGUID(-2118176472); public static readonly PrefabGUID Tech_Collection_Framework_T01_Wood_Foundation = new PrefabGUID(-219528846); public static readonly PrefabGUID Tech_Collection_Framework_T01_Wood_Structures = new PrefabGUID(-1010843571); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone = new PrefabGUID(1908774048); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_Dracula = new PrefabGUID(-447888984); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_Gloomrot = new PrefabGUID(-1485413430); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_ProjectK = new PrefabGUID(763319653); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_Strongblade = new PrefabGUID(-2146477131); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_Halloween2022 = new PrefabGUID(-729522822); public static readonly PrefabGUID Tech_Collection_FrayedDecor = new PrefabGUID(524373519); public static readonly PrefabGUID Tech_Collection_Furniture_Chairs_T02 = new PrefabGUID(-1393827852); public static readonly PrefabGUID Tech_Collection_Furniture_Desk_Chairs_T02 = new PrefabGUID(-398123938); public static readonly PrefabGUID Tech_Collection_Furniture_Desks_T02 = new PrefabGUID(-1949258784); public static readonly PrefabGUID Tech_Collection_Furniture_DressingTables_T03 = new PrefabGUID(-1708158238); public static readonly PrefabGUID Tech_Collection_Furniture_Simple_T01 = new PrefabGUID(1549360318); public static readonly PrefabGUID Tech_Collection_Furniture_Sofas_T03 = new PrefabGUID(1333706297); public static readonly PrefabGUID Tech_Collection_Furniture_Tables_T02 = new PrefabGUID(1970685025); public static readonly PrefabGUID Tech_Collection_Garden_Furniture_Lanterns_T02 = new PrefabGUID(-547241268); public static readonly PrefabGUID Tech_Collection_Garden_Hedges_T02 = new PrefabGUID(1158190765); public static readonly PrefabGUID Tech_Collection_Garden_PlantersDecor_T01 = new PrefabGUID(-3886426); public static readonly PrefabGUID Tech_Collection_Garden_PlantersDecor_T02 = new PrefabGUID(1643488994); public static readonly PrefabGUID Tech_Collection_Garden_PlantersDecor_T03 = new PrefabGUID(303243522); public static readonly PrefabGUID Tech_Collection_HangingLanterns_T02 = new PrefabGUID(-986883360); public static readonly PrefabGUID Tech_Collection_Light_GardenLampPosts_T03 = new PrefabGUID(-732367543); public static readonly PrefabGUID Tech_Collection_Mirrors = new PrefabGUID(437493175); public static readonly PrefabGUID Tech_Collection_Mirrors_Halloween2022 = new PrefabGUID(153177445); public static readonly PrefabGUID Tech_Collection_Ornaments_Banners_T02 = new PrefabGUID(2134771043); public static readonly PrefabGUID Tech_Collection_Ornaments_Stone_T01 = new PrefabGUID(498212120); public static readonly PrefabGUID Tech_Collection_Outdoor_Floors = new PrefabGUID(1426681031); public static readonly PrefabGUID Tech_Collection_Pavement_Cobblestone = new PrefabGUID(1029462093); public static readonly PrefabGUID Tech_Collection_Pavement_Dirt = new PrefabGUID(2080238877); public static readonly PrefabGUID Tech_Collection_Salve = new PrefabGUID(-1279942095); public static readonly PrefabGUID Tech_Collection_Stables_Furnishing = new PrefabGUID(2128476081); public static readonly PrefabGUID Tech_Collection_Statues_Vampire = new PrefabGUID(192335890); public static readonly PrefabGUID Tech_Collection_Structures_T01 = new PrefabGUID(-998624122); public static readonly PrefabGUID Tech_Collection_Vases01 = new PrefabGUID(1449355366); public static readonly PrefabGUID Tech_Collection_VBlood_ArenaDecorations = new PrefabGUID(959981888); public static readonly PrefabGUID Tech_Collection_VBlood_CrystalLamp = new PrefabGUID(1120119195); public static readonly PrefabGUID Tech_Collection_VBlood_JewelsT04 = new PrefabGUID(514472877); public static readonly PrefabGUID Tech_Collection_VBlood_T02_AlphaWolf = new PrefabGUID(-1031733757); public static readonly PrefabGUID Tech_Collection_VBlood_T02_Keely_Armor = new PrefabGUID(537293692); public static readonly PrefabGUID Tech_Collection_VBlood_T02_KeelyFrostArrow = new PrefabGUID(792292662); public static readonly PrefabGUID Tech_Collection_VBlood_T02_KeelyFrostArrow_Canteen = new PrefabGUID(1500994622); public static readonly PrefabGUID Tech_Collection_VBlood_T02_LidiaChaosArrow = new PrefabGUID(873587326); public static readonly PrefabGUID Tech_Collection_VBlood_T02_LidiaChaosArrow_Longbow = new PrefabGUID(-272307342); public static readonly PrefabGUID Tech_Collection_VBlood_T02_RufusForeman = new PrefabGUID(-1375294270); public static readonly PrefabGUID Tech_Collection_VBlood_T02_RufusForeman_Crossbow = new PrefabGUID(1080245850); public static readonly PrefabGUID Tech_Collection_VBlood_T02_StoneBreaker = new PrefabGUID(-1230635663); public static readonly PrefabGUID Tech_Collection_VBlood_T02_StoneBreaker_CopperWeapons = new PrefabGUID(-681604451); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Fisherman = new PrefabGUID(-1955769660); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Goreswine = new PrefabGUID(503108272); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Goreswine_MagicSource = new PrefabGUID(-934771037); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Goreswine_Units = new PrefabGUID(1226331752); public static readonly PrefabGUID Tech_Collection_VBlood_T03_GoreswineFence = new PrefabGUID(-1852229711); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Grayson = new PrefabGUID(-819263071); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Grayson_Floors = new PrefabGUID(613260763); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Grayson_TargetDummies = new PrefabGUID(-1484059874); public static readonly PrefabGUID Tech_Collection_VBlood_T03_PutridRat = new PrefabGUID(-482440851); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Ball_Cosmetic = new PrefabGUID(-1140095741); public static readonly PrefabGUID Tech_Collection_VBlood_T04_CliveTheFirestarter = new PrefabGUID(1165734787); public static readonly PrefabGUID Tech_Collection_VBlood_T04_FrostGuard = new PrefabGUID(627388312); public static readonly PrefabGUID Tech_Collection_VBlood_T04_FrostGuard_PrisonFramework = new PrefabGUID(1286356808); public static readonly PrefabGUID Tech_Collection_VBlood_T04_NicholausTheFallen = new PrefabGUID(656825307); public static readonly PrefabGUID Tech_Collection_VBlood_T04_NicholausTheFallen_MagicSource = new PrefabGUID(189289255); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Poloma = new PrefabGUID(-1138769053); public static readonly PrefabGUID Tech_Collection_VBlood_T04_PolomaGardenFloors = new PrefabGUID(196684992); public static readonly PrefabGUID Tech_Collection_VBlood_T04_PolomaPlantersExterior = new PrefabGUID(35536792); public static readonly PrefabGUID Tech_Collection_VBlood_T04_PolomaPlantersInterior = new PrefabGUID(6233001); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey = new PrefabGUID(798280158); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey_CottonArmor = new PrefabGUID(981172472); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey_Decoration = new PrefabGUID(-1204804925); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey_IronWeapons = new PrefabGUID(1452185822); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Tailor = new PrefabGUID(1748243393); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Tailor_Curtains = new PrefabGUID(-1291119657); public static readonly PrefabGUID Tech_Collection_VBlood_T04_VampireHunter = new PrefabGUID(1812666586); public static readonly PrefabGUID Tech_Collection_VBlood_T04_VampireHunter_GreatSword = new PrefabGUID(2076894288); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Wendigo = new PrefabGUID(43505638); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Wendigo_Claws = new PrefabGUID(803940486); public static readonly PrefabGUID Tech_Collection_VBlood_T05_ArenaChampion = new PrefabGUID(-2144827499); public static readonly PrefabGUID Tech_Collection_VBlood_T05_ArenaChampion_TwinBlades = new PrefabGUID(1469248266); public static readonly PrefabGUID Tech_Collection_VBlood_T05_BishopOfShadow = new PrefabGUID(1795449585); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Fabian = new PrefabGUID(-1659396939); public static readonly PrefabGUID Tech_Collection_VBlood_T05_FerociousBear = new PrefabGUID(1481816999); public static readonly PrefabGUID Tech_Collection_VBlood_T05_FerociousBear_Rugs = new PrefabGUID(-979296135); public static readonly PrefabGUID Tech_Collection_VBlood_T05_GlassBlower = new PrefabGUID(836932829); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Golem = new PrefabGUID(292267578); public static readonly PrefabGUID Tech_Collection_VBlood_T05_GolemGems = new PrefabGUID(-1074691879); public static readonly PrefabGUID Tech_Collection_VBlood_T05_GolemObsidian = new PrefabGUID(-318857592); public static readonly PrefabGUID Tech_Collection_VBlood_T05_HolyNun = new PrefabGUID(1509833074); public static readonly PrefabGUID Tech_Collection_VBlood_T05_IceRanger = new PrefabGUID(-1286478056); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Infiltrator = new PrefabGUID(1499385606); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Infiltrator_Daggers = new PrefabGUID(1521034384); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Meredith = new PrefabGUID(-124171135); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Scribe = new PrefabGUID(1096972300); public static readonly PrefabGUID Tech_Collection_VBlood_T05_UndeadLeader = new PrefabGUID(684401761); public static readonly PrefabGUID Tech_Collection_VBlood_T05_UndeadLeader_Bells = new PrefabGUID(-1062774694); public static readonly PrefabGUID Tech_Collection_VBlood_T05_UndeadLeader_Reaper = new PrefabGUID(-1631949089); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Armor_Silk = new PrefabGUID(574648849); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Castleman = new PrefabGUID(963388509); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Castleman_SanguineWhip = new PrefabGUID(499979034); public static readonly PrefabGUID Tech_Collection_VBlood_T06_CursedWanderer = new PrefabGUID(-608704270); public static readonly PrefabGUID Tech_Collection_VBlood_T06_HeadlessHorseman = new PrefabGUID(1993827563); public static readonly PrefabGUID Tech_Collection_VBlood_T06_HighLord = new PrefabGUID(2003830913); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Iva = new PrefabGUID(-1168862239); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Jade = new PrefabGUID(-1809787416); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Jade_Pistols = new PrefabGUID(-1329550886); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander = new PrefabGUID(-1747434949); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander_GreatSword = new PrefabGUID(1430937326); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander_Weapons = new PrefabGUID(252901819); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander_WideGate = new PrefabGUID(2053355293); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Purifier = new PrefabGUID(-794945828); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Purifier_Gruel = new PrefabGUID(-513542593); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel = new PrefabGUID(177893377); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel_Armor = new PrefabGUID(1383473060); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel_Decoration = new PrefabGUID(961368319); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel_MagicSource = new PrefabGUID(1008496220); public static readonly PrefabGUID Tech_Collection_VBlood_T06_SpiderQueen = new PrefabGUID(693361325); public static readonly PrefabGUID Tech_Collection_VBlood_T06_ToadKing = new PrefabGUID(1846992402); public static readonly PrefabGUID Tech_Collection_VBlood_T06_ToadKing_Coins = new PrefabGUID(-837551957); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Voltage = new PrefabGUID(228678537); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Voltage_Teleporters = new PrefabGUID(902743573); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Werewolf = new PrefabGUID(-330347291); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Whip = new PrefabGUID(142799020); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Yeti = new PrefabGUID(-1435750586); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Archmage = new PrefabGUID(26064539); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Archmage_JewelsT03 = new PrefabGUID(-942401074); public static readonly PrefabGUID Tech_Collection_VBlood_T07_CardinalPriest = new PrefabGUID(1270259509); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Carver = new PrefabGUID(1092543000); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Carver_Coating = new PrefabGUID(-1318816407); public static readonly PrefabGUID Tech_Collection_VBlood_T07_CursedSmith = new PrefabGUID(-1633289177); public static readonly PrefabGUID Tech_Collection_VBlood_T07_CursedSmith_MagicSource = new PrefabGUID(-778842690); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Gerard = new PrefabGUID(701618642); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Harpy = new PrefabGUID(56158045); public static readonly PrefabGUID Tech_Collection_VBlood_T07_HarpyGems = new PrefabGUID(-477566763); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Livith = new PrefabGUID(1851932061); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Livith_Slashers = new PrefabGUID(1262310143); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Lucie = new PrefabGUID(-1642797098); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Lucie_Elixirs = new PrefabGUID(-367655643); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Overseer = new PrefabGUID(-1652178969); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Professor = new PrefabGUID(-1199699442); public static readonly PrefabGUID Tech_Collection_VBlood_T07_RailgunSergeant = new PrefabGUID(-1166562965); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Sommelier = new PrefabGUID(2086705669); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Sommelier_Bloodwine = new PrefabGUID(-797717364); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Sommelier_MagicSource = new PrefabGUID(134700304); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Valyr = new PrefabGUID(-1224541374); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Witch = new PrefabGUID(739063686); public static readonly PrefabGUID Tech_Collection_VBlood_T07_ZealousCultist = new PrefabGUID(-242619336); public static readonly PrefabGUID Tech_Collection_VBlood_T08_BatVampire = new PrefabGUID(644170529); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Behemoth = new PrefabGUID(-2059047777); public static readonly PrefabGUID Tech_Collection_VBlood_T08_BloodKnight = new PrefabGUID(90328407); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Dracula = new PrefabGUID(956657660); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Manticore = new PrefabGUID(28013331); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Monster = new PrefabGUID(-1579828449); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Morgana = new PrefabGUID(-1902462638); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Paladin = new PrefabGUID(-1627795309); public static readonly PrefabGUID Tech_Collection_WallHangingMirrors_T02 = new PrefabGUID(-505308287); public static readonly PrefabGUID Tech_Collection_WallHangingShelves_T02 = new PrefabGUID(1738542265); public static readonly PrefabGUID Tech_Collection_Wallpapers_Bricks01 = new PrefabGUID(-1471943197); public static readonly PrefabGUID Tech_Collection_Wallpapers_Classical01 = new PrefabGUID(1405536938); public static readonly PrefabGUID Tech_Collection_Wallpapers_Cordial01 = new PrefabGUID(-1047045523); public static readonly PrefabGUID Tech_Collection_Wallpapers_Imperious01 = new PrefabGUID(302835542); public static readonly PrefabGUID Tech_Collection_Wallpapers_Prison01 = new PrefabGUID(1345992385); public static readonly PrefabGUID Tech_Collection_Wallpapers_Stone01 = new PrefabGUID(2087478902); public static readonly PrefabGUID Tech_Collection_Wallpapers_WoodPanel01 = new PrefabGUID(649753246); public static readonly PrefabGUID Tech_Collection_Waypoint = new PrefabGUID(-1380817858); public static readonly PrefabGUID Tech_Collection_Workshop_Decoration = new PrefabGUID(-1212695091); public static readonly PrefabGUID Tech_Consumable_FireResistance_Canteen_T01 = new PrefabGUID(844019492); public static readonly PrefabGUID Tech_Consumable_GarlicResistance_GlassBottle_T02 = new PrefabGUID(1329925559); public static readonly PrefabGUID Tech_Consumable_PhysicalBrew_Canteen_T01 = new PrefabGUID(-537813334); public static readonly PrefabGUID Tech_Consumable_PhysicalBrew_Potion_T03 = new PrefabGUID(-11827994); public static readonly PrefabGUID Tech_Consumable_RoseHealing_Canteen_T01 = new PrefabGUID(70753269); public static readonly PrefabGUID Tech_Consumable_SilverBrew_Canteen_T01 = new PrefabGUID(-845792723); public static readonly PrefabGUID Tech_Consumable_SpellBrew_Canteen_T01 = new PrefabGUID(1934754319); public static readonly PrefabGUID Tech_Consumable_SpellBrew_Potion_T03 = new PrefabGUID(-446090633); public static readonly PrefabGUID Tech_Consumable_SunResistance_Canteen_T01 = new PrefabGUID(-680166074); public static readonly PrefabGUID Tech_Consumable_WranglersTea_GlassBottle_T01 = new PrefabGUID(-1805160530); public static readonly PrefabGUID Tech_Curtains_T03_Royal = new PrefabGUID(638346506); public static readonly PrefabGUID Tech_Floor_AlchemyLab = new PrefabGUID(-55882446); public static readonly PrefabGUID Tech_Floor_Crypt = new PrefabGUID(308890669); public static readonly PrefabGUID Tech_Floor_Forge = new PrefabGUID(-508159781); public static readonly PrefabGUID Tech_Floor_Jewelcrafting = new PrefabGUID(414215710); public static readonly PrefabGUID Tech_Floor_Library = new PrefabGUID(-1851035383); public static readonly PrefabGUID Tech_Floor_Prison = new PrefabGUID(-876687572); public static readonly PrefabGUID Tech_Floor_Tailor = new PrefabGUID(-49029138); public static readonly PrefabGUID Tech_Floor_Treasury = new PrefabGUID(833988507); public static readonly PrefabGUID Tech_LiquidStatiom_Water_Well01 = new PrefabGUID(-554785122); public static readonly PrefabGUID Tech_MagicSource_General_T01_BoneRing = new PrefabGUID(-1261543603); public static readonly PrefabGUID Tech_MagicSource_General_T04_Duskwatcher = new PrefabGUID(-939673215); public static readonly PrefabGUID Tech_MagicSource_General_T04_EmberChain = new PrefabGUID(688580986); public static readonly PrefabGUID Tech_MagicSource_General_T04_FrozenEye = new PrefabGUID(-1183635267); public static readonly PrefabGUID Tech_MagicSource_General_T04_KnightRing = new PrefabGUID(596593772); public static readonly PrefabGUID Tech_MagicSource_General_T04_MistSignet = new PrefabGUID(-987554233); public static readonly PrefabGUID Tech_MagicSource_General_T04_SorcererRing = new PrefabGUID(-1597622418); public static readonly PrefabGUID Tech_MagicSource_General_T06_AmethystPendant = new PrefabGUID(2120978146); public static readonly PrefabGUID Tech_MagicSource_General_T06_EmeraldNecklace = new PrefabGUID(-2004423580); public static readonly PrefabGUID Tech_MagicSource_General_T06_MistStoneNecklace = new PrefabGUID(-678626936); public static readonly PrefabGUID Tech_MagicSource_General_T06_RubyPendant = new PrefabGUID(75174829); public static readonly PrefabGUID Tech_MagicSource_General_T06_SapphirePendant = new PrefabGUID(2105959904); public static readonly PrefabGUID Tech_MagicSource_General_T06_TopazAmulet = new PrefabGUID(1266173480); public static readonly PrefabGUID Tech_MagicSource_General_T08_Beast = new PrefabGUID(2057306510); public static readonly PrefabGUID Tech_MagicSource_General_T08_CrimsonSky = new PrefabGUID(-1976191252); public static readonly PrefabGUID Tech_MagicSource_General_T08_Delusion = new PrefabGUID(1827501900); public static readonly PrefabGUID Tech_MagicSource_General_T08_FrozenCrypt = new PrefabGUID(-1618357223); public static readonly PrefabGUID Tech_MagicSource_General_T08_Madness = new PrefabGUID(438329698); public static readonly PrefabGUID Tech_MagicSource_General_T08_WickedProphet = new PrefabGUID(1018971284); public static readonly PrefabGUID Tech_SpellPassive_Blood_T01_BloodSpray = new PrefabGUID(-1435275335); public static readonly PrefabGUID Tech_SpellPassive_Blood_T02_BloodTypeEfficiency = new PrefabGUID(-1672153699); public static readonly PrefabGUID Tech_SpellPassive_Blood_T03_VBloodSlayer = new PrefabGUID(-798456253); public static readonly PrefabGUID Tech_SpellPassive_Blood_T04_Rampage = new PrefabGUID(1425732083); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T01_ChaosKindling = new PrefabGUID(1843485926); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T02_RenewingFlames = new PrefabGUID(-1267731653); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T03_Overpower = new PrefabGUID(2009766737); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T04_RavenousStrikes = new PrefabGUID(1027528474); public static readonly PrefabGUID Tech_SpellPassive_Frost_T01_ColdSoul = new PrefabGUID(-1243503477); public static readonly PrefabGUID Tech_SpellPassive_Frost_T02_ChillWeave = new PrefabGUID(-634698501); public static readonly PrefabGUID Tech_SpellPassive_Frost_T03_Bastion = new PrefabGUID(167793585); public static readonly PrefabGUID Tech_SpellPassive_Frost_T04_DarkEnchantment = new PrefabGUID(-476299746); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T01_SpiritualInfusion = new PrefabGUID(443034615); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T02_FlowingSorcery = new PrefabGUID(1166977128); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T03_FeralHaste = new PrefabGUID(87181825); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T04_WickedPower = new PrefabGUID(839015128); public static readonly PrefabGUID Tech_SpellPassive_Storm_T01_LightningFastStrikes = new PrefabGUID(216926005); public static readonly PrefabGUID Tech_SpellPassive_Storm_T02_EnhancedConductivity = new PrefabGUID(-421268939); public static readonly PrefabGUID Tech_SpellPassive_Storm_T03_HungerForPower = new PrefabGUID(416186705); public static readonly PrefabGUID Tech_SpellPassive_Storm_T04_TurbulentVelocity = new PrefabGUID(-6320984); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T01_ArcaneAnimator = new PrefabGUID(-759918389); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T02_SoulDrinker = new PrefabGUID(1841694629); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T03_LethalStrikes = new PrefabGUID(1930313893); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T04_EmbraceMayhem = new PrefabGUID(550246163); public static readonly PrefabGUID Tech_Storage_Alchemy_T02 = new PrefabGUID(1517382260); public static readonly PrefabGUID Tech_Storage_Alchemy_T03 = new PrefabGUID(1625843968); public static readonly PrefabGUID Tech_Storage_Armor_T02 = new PrefabGUID(1081189242); public static readonly PrefabGUID Tech_Storage_Blood_T02 = new PrefabGUID(977509050); public static readonly PrefabGUID Tech_Storage_Blood_T03 = new PrefabGUID(1047288877); public static readonly PrefabGUID Tech_Storage_Coins_T02 = new PrefabGUID(1415500586); public static readonly PrefabGUID Tech_Storage_Consumable_T02 = new PrefabGUID(-799314882); public static readonly PrefabGUID Tech_Storage_Consumable_T03 = new PrefabGUID(-895778945); public static readonly PrefabGUID Tech_Storage_Fish_T02 = new PrefabGUID(1464078715); public static readonly PrefabGUID Tech_Storage_Gems_T01 = new PrefabGUID(283418827); public static readonly PrefabGUID Tech_Storage_Gems_T02 = new PrefabGUID(1546021583); public static readonly PrefabGUID Tech_Storage_Herbs_T01 = new PrefabGUID(1919678927); public static readonly PrefabGUID Tech_Storage_Herbs_T02 = new PrefabGUID(-1430391301); public static readonly PrefabGUID Tech_Storage_Jewels_T02 = new PrefabGUID(1839251968); public static readonly PrefabGUID Tech_Storage_Knowledge_T02 = new PrefabGUID(-1233545962); public static readonly PrefabGUID Tech_Storage_Knowledge_T03 = new PrefabGUID(-1309377338); public static readonly PrefabGUID Tech_Storage_Minerals_T01 = new PrefabGUID(503660474); public static readonly PrefabGUID Tech_Storage_Minerals_T02 = new PrefabGUID(659306848); public static readonly PrefabGUID Tech_Storage_Pack_Equipment_T02 = new PrefabGUID(-1605857820); public static readonly PrefabGUID Tech_Storage_Pack_T01_A = new PrefabGUID(134968992); public static readonly PrefabGUID Tech_Storage_Pack_T01_B = new PrefabGUID(-1700135018); public static readonly PrefabGUID Tech_Storage_Pack_T02 = new PrefabGUID(-612322185); public static readonly PrefabGUID Tech_Storage_T01 = new PrefabGUID(-1065914013); public static readonly PrefabGUID Tech_Storage_T02 = new PrefabGUID(2081297006); public static readonly PrefabGUID Tech_Storage_T03 = new PrefabGUID(-527623056); public static readonly PrefabGUID Tech_Storage_Tailoring_T02 = new PrefabGUID(-1208628879); public static readonly PrefabGUID Tech_Storage_Tailoring_T03 = new PrefabGUID(1648033500); public static readonly PrefabGUID Tech_Storage_Weapons_T02 = new PrefabGUID(-917955046); public static readonly PrefabGUID Tech_Storage_Woodworking_T01 = new PrefabGUID(-1972974567); public static readonly PrefabGUID Tech_Storage_Woodworking_T02 = new PrefabGUID(1090765974); public static readonly PrefabGUID Tech_Weapon_Axe_T04 = new PrefabGUID(-632708133); public static readonly PrefabGUID Tech_Weapon_Axe_T06 = new PrefabGUID(-2012042353); public static readonly PrefabGUID Tech_Weapon_Axe_T08 = new PrefabGUID(1895745785); public static readonly PrefabGUID Tech_Weapon_Claws_T06 = new PrefabGUID(1738256866); public static readonly PrefabGUID Tech_Weapon_Claws_T08 = new PrefabGUID(574338808); public static readonly PrefabGUID Tech_Weapon_Crossbow_T04 = new PrefabGUID(-997169234); public static readonly PrefabGUID Tech_Weapon_Crossbow_T06 = new PrefabGUID(1000023879); public static readonly PrefabGUID Tech_Weapon_Crossbow_T08 = new PrefabGUID(-1333600826); public static readonly PrefabGUID Tech_Weapon_Daggers_T06 = new PrefabGUID(-1688466299); public static readonly PrefabGUID Tech_Weapon_Daggers_T08 = new PrefabGUID(867896907); public static readonly PrefabGUID Tech_Weapon_GreatSword_T06 = new PrefabGUID(175562220); public static readonly PrefabGUID Tech_Weapon_GreatSword_T08 = new PrefabGUID(-976123885); public static readonly PrefabGUID Tech_Weapon_Longbow_T04 = new PrefabGUID(-212104516); public static readonly PrefabGUID Tech_Weapon_Longbow_T06 = new PrefabGUID(-1988689265); public static readonly PrefabGUID Tech_Weapon_Longbow_T08 = new PrefabGUID(-396858635); public static readonly PrefabGUID Tech_Weapon_Mace_T04 = new PrefabGUID(507915220); public static readonly PrefabGUID Tech_Weapon_Mace_T06 = new PrefabGUID(-437562995); public static readonly PrefabGUID Tech_Weapon_Mace_T08 = new PrefabGUID(-412324833); public static readonly PrefabGUID Tech_Weapon_Pistols_T06 = new PrefabGUID(-1341416577); public static readonly PrefabGUID Tech_Weapon_Pistols_T08 = new PrefabGUID(-1917260012); public static readonly PrefabGUID Tech_Weapon_Reaper_T04 = new PrefabGUID(-1073336085); public static readonly PrefabGUID Tech_Weapon_Reaper_T06 = new PrefabGUID(1184108243); public static readonly PrefabGUID Tech_Weapon_Reaper_T08 = new PrefabGUID(-409067814); public static readonly PrefabGUID Tech_Weapon_Slashers_T04 = new PrefabGUID(-9976124); public static readonly PrefabGUID Tech_Weapon_Slashers_T06 = new PrefabGUID(-2121238754); public static readonly PrefabGUID Tech_Weapon_Slashers_T08 = new PrefabGUID(575105000); public static readonly PrefabGUID Tech_Weapon_Spear_T04 = new PrefabGUID(-54738837); public static readonly PrefabGUID Tech_Weapon_Spear_T06 = new PrefabGUID(-1396617298); public static readonly PrefabGUID Tech_Weapon_Spear_T08 = new PrefabGUID(-759663833); public static readonly PrefabGUID Tech_Weapon_Sword_T04 = new PrefabGUID(1950052883); public static readonly PrefabGUID Tech_Weapon_Sword_T06 = new PrefabGUID(-1685075160); public static readonly PrefabGUID Tech_Weapon_Sword_T08 = new PrefabGUID(361533671); public static readonly PrefabGUID Tech_Weapon_TwinBlades_T06 = new PrefabGUID(928267897); public static readonly PrefabGUID Tech_Weapon_TwinBlades_T08 = new PrefabGUID(-711409497); public static readonly PrefabGUID Tech_Weapon_Whip_T06 = new PrefabGUID(1500666524); public static readonly PrefabGUID Tech_Weapon_Whip_T08 = new PrefabGUID(1515808838); public static readonly PrefabGUID TESTSEQ_Base = new PrefabGUID(-1440805359); public static readonly PrefabGUID TESTSEQ_Flow = new PrefabGUID(1212854027); public static readonly PrefabGUID TESTSEQ_Particle = new PrefabGUID(1705534416); public static readonly PrefabGUID TESTSEQ_Sound = new PrefabGUID(113092852); public static readonly PrefabGUID ThroneBuildMenuGroup = new PrefabGUID(998196343); public static readonly PrefabGUID Throw_DownCurve = new PrefabGUID(1783011586); public static readonly PrefabGUID Throw_UpCurve = new PrefabGUID(-2024079383); public static readonly PrefabGUID TimeScale = new PrefabGUID(-587555975); public static readonly PrefabGUID TM_AmbientLightningAttractor_Emanuel_Test = new PrefabGUID(1376997758); public static readonly PrefabGUID TM_AnimalCage_01 = new PrefabGUID(228202475); public static readonly PrefabGUID TM_AnimalCage_02 = new PrefabGUID(-1240287685); public static readonly PrefabGUID TM_AnimalCage_03 = new PrefabGUID(-750118024); public static readonly PrefabGUID TM_AnimalCage_04 = new PrefabGUID(541013972); public static readonly PrefabGUID TM_AnimalCage_05 = new PrefabGUID(262341373); public static readonly PrefabGUID TM_AnimalCage_06 = new PrefabGUID(2038475776); public static readonly PrefabGUID TM_AnimalCage_07 = new PrefabGUID(-905830677); public static readonly PrefabGUID TM_AnimalCage_Snow_01 = new PrefabGUID(-217603604); public static readonly PrefabGUID TM_AnimalCage_Snow_02 = new PrefabGUID(-172981558); public static readonly PrefabGUID TM_AnimalCage_Snow_03 = new PrefabGUID(699191772); public static readonly PrefabGUID TM_AnimalCage_Snow_04 = new PrefabGUID(1578900849); public static readonly PrefabGUID TM_AnimalCage_Snow_05 = new PrefabGUID(-518301011); public static readonly PrefabGUID TM_AnimalCage_Snow_07 = new PrefabGUID(322884697); public static readonly PrefabGUID TM_AnimalGraintank01 = new PrefabGUID(-72375828); public static readonly PrefabGUID TM_AnimalGraintank02 = new PrefabGUID(-464446338); public static readonly PrefabGUID TM_Animalpen_Gate_01 = new PrefabGUID(1382309239); public static readonly PrefabGUID TM_Animalpen_Roof_01_Broken = new PrefabGUID(1519356552); public static readonly PrefabGUID TM_AnimalWatertank01 = new PrefabGUID(-1534290131); public static readonly PrefabGUID TM_AnimalWatertank02 = new PrefabGUID(1123278633); public static readonly PrefabGUID TM_Apple_01_Stage0 = new PrefabGUID(-1857257172); public static readonly PrefabGUID TM_Apple_01_Stage0_Stump = new PrefabGUID(-1559009850); public static readonly PrefabGUID TM_Apple_01_Stage1 = new PrefabGUID(-86282561); public static readonly PrefabGUID TM_Apple_01_Stage1_Stump = new PrefabGUID(1800723537); public static readonly PrefabGUID TM_Apple_02_Stage0 = new PrefabGUID(1678440190); public static readonly PrefabGUID TM_Apple_02_Stage0_Stump = new PrefabGUID(386834462); public static readonly PrefabGUID TM_Apple_02_Stage1 = new PrefabGUID(-647217167); public static readonly PrefabGUID TM_Apple_02_Stage1_Stump = new PrefabGUID(-880503030); public static readonly PrefabGUID TM_Apple_03_Stage0 = new PrefabGUID(-1076916125); public static readonly PrefabGUID TM_Apple_03_Stage0_Stump = new PrefabGUID(-1995344215); public static readonly PrefabGUID TM_Apple_03_Stage1 = new PrefabGUID(1628390435); public static readonly PrefabGUID TM_Apple_03_Stage1_Stump = new PrefabGUID(-500148127); public static readonly PrefabGUID TM_Apple_Sapling = new PrefabGUID(302718653); public static readonly PrefabGUID TM_AppleCursed_01_Stage0 = new PrefabGUID(907959418); public static readonly PrefabGUID TM_AppleCursed_01_Stage0_Stump = new PrefabGUID(1346467425); public static readonly PrefabGUID TM_AppleCursed_01_Stage1 = new PrefabGUID(703333328); public static readonly PrefabGUID TM_AppleCursed_01_Stage1_Stump = new PrefabGUID(1701268153); public static readonly PrefabGUID TM_AppleCursed_02_Stage0 = new PrefabGUID(1257285943); public static readonly PrefabGUID TM_AppleCursed_02_Stage0_Stump = new PrefabGUID(187723581); public static readonly PrefabGUID TM_AppleCursed_02_Stage1 = new PrefabGUID(291068058); public static readonly PrefabGUID TM_AppleCursed_02_Stage1_Stump = new PrefabGUID(-1654131094); public static readonly PrefabGUID TM_AppleCursed_03_Stage0 = new PrefabGUID(1759219212); public static readonly PrefabGUID TM_AppleCursed_03_Stage0_Stump = new PrefabGUID(-58053580); public static readonly PrefabGUID TM_AppleCursed_03_Stage1 = new PrefabGUID(1857761351); public static readonly PrefabGUID TM_AppleCursed_03_Stage1_Stump = new PrefabGUID(148982032); public static readonly PrefabGUID TM_AppleCursed_Sapling = new PrefabGUID(1197321873); public static readonly PrefabGUID TM_AppleCursed_Symbol_01_Stage0 = new PrefabGUID(-269775810); public static readonly PrefabGUID TM_AppleCursed_Symbol_01_Stage1 = new PrefabGUID(-582718332); public static readonly PrefabGUID TM_AppleCursed_Symbol_02_Stage0 = new PrefabGUID(288939347); public static readonly PrefabGUID TM_AppleCursed_Symbol_02_Stage1 = new PrefabGUID(-917453069); public static readonly PrefabGUID TM_AppleCursed_Symbol_03_Stage0 = new PrefabGUID(48948979); public static readonly PrefabGUID TM_AppleCursed_Symbol_03_Stage1 = new PrefabGUID(-1313724032); public static readonly PrefabGUID TM_ArcheryTarget01 = new PrefabGUID(278181465); public static readonly PrefabGUID TM_Aspen_01_Stage0 = new PrefabGUID(1570572385); public static readonly PrefabGUID TM_Aspen_01_Stage0_Stump = new PrefabGUID(1622491911); public static readonly PrefabGUID TM_Aspen_01_Stage1 = new PrefabGUID(-658197317); public static readonly PrefabGUID TM_Aspen_01_Stage1_Stump = new PrefabGUID(1429895087); public static readonly PrefabGUID TM_Aspen_02_Stage0 = new PrefabGUID(1617854397); public static readonly PrefabGUID TM_Aspen_02_Stage0_Stump = new PrefabGUID(1472996245); public static readonly PrefabGUID TM_Aspen_02_Stage1 = new PrefabGUID(-58403509); public static readonly PrefabGUID TM_Aspen_02_Stage1_Stump = new PrefabGUID(-523429309); public static readonly PrefabGUID TM_Aspen_03_Stage0 = new PrefabGUID(-988937236); public static readonly PrefabGUID TM_Aspen_03_Stage0_Stump = new PrefabGUID(539064048); public static readonly PrefabGUID TM_Aspen_03_Stage1 = new PrefabGUID(-216529083); public static readonly PrefabGUID TM_Aspen_03_Stage1_Stump = new PrefabGUID(164476469); public static readonly PrefabGUID TM_Aspen_Sapling = new PrefabGUID(-897101629); public static readonly PrefabGUID TM_AspenAutumn_01_Stage0 = new PrefabGUID(-51839131); public static readonly PrefabGUID TM_AspenAutumn_01_Stage0_Stump = new PrefabGUID(1218306711); public static readonly PrefabGUID TM_AspenAutumn_01_Stage1 = new PrefabGUID(-760048364); public static readonly PrefabGUID TM_AspenAutumn_01_Stage1_Stump = new PrefabGUID(-1896507917); public static readonly PrefabGUID TM_AspenAutumn_02_Stage0 = new PrefabGUID(-1861388077); public static readonly PrefabGUID TM_AspenAutumn_02_Stage0_Stump = new PrefabGUID(1422066735); public static readonly PrefabGUID TM_AspenAutumn_02_Stage1 = new PrefabGUID(1965810664); public static readonly PrefabGUID TM_AspenAutumn_02_Stage1_Stump = new PrefabGUID(209245029); public static readonly PrefabGUID TM_AspenAutumn_03_Stage0 = new PrefabGUID(-1494621501); public static readonly PrefabGUID TM_AspenAutumn_03_Stage0_Stump = new PrefabGUID(-491804479); public static readonly PrefabGUID TM_AspenAutumn_03_Stage1 = new PrefabGUID(-713797222); public static readonly PrefabGUID TM_AspenAutumn_03_Stage1_Stump = new PrefabGUID(1816453786); public static readonly PrefabGUID TM_AspenAutumn_04_Stage0 = new PrefabGUID(-582326354); public static readonly PrefabGUID TM_AspenAutumn_04_Stage0_Stump = new PrefabGUID(1600146091); public static readonly PrefabGUID TM_AspenAutumn_04_Stage1 = new PrefabGUID(-1779780007); public static readonly PrefabGUID TM_AspenAutumn_04_Stage1_Stump = new PrefabGUID(1906601667); public static readonly PrefabGUID TM_AspenAutumn_05_Stage0 = new PrefabGUID(-1274836267); public static readonly PrefabGUID TM_AspenAutumn_05_Stage0_Stump = new PrefabGUID(1294189954); public static readonly PrefabGUID TM_AspenAutumn_05_Stage1 = new PrefabGUID(1034457980); public static readonly PrefabGUID TM_AspenAutumn_05_Stage1_Stump = new PrefabGUID(1562729865); public static readonly PrefabGUID TM_AspenAutumn_06_Stage0 = new PrefabGUID(1257105536); public static readonly PrefabGUID TM_AspenAutumn_06_Stage0_Stump = new PrefabGUID(1428713676); public static readonly PrefabGUID TM_AspenAutumn_06_Stage1 = new PrefabGUID(-375508545); public static readonly PrefabGUID TM_AspenAutumn_06_Stage1_Stump = new PrefabGUID(1210087409); public static readonly PrefabGUID TM_AspenAutumn_Sapling = new PrefabGUID(203804518); public static readonly PrefabGUID TM_AspenAutumn_SaplingRed = new PrefabGUID(-572207697); public static readonly PrefabGUID TM_Bandit_Banner01 = new PrefabGUID(-706722824); public static readonly PrefabGUID TM_Bandit_Barricade_01 = new PrefabGUID(1373672124); public static readonly PrefabGUID TM_Bandit_Brazier01 = new PrefabGUID(-1762567222); public static readonly PrefabGUID TM_Bandit_Palisade_GateBreakable_01 = new PrefabGUID(1201638912); public static readonly PrefabGUID TM_BanditBanner_01 = new PrefabGUID(-636647833); public static readonly PrefabGUID TM_BanditBanner_02 = new PrefabGUID(1297205479); public static readonly PrefabGUID TM_BanditFortress_Bench01 = new PrefabGUID(1961885730); public static readonly PrefabGUID TM_BanditFortress_Stairs01 = new PrefabGUID(-228899733); public static readonly PrefabGUID TM_BanditFortress_Stairs02 = new PrefabGUID(-1022691705); public static readonly PrefabGUID TM_BanditLeaderChair_01 = new PrefabGUID(-154796222); public static readonly PrefabGUID TM_BanditTailor_Hides02_Breakable = new PrefabGUID(-1013232883); public static readonly PrefabGUID TM_BanditTailor_Hides03_Breakable = new PrefabGUID(-628782203); public static readonly PrefabGUID TM_BanditTailor_Hides04_Breakable = new PrefabGUID(1646596723); public static readonly PrefabGUID TM_BanditTailor_Hides05_Breakable = new PrefabGUID(964777575); public static readonly PrefabGUID TM_BanditTailor_Hides06_Breakable = new PrefabGUID(-822754321); public static readonly PrefabGUID TM_BanditTailor_HidesBeam01 = new PrefabGUID(-190105530); public static readonly PrefabGUID TM_BanditTailor_HidesBeam02 = new PrefabGUID(2059422007); public static readonly PrefabGUID TM_BanditTailor_SkinningTable01 = new PrefabGUID(1111521813); public static readonly PrefabGUID TM_BanditTailor_SkinningTable02 = new PrefabGUID(-351258337); public static readonly PrefabGUID TM_BanditTailor_TanningRack01_Breakable = new PrefabGUID(1770969180); public static readonly PrefabGUID TM_BanditTailor_TanningRack01_Breakable_Interactable = new PrefabGUID(753072483); public static readonly PrefabGUID TM_BanditTailor_TanningRack02_Breakable = new PrefabGUID(1338655266); public static readonly PrefabGUID TM_BanditTailor_TarBucket01 = new PrefabGUID(-76392767); public static readonly PrefabGUID TM_BanditTailor_TarBucket02 = new PrefabGUID(-246720292); public static readonly PrefabGUID TM_BanditTailor_TarBucket03 = new PrefabGUID(1871845418); public static readonly PrefabGUID TM_Beech_01_Stage0 = new PrefabGUID(-914809320); public static readonly PrefabGUID TM_Beech_01_Stage0_Stump = new PrefabGUID(1953446207); public static readonly PrefabGUID TM_Beech_01_Stage1 = new PrefabGUID(107657367); public static readonly PrefabGUID TM_Beech_01_Stage1_Stump = new PrefabGUID(-1439069219); public static readonly PrefabGUID TM_Beech_02_Stage0 = new PrefabGUID(-38823758); public static readonly PrefabGUID TM_Beech_02_Stage0_Stump = new PrefabGUID(2042832508); public static readonly PrefabGUID TM_Beech_02_Stage1 = new PrefabGUID(159194383); public static readonly PrefabGUID TM_Beech_02_Stage1_Stump = new PrefabGUID(-569940297); public static readonly PrefabGUID TM_Beech_03_Stage0 = new PrefabGUID(-1240572646); public static readonly PrefabGUID TM_Beech_03_Stage0_Stump = new PrefabGUID(1958533251); public static readonly PrefabGUID TM_Beech_03_Stage1 = new PrefabGUID(-1138116137); public static readonly PrefabGUID TM_Beech_03_Stage1_Stump = new PrefabGUID(-1489873648); public static readonly PrefabGUID TM_Beech_Sapling = new PrefabGUID(1251017641); public static readonly PrefabGUID TM_Beehive01 = new PrefabGUID(-1381543342); public static readonly PrefabGUID TM_Birch_01_Stage0 = new PrefabGUID(-2073537030); public static readonly PrefabGUID TM_Birch_01_Stage0_Stump = new PrefabGUID(-271874548); public static readonly PrefabGUID TM_Birch_01_Stage1 = new PrefabGUID(1696081179); public static readonly PrefabGUID TM_Birch_01_Stage1_Stump = new PrefabGUID(1362295412); public static readonly PrefabGUID TM_Birch_02_Stage0 = new PrefabGUID(355059364); public static readonly PrefabGUID TM_Birch_02_Stage0_Stump = new PrefabGUID(904339484); public static readonly PrefabGUID TM_Birch_02_Stage1 = new PrefabGUID(1386253402); public static readonly PrefabGUID TM_Birch_02_Stage1_Stump = new PrefabGUID(647113320); public static readonly PrefabGUID TM_Birch_03_Stage0 = new PrefabGUID(-828996122); public static readonly PrefabGUID TM_Birch_03_Stage0_Stump = new PrefabGUID(1223005359); public static readonly PrefabGUID TM_Birch_03_Stage1 = new PrefabGUID(-721330968); public static readonly PrefabGUID TM_Birch_03_Stage1_Stump = new PrefabGUID(2018219174); public static readonly PrefabGUID TM_Birch_04_Stage0 = new PrefabGUID(544258904); public static readonly PrefabGUID TM_Birch_04_Stage0_Stump = new PrefabGUID(201227333); public static readonly PrefabGUID TM_Birch_04_Stage1 = new PrefabGUID(-56044890); public static readonly PrefabGUID TM_Birch_04_Stage1_Stump = new PrefabGUID(-1618087459); public static readonly PrefabGUID TM_Birch_Sapling = new PrefabGUID(-907353868); public static readonly PrefabGUID TM_BirchAutumn_01_Stage0 = new PrefabGUID(1876302973); public static readonly PrefabGUID TM_BirchAutumn_01_Stage0_Stump = new PrefabGUID(1126257254); public static readonly PrefabGUID TM_BirchAutumn_01_Stage1 = new PrefabGUID(-287872842); public static readonly PrefabGUID TM_BirchAutumn_01_Stage1_Stump = new PrefabGUID(-1432050438); public static readonly PrefabGUID TM_BirchAutumn_02_Stage0 = new PrefabGUID(-289935716); public static readonly PrefabGUID TM_BirchAutumn_02_Stage0_Stump = new PrefabGUID(-1867591237); public static readonly PrefabGUID TM_BirchAutumn_02_Stage1 = new PrefabGUID(-882392752); public static readonly PrefabGUID TM_BirchAutumn_02_Stage1_Stump = new PrefabGUID(598006364); public static readonly PrefabGUID TM_BirchAutumn_03_Stage0 = new PrefabGUID(-1496306392); public static readonly PrefabGUID TM_BirchAutumn_03_Stage0_Stump = new PrefabGUID(609254020); public static readonly PrefabGUID TM_BirchAutumn_03_Stage1 = new PrefabGUID(-426728473); public static readonly PrefabGUID TM_BirchAutumn_03_Stage1_Stump = new PrefabGUID(271954587); public static readonly PrefabGUID TM_BirchAutumn_04_Stage0 = new PrefabGUID(630169389); public static readonly PrefabGUID TM_BirchAutumn_04_Stage0_Stump = new PrefabGUID(700131907); public static readonly PrefabGUID TM_BirchAutumn_04_Stage1 = new PrefabGUID(-283758104); public static readonly PrefabGUID TM_BirchAutumn_04_Stage1_Stump = new PrefabGUID(-2101630392); public static readonly PrefabGUID TM_BirchAutumn_05_Stage0 = new PrefabGUID(214088257); public static readonly PrefabGUID TM_BirchAutumn_05_Stage0_Stump = new PrefabGUID(1749020003); public static readonly PrefabGUID TM_BirchAutumn_05_Stage1 = new PrefabGUID(-291889); public static readonly PrefabGUID TM_BirchAutumn_05_Stage1_Stump = new PrefabGUID(-1857740234); public static readonly PrefabGUID TM_BirchAutumn_06_Stage0 = new PrefabGUID(-1607774046); public static readonly PrefabGUID TM_BirchAutumn_06_Stage0_Stump = new PrefabGUID(1760408818); public static readonly PrefabGUID TM_BirchAutumn_06_Stage1 = new PrefabGUID(-441473912); public static readonly PrefabGUID TM_BirchAutumn_06_Stage1_Stump = new PrefabGUID(225773284); public static readonly PrefabGUID TM_BirchAutumn_07_Stage0 = new PrefabGUID(-2141862807); public static readonly PrefabGUID TM_BirchAutumn_07_Stage0_Stump = new PrefabGUID(-917497142); public static readonly PrefabGUID TM_BirchAutumn_07_Stage1 = new PrefabGUID(-45356260); public static readonly PrefabGUID TM_BirchAutumn_07_Stage1_Stump = new PrefabGUID(-1652749441); public static readonly PrefabGUID TM_BirchAutumn_08_Stage0 = new PrefabGUID(-1801446234); public static readonly PrefabGUID TM_BirchAutumn_08_Stage0_Stump = new PrefabGUID(734295368); public static readonly PrefabGUID TM_BirchAutumn_08_Stage1 = new PrefabGUID(1945161026); public static readonly PrefabGUID TM_BirchAutumn_08_Stage1_Stump = new PrefabGUID(980395942); public static readonly PrefabGUID TM_BirchAutumn_09_Stage0 = new PrefabGUID(103545126); public static readonly PrefabGUID TM_BirchAutumn_09_Stage0_Stump = new PrefabGUID(2070979808); public static readonly PrefabGUID TM_BirchAutumn_09_Stage1 = new PrefabGUID(762400578); public static readonly PrefabGUID TM_BirchAutumn_09_Stage1_Stump = new PrefabGUID(-206084668); public static readonly PrefabGUID TM_BirchAutumn_10_Stage0 = new PrefabGUID(-1866507697); public static readonly PrefabGUID TM_BirchAutumn_10_Stage0_Stump = new PrefabGUID(68802942); public static readonly PrefabGUID TM_BirchAutumn_10_Stage1 = new PrefabGUID(-1454926740); public static readonly PrefabGUID TM_BirchAutumn_10_Stage1_Stump = new PrefabGUID(-2056012282); public static readonly PrefabGUID TM_BirchAutumn_11_Stage0 = new PrefabGUID(395858596); public static readonly PrefabGUID TM_BirchAutumn_11_Stage0_Stump = new PrefabGUID(-595504560); public static readonly PrefabGUID TM_BirchAutumn_11_Stage1 = new PrefabGUID(-913316596); public static readonly PrefabGUID TM_BirchAutumn_11_Stage1_Stump = new PrefabGUID(832948732); public static readonly PrefabGUID TM_BirchAutumn_12_Stage0 = new PrefabGUID(-1024312097); public static readonly PrefabGUID TM_BirchAutumn_12_Stage0_Stump = new PrefabGUID(1896745081); public static readonly PrefabGUID TM_BirchAutumn_12_Stage1 = new PrefabGUID(759517016); public static readonly PrefabGUID TM_BirchAutumn_12_Stage1_Stump = new PrefabGUID(119102948); public static readonly PrefabGUID TM_BirchAutumn_SaplingAutumn = new PrefabGUID(-557697929); public static readonly PrefabGUID TM_BirchAutumn_SaplingOrange = new PrefabGUID(692040344); public static readonly PrefabGUID TM_BirchAutumn_SaplingYellow = new PrefabGUID(1177582315); public static readonly PrefabGUID TM_Blacksmith_Anvil01 = new PrefabGUID(-741558232); public static readonly PrefabGUID TM_Blacksmith_Anvil01_Interactable = new PrefabGUID(-948098109); public static readonly PrefabGUID TM_Blacksmith_Barrel01 = new PrefabGUID(-58559922); public static readonly PrefabGUID TM_Blacksmith_Bellow01 = new PrefabGUID(-1362868132); public static readonly PrefabGUID TM_Blacksmith_Table01 = new PrefabGUID(-1819116612); public static readonly PrefabGUID TM_Blacksmith_Table01_Interactable = new PrefabGUID(-1639959073); public static readonly PrefabGUID TM_BlacksmithWood_01 = new PrefabGUID(-833765704); public static readonly PrefabGUID TM_BlacksmithWood_02 = new PrefabGUID(-401205593); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage0 = new PrefabGUID(1832805473); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage0_Stump = new PrefabGUID(1022865304); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage1 = new PrefabGUID(-1959598381); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage1_Stump = new PrefabGUID(2080551403); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage0 = new PrefabGUID(551351600); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage0_Stump = new PrefabGUID(1956908371); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage1 = new PrefabGUID(1520466277); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage1_Stump = new PrefabGUID(1835910423); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage0 = new PrefabGUID(637404405); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage0_Stump = new PrefabGUID(609103708); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage1 = new PrefabGUID(1787243968); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage1_Stump = new PrefabGUID(164431291); public static readonly PrefabGUID TM_BlightbringerAltar_Sapling = new PrefabGUID(-1370777150); public static readonly PrefabGUID TM_BloodAltar_T01 = new PrefabGUID(1819321433); public static readonly PrefabGUID TM_BloodCrystal_01_Rubble = new PrefabGUID(2017876904); public static readonly PrefabGUID TM_BloodCrystal_01_Stage0_Resource = new PrefabGUID(-254626627); public static readonly PrefabGUID TM_BloodCrystal_01_Stage1_Resource = new PrefabGUID(-1835439513); public static readonly PrefabGUID TM_BloodCrystal_02_Rubble = new PrefabGUID(-1309655937); public static readonly PrefabGUID TM_BloodCrystal_02_Stage0_Resource = new PrefabGUID(314153968); public static readonly PrefabGUID TM_BloodCrystal_02_Stage1_Resource = new PrefabGUID(121949631); public static readonly PrefabGUID TM_BloodCrystal_03_Rubble = new PrefabGUID(1688359979); public static readonly PrefabGUID TM_BloodCrystal_03_Stage0_Resource = new PrefabGUID(-550729059); public static readonly PrefabGUID TM_BloodCrystal_03_Stage1_Resource = new PrefabGUID(199431317); public static readonly PrefabGUID TM_BloodFountain_CastleHeart = new PrefabGUID(-485210554); public static readonly PrefabGUID TM_BloodFountain_CastleHeart_Rebuilding = new PrefabGUID(-600018251); public static readonly PrefabGUID TM_BoneCarcass_01_Pickup = new PrefabGUID(-426282494); public static readonly PrefabGUID TM_BoneHide_DeadDeer_01_Pickup = new PrefabGUID(-1077231248); public static readonly PrefabGUID TM_BonePile_01_Pickup = new PrefabGUID(-970403517); public static readonly PrefabGUID TM_Bonfire_01 = new PrefabGUID(2015932885); public static readonly PrefabGUID TM_Bonfire_01_FireOn = new PrefabGUID(1725063561); public static readonly PrefabGUID TM_Bonfire_02_FireOn = new PrefabGUID(906106474); public static readonly PrefabGUID TM_BonfireSimple_01 = new PrefabGUID(1661042787); public static readonly PrefabGUID TM_BonfireSimple01_FireOn = new PrefabGUID(1085168058); public static readonly PrefabGUID TM_Bookshelf_01_Empty = new PrefabGUID(-1147240070); public static readonly PrefabGUID TM_Bookshelf_01_Full = new PrefabGUID(-2041706783); public static readonly PrefabGUID TM_Brazier_Elris01 = new PrefabGUID(285688246); public static readonly PrefabGUID TM_Brazier_SilverHills_Breakable_Fire02 = new PrefabGUID(-1167560866); public static readonly PrefabGUID TM_Brazier_SilverHills_Breakable01 = new PrefabGUID(1999698350); public static readonly PrefabGUID TM_Breakable_HayStack01_Interactable = new PrefabGUID(-1316942379); public static readonly PrefabGUID TM_Breakable_Mine_Barrel_01 = new PrefabGUID(-132751522); public static readonly PrefabGUID TM_Breakable_Mine_Box_01 = new PrefabGUID(22353947); public static readonly PrefabGUID TM_Breakable_Mine_BoxDynamite_01 = new PrefabGUID(4750782); public static readonly PrefabGUID TM_Breakable_TownHall_Bench_01 = new PrefabGUID(-885837570); public static readonly PrefabGUID TM_BunkbedVar01 = new PrefabGUID(-2046402969); public static readonly PrefabGUID TM_BunkbedVar02 = new PrefabGUID(-1592531254); public static readonly PrefabGUID TM_BunkbedVar03 = new PrefabGUID(71152160); public static readonly PrefabGUID TM_Cabinet_01_Empty = new PrefabGUID(-1455124881); public static readonly PrefabGUID TM_Cabinet_01_Full = new PrefabGUID(790688566); public static readonly PrefabGUID TM_Candleholder_01 = new PrefabGUID(1581518977); public static readonly PrefabGUID TM_Candleholder_02 = new PrefabGUID(-1755024714); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Cursed01 = new PrefabGUID(1348402695); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Snow_01 = new PrefabGUID(-237566782); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Snow_02 = new PrefabGUID(-1607151148); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Strongblade01 = new PrefabGUID(-1864168449); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Strongblade02 = new PrefabGUID(-2056332798); public static readonly PrefabGUID TM_Carriage_WheelBarrow01 = new PrefabGUID(-456419624); public static readonly PrefabGUID TM_Carriage_WheelBarrow01_Interactable = new PrefabGUID(513133261); public static readonly PrefabGUID TM_Carriage_WheelBarrow02 = new PrefabGUID(-752567665); public static readonly PrefabGUID TM_Carriage_WheelBarrow03 = new PrefabGUID(363494611); public static readonly PrefabGUID TM_Carriage_WheelBarrow04 = new PrefabGUID(-261210166); public static readonly PrefabGUID TM_Carriage_WheelBarrow05 = new PrefabGUID(-1156162858); public static readonly PrefabGUID TM_Carriage_WheelBarrow06 = new PrefabGUID(1996863276); public static readonly PrefabGUID TM_Carriage_WheelBarrow06_Interactable = new PrefabGUID(1239735056); public static readonly PrefabGUID TM_CarriageChest_BanditAnimal = new PrefabGUID(-1819342331); public static readonly PrefabGUID TM_CarriageChest_BanditPrisoner = new PrefabGUID(-597872204); public static readonly PrefabGUID TM_CarriageChest_ChurchLegion = new PrefabGUID(2105640635); public static readonly PrefabGUID TM_CarriageChest_ChurchMutant = new PrefabGUID(-1497964417); public static readonly PrefabGUID TM_CarriageContainer_BanditCopper = new PrefabGUID(785770588); public static readonly PrefabGUID TM_CarriageContainer_BanditPlank = new PrefabGUID(1283847364); public static readonly PrefabGUID TM_CarriageContainer_BanditSulfur = new PrefabGUID(-690249229); public static readonly PrefabGUID TM_CarriageContainer_BlackfangBastion = new PrefabGUID(605464943); public static readonly PrefabGUID TM_CarriageContainer_BlackfangSouth = new PrefabGUID(1152278702); public static readonly PrefabGUID TM_CarriageContainer_ChuchGrape = new PrefabGUID(-1349542539); public static readonly PrefabGUID TM_CarriageContainer_ChuchSilver = new PrefabGUID(-677677957); public static readonly PrefabGUID TM_CarriageContainer_MilitiaCotton = new PrefabGUID(1074219325); public static readonly PrefabGUID TM_CarriageContainer_MilitiaIron = new PrefabGUID(-1234907970); public static readonly PrefabGUID TM_CarriageContainer_MilitiaQuartz = new PrefabGUID(-336079872); public static readonly PrefabGUID TM_CarriagePrisonerRelease_BanditAnimal = new PrefabGUID(264976858); public static readonly PrefabGUID TM_CarriagePrisonerRelease_BanditPrisoners = new PrefabGUID(1430421513); public static readonly PrefabGUID TM_CarriagePrisonerRelease_ChurchLegion = new PrefabGUID(1588683147); public static readonly PrefabGUID TM_CarriagePrisonerRelease_ChurchMutants = new PrefabGUID(39314447); public static readonly PrefabGUID TM_Castle_Chain_Plant_BleedingHeart_Grow = new PrefabGUID(-864934779); public static readonly PrefabGUID TM_Castle_Chain_Plant_BleedingHeart_Object = new PrefabGUID(-1639149126); public static readonly PrefabGUID TM_Castle_Chain_Plant_BloodRose_Grow = new PrefabGUID(-1154285996); public static readonly PrefabGUID TM_Castle_Chain_Plant_BloodRose_Object = new PrefabGUID(854966485); public static readonly PrefabGUID TM_Castle_Chain_Plant_CorruptedFlower_Grow = new PrefabGUID(-381763813); public static readonly PrefabGUID TM_Castle_Chain_Plant_CorruptedFlower_Object = new PrefabGUID(590141239); public static readonly PrefabGUID TM_Castle_Chain_Plant_Cotton_Grow = new PrefabGUID(-68354526); public static readonly PrefabGUID TM_Castle_Chain_Plant_Cotton_Object = new PrefabGUID(106699910); public static readonly PrefabGUID TM_Castle_Chain_Plant_FireBlossom_Grow = new PrefabGUID(1857937092); public static readonly PrefabGUID TM_Castle_Chain_Plant_FireBlossom_Object = new PrefabGUID(-1862621017); public static readonly PrefabGUID TM_Castle_Chain_Plant_GhostShroom_Grow = new PrefabGUID(1267446276); public static readonly PrefabGUID TM_Castle_Chain_Plant_GhostShroom_Object = new PrefabGUID(1301651860); public static readonly PrefabGUID TM_Castle_Chain_Plant_Grapes_Grow = new PrefabGUID(1268213621); public static readonly PrefabGUID TM_Castle_Chain_Plant_Grapes_Object = new PrefabGUID(1992848416); public static readonly PrefabGUID TM_Castle_Chain_Plant_HellsClarion_Grow = new PrefabGUID(-1444521389); public static readonly PrefabGUID TM_Castle_Chain_Plant_HellsClarion_Object = new PrefabGUID(863601897); public static readonly PrefabGUID TM_Castle_Chain_Plant_Lotus_Grow = new PrefabGUID(2124314449); public static readonly PrefabGUID TM_Castle_Chain_Plant_Lotus_Object = new PrefabGUID(1636632476); public static readonly PrefabGUID TM_Castle_Chain_Plant_MourningLily_Grow = new PrefabGUID(-1684169924); public static readonly PrefabGUID TM_Castle_Chain_Plant_MourningLily_Object = new PrefabGUID(-112608441); public static readonly PrefabGUID TM_Castle_Chain_Plant_SnowFlower_Grow = new PrefabGUID(-191124565); public static readonly PrefabGUID TM_Castle_Chain_Plant_SnowFlower_Object = new PrefabGUID(1663656864); public static readonly PrefabGUID TM_Castle_Chain_Plant_Sunflower_Grow = new PrefabGUID(-1771331965); public static readonly PrefabGUID TM_Castle_Chain_Plant_Sunflower_Object = new PrefabGUID(-157041400); public static readonly PrefabGUID TM_Castle_Chain_Plant_Thistle_Grow = new PrefabGUID(-2089626033); public static readonly PrefabGUID TM_Castle_Chain_Plant_Thistle_Object = new PrefabGUID(-1687824558); public static readonly PrefabGUID TM_Castle_Chain_Plant_TrippyShroom_Grow = new PrefabGUID(365028879); public static readonly PrefabGUID TM_Castle_Chain_Plant_TrippyShroom_Object = new PrefabGUID(-734226054); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Grow01 = new PrefabGUID(-944801740); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Grow02 = new PrefabGUID(-273980168); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Sapling01 = new PrefabGUID(-81980095); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Stump01 = new PrefabGUID(1829208754); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Stump02 = new PrefabGUID(-600232227); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Grow01 = new PrefabGUID(-1096794541); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Grow02 = new PrefabGUID(-1212033469); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Sapling01 = new PrefabGUID(-916420372); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Stump01 = new PrefabGUID(-1186881674); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Stump02 = new PrefabGUID(682227652); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Grow01 = new PrefabGUID(371879967); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Grow02 = new PrefabGUID(777325901); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Sapling01 = new PrefabGUID(367056750); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Stump01 = new PrefabGUID(-1506363672); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Stump02 = new PrefabGUID(1880607845); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Grow01 = new PrefabGUID(-1855913431); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Grow02 = new PrefabGUID(-537615653); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Sapling01 = new PrefabGUID(1959640531); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Stump01 = new PrefabGUID(-1030368768); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Stump02 = new PrefabGUID(42333546); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Grow01 = new PrefabGUID(641771841); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Grow02 = new PrefabGUID(2024430086); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Sapling01 = new PrefabGUID(416304703); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Stump01 = new PrefabGUID(1753900826); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Stump02 = new PrefabGUID(205759567); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Grow01 = new PrefabGUID(-100970234); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Grow02 = new PrefabGUID(777625593); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Sapling01 = new PrefabGUID(288873017); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Stump01 = new PrefabGUID(2069118105); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Stump02 = new PrefabGUID(1666595332); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Grow01 = new PrefabGUID(1038718515); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Grow02 = new PrefabGUID(-908905881); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Sapling01 = new PrefabGUID(491649903); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Stump01 = new PrefabGUID(-1177970835); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Stump02 = new PrefabGUID(-995476713); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Grow01 = new PrefabGUID(-2048839296); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Grow02 = new PrefabGUID(175502857); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Sapling01 = new PrefabGUID(1207829043); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Stump01 = new PrefabGUID(645070432); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Stump02 = new PrefabGUID(-1188102661); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Grow01 = new PrefabGUID(482932713); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Grow02 = new PrefabGUID(1381537328); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Sapling01 = new PrefabGUID(445593181); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Stump01 = new PrefabGUID(-1906666156); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Stump02 = new PrefabGUID(-824128766); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Grow01 = new PrefabGUID(-1189929932); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Grow02 = new PrefabGUID(890004579); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Sapling01 = new PrefabGUID(2044350233); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Stump01 = new PrefabGUID(150592377); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Stump02 = new PrefabGUID(-2122537335); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Grow01 = new PrefabGUID(293442903); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Grow02 = new PrefabGUID(-49196761); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Sapling01 = new PrefabGUID(-177909582); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Stump01 = new PrefabGUID(1716367038); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Stump02 = new PrefabGUID(-1070551617); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Grow01 = new PrefabGUID(1344678052); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Grow02 = new PrefabGUID(-2064995974); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Sapling01 = new PrefabGUID(-1898003003); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Stump01 = new PrefabGUID(405480408); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Stump02 = new PrefabGUID(1929432102); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Grow01 = new PrefabGUID(-102069738); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Grow02 = new PrefabGUID(-1197770551); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Sapling01 = new PrefabGUID(2013200754); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Stump01 = new PrefabGUID(1918033497); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Stump02 = new PrefabGUID(918249184); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_3x2_Blood01 = new PrefabGUID(1420032361); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_3x2_Cabal01 = new PrefabGUID(-1756991220); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_3x2_Gothic01 = new PrefabGUID(-668382795); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_6x2_Blood01 = new PrefabGUID(-1218782860); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_6x2_Cabal01 = new PrefabGUID(-1379130598); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_6x2_Gothic01 = new PrefabGUID(895582607); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_Base_3x2 = new PrefabGUID(-1207657241); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_Base_6x2 = new PrefabGUID(1118272268); public static readonly PrefabGUID TM_Castle_Container_Bureau_Cabal01 = new PrefabGUID(609945621); public static readonly PrefabGUID TM_Castle_Container_Bureau_Gothic01 = new PrefabGUID(1969574977); public static readonly PrefabGUID TM_Castle_Container_Dresser_Cabal01 = new PrefabGUID(427274910); public static readonly PrefabGUID TM_Castle_Container_Dresser_Gothic01 = new PrefabGUID(118432271); public static readonly PrefabGUID TM_Castle_Container_Specialized_Alchemy_T01 = new PrefabGUID(2078423943); public static readonly PrefabGUID TM_Castle_Container_Specialized_Alchemy_T02 = new PrefabGUID(-3853700); public static readonly PrefabGUID TM_Castle_Container_Specialized_Armor_T02 = new PrefabGUID(461811658); public static readonly PrefabGUID TM_Castle_Container_Specialized_Coins_T02 = new PrefabGUID(-68447111); public static readonly PrefabGUID TM_Castle_Container_Specialized_Consumable_T01 = new PrefabGUID(1417685635); public static readonly PrefabGUID TM_Castle_Container_Specialized_Consumable_T02 = new PrefabGUID(-1750343583); public static readonly PrefabGUID TM_Castle_Container_Specialized_Fish_T02 = new PrefabGUID(-1316912119); public static readonly PrefabGUID TM_Castle_Container_Specialized_Gems_T01 = new PrefabGUID(572067339); public static readonly PrefabGUID TM_Castle_Container_Specialized_Gems_T02 = new PrefabGUID(1360847293); public static readonly PrefabGUID TM_Castle_Container_Specialized_Herbs_T01 = new PrefabGUID(789484399); public static readonly PrefabGUID TM_Castle_Container_Specialized_Herbs_T02 = new PrefabGUID(-1895052004); public static readonly PrefabGUID TM_Castle_Container_Specialized_Jewels_T02 = new PrefabGUID(1305010703); public static readonly PrefabGUID TM_Castle_Container_Specialized_Knowledge_T01 = new PrefabGUID(421909879); public static readonly PrefabGUID TM_Castle_Container_Specialized_Knowledge_T02 = new PrefabGUID(123232984); public static readonly PrefabGUID TM_Castle_Container_Specialized_Minerals_T01 = new PrefabGUID(-1078314427); public static readonly PrefabGUID TM_Castle_Container_Specialized_Minerals_T02 = new PrefabGUID(-1155345803); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Dracula = new PrefabGUID(1495743889); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Manticore = new PrefabGUID(653759442); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Monster = new PrefabGUID(-1996942061); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Morgana = new PrefabGUID(1724128982); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Solarus = new PrefabGUID(-824445631); public static readonly PrefabGUID TM_Castle_Container_Specialized_Tailoring_T01 = new PrefabGUID(1619086271); public static readonly PrefabGUID TM_Castle_Container_Specialized_Tailoring_T02 = new PrefabGUID(-1293468445); public static readonly PrefabGUID TM_Castle_Container_Specialized_Weapon_T02 = new PrefabGUID(-841698718); public static readonly PrefabGUID TM_Castle_Container_Specialized_Woodworking_T01 = new PrefabGUID(401757801); public static readonly PrefabGUID TM_Castle_Container_Specialized_Woodworking_T02 = new PrefabGUID(725978616); public static readonly PrefabGUID TM_Castle_Container_Wardrobe_Cabal01 = new PrefabGUID(167886013); public static readonly PrefabGUID TM_Castle_Container_Wardrobe_Gothic01 = new PrefabGUID(-1195045239); public static readonly PrefabGUID TM_Castle_Container_Wardrobe_Gothic02 = new PrefabGUID(1723758048); public static readonly PrefabGUID TM_Castle_Fence_Iron01 = new PrefabGUID(44535007); public static readonly PrefabGUID TM_Castle_Fence_Iron02 = new PrefabGUID(-682177661); public static readonly PrefabGUID TM_Castle_Fence_Iron03 = new PrefabGUID(1316387312); public static readonly PrefabGUID TM_Castle_Fence_IronGate01 = new PrefabGUID(-448001608); public static readonly PrefabGUID TM_Castle_Fence_IronGate02 = new PrefabGUID(-1921424515); public static readonly PrefabGUID TM_Castle_Fence_IronGate03 = new PrefabGUID(-663581951); public static readonly PrefabGUID TM_Castle_Fence_ProjectK01 = new PrefabGUID(519452653); public static readonly PrefabGUID TM_Castle_Fence_ProjectK01_Gate = new PrefabGUID(155733373); public static readonly PrefabGUID TM_Castle_Fence_Stable01 = new PrefabGUID(809204083); public static readonly PrefabGUID TM_Castle_Fence_StableGate01 = new PrefabGUID(1997273288); public static readonly PrefabGUID TM_Castle_Fence_Wood01 = new PrefabGUID(1268956656); public static readonly PrefabGUID TM_Castle_Fence_Wood02 = new PrefabGUID(1847178717); public static readonly PrefabGUID TM_Castle_Fence_WoodGate01 = new PrefabGUID(2114550113); public static readonly PrefabGUID TM_Castle_Fence_WoodGate02 = new PrefabGUID(-191378828); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLab01 = new PrefabGUID(-1269191198); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLab02 = new PrefabGUID(-1897961716); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLab03 = new PrefabGUID(-1205461952); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLabBase = new PrefabGUID(1049312363); public static readonly PrefabGUID TM_Castle_Floor_Crypt01 = new PrefabGUID(-685318965); public static readonly PrefabGUID TM_Castle_Floor_Crypt02 = new PrefabGUID(572228191); public static readonly PrefabGUID TM_Castle_Floor_Crypt03 = new PrefabGUID(304985570); public static readonly PrefabGUID TM_Castle_Floor_CryptBase = new PrefabGUID(1901518512); public static readonly PrefabGUID TM_Castle_Floor_Forge01 = new PrefabGUID(-420140629); public static readonly PrefabGUID TM_Castle_Floor_Forge02 = new PrefabGUID(1695410320); public static readonly PrefabGUID TM_Castle_Floor_Forge03 = new PrefabGUID(63772249); public static readonly PrefabGUID TM_Castle_Floor_ForgeBase = new PrefabGUID(-1266606195); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Rubble = new PrefabGUID(-2018427219); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stable01 = new PrefabGUID(747452298); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stable02 = new PrefabGUID(2025363113); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01 = new PrefabGUID(-2108338233); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCProjectK = new PrefabGUID(2111694272); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCStrongblade01 = new PrefabGUID(-457072746); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCVariant01 = new PrefabGUID(1931758209); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCVariant02 = new PrefabGUID(1081445770); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone02 = new PrefabGUID(296786024); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone03 = new PrefabGUID(679413487); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone04 = new PrefabGUID(2092503115); public static readonly PrefabGUID TM_Castle_Floor_FoundationBase = new PrefabGUID(1326064797); public static readonly PrefabGUID TM_Castle_Floor_Garden_Grass01 = new PrefabGUID(2142175856); public static readonly PrefabGUID TM_Castle_Floor_InvisibleRoofBlocker = new PrefabGUID(350417170); public static readonly PrefabGUID TM_Castle_Floor_Jewelcrafting01 = new PrefabGUID(-1984599765); public static readonly PrefabGUID TM_Castle_Floor_Jewelcrafting02 = new PrefabGUID(-1838091713); public static readonly PrefabGUID TM_Castle_Floor_Jewelcrafting03 = new PrefabGUID(-4617437); public static readonly PrefabGUID TM_Castle_Floor_JewelcraftingBase = new PrefabGUID(691024400); public static readonly PrefabGUID TM_Castle_Floor_Library01 = new PrefabGUID(-866132980); public static readonly PrefabGUID TM_Castle_Floor_Library02 = new PrefabGUID(-87390675); public static readonly PrefabGUID TM_Castle_Floor_Library03 = new PrefabGUID(483075292); public static readonly PrefabGUID TM_Castle_Floor_LibraryBase = new PrefabGUID(-1387641031); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Base = new PrefabGUID(-364140707); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone01 = new PrefabGUID(-1760943046); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone02 = new PrefabGUID(887146255); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone03 = new PrefabGUID(334719508); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone04 = new PrefabGUID(-1385691355); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone05 = new PrefabGUID(-923972985); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone06 = new PrefabGUID(-1877354305); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone07 = new PrefabGUID(241387358); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Grass01 = new PrefabGUID(1883720184); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Plain01 = new PrefabGUID(1356453147); public static readonly PrefabGUID TM_Castle_Floor_Prison01 = new PrefabGUID(-1632933767); public static readonly PrefabGUID TM_Castle_Floor_Prison02 = new PrefabGUID(-1431268048); public static readonly PrefabGUID TM_Castle_Floor_Prison03 = new PrefabGUID(1559900574); public static readonly PrefabGUID TM_Castle_Floor_PrisonBase = new PrefabGUID(90417130); public static readonly PrefabGUID TM_Castle_Floor_Tailor01 = new PrefabGUID(497865962); public static readonly PrefabGUID TM_Castle_Floor_Tailor02 = new PrefabGUID(1216440822); public static readonly PrefabGUID TM_Castle_Floor_Tailor03 = new PrefabGUID(-1138152299); public static readonly PrefabGUID TM_Castle_Floor_TailorBase = new PrefabGUID(1577452402); public static readonly PrefabGUID TM_Castle_Floor_Treasury01 = new PrefabGUID(-1887758253); public static readonly PrefabGUID TM_Castle_Floor_Treasury01_DLCStrongblade01 = new PrefabGUID(-773919175); public static readonly PrefabGUID TM_Castle_Floor_Treasury02 = new PrefabGUID(-2097552164); public static readonly PrefabGUID TM_Castle_Floor_Treasury03 = new PrefabGUID(849335034); public static readonly PrefabGUID TM_Castle_Floor_TreasuryBase = new PrefabGUID(370873101); public static readonly PrefabGUID TM_Castle_Floor_Workshop01 = new PrefabGUID(1514919762); public static readonly PrefabGUID TM_Castle_Floor_Workshop02 = new PrefabGUID(-2138878020); public static readonly PrefabGUID TM_Castle_Floor_Workshop03 = new PrefabGUID(-156221515); public static readonly PrefabGUID TM_Castle_Floor_WorkshopBase = new PrefabGUID(-290215811); public static readonly PrefabGUID TM_Castle_FloorDecor_01_Carpet = new PrefabGUID(2008193049); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Black = new PrefabGUID(1306351802); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Burgundy = new PrefabGUID(-134008501); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Cobalt = new PrefabGUID(1323406286); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Dyable = new PrefabGUID(-1295514827); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Green = new PrefabGUID(1813156501); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Ivory = new PrefabGUID(766673232); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Purple = new PrefabGUID(1419026023); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Black = new PrefabGUID(2126004642); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Burgundy = new PrefabGUID(-461103186); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Cobalt = new PrefabGUID(-1169847941); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Dyable = new PrefabGUID(2012245119); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Green = new PrefabGUID(-1123494393); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Ivory = new PrefabGUID(-227538458); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Purple = new PrefabGUID(-1538523312); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Black = new PrefabGUID(-1243576459); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Burgundy = new PrefabGUID(-776811271); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Cobalt = new PrefabGUID(1901825261); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Dyable = new PrefabGUID(-259923899); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Green = new PrefabGUID(1346845826); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Ivory = new PrefabGUID(630554462); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Purple = new PrefabGUID(1804431776); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Black = new PrefabGUID(1651816484); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Burgundy = new PrefabGUID(1716091064); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Cobalt = new PrefabGUID(-526419579); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Dyable = new PrefabGUID(1637369895); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Green = new PrefabGUID(1301144755); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Ivory = new PrefabGUID(-780934839); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Purple = new PrefabGUID(-481588988); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Black = new PrefabGUID(1932720842); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Burgundy = new PrefabGUID(818030323); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Cobalt = new PrefabGUID(692406210); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Dyable = new PrefabGUID(-1058099541); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Green = new PrefabGUID(1249427094); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Ivory = new PrefabGUID(1442410065); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Purple = new PrefabGUID(-678125428); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Black = new PrefabGUID(682668082); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Burgundy = new PrefabGUID(1857601828); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Cobalt = new PrefabGUID(-473831223); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Dyable = new PrefabGUID(2126549881); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Green = new PrefabGUID(82108540); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Ivory = new PrefabGUID(-597687406); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Purple = new PrefabGUID(-617258233); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Black = new PrefabGUID(1683066508); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Burgundy = new PrefabGUID(512681452); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Cobalt = new PrefabGUID(1130659161); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Dyable = new PrefabGUID(-922187970); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Green = new PrefabGUID(103048648); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Ivory = new PrefabGUID(991498568); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Purple = new PrefabGUID(1919893824); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Black = new PrefabGUID(804493387); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Burgundy = new PrefabGUID(-518095715); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Cobalt = new PrefabGUID(1989655669); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Dyable = new PrefabGUID(-1143821389); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Green = new PrefabGUID(-507593057); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Ivory = new PrefabGUID(-128416884); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Purple = new PrefabGUID(532005924); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Black = new PrefabGUID(893695403); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Burgundy = new PrefabGUID(574337327); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Cobalt = new PrefabGUID(-1511289700); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Dyable = new PrefabGUID(-1845664226); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Green = new PrefabGUID(-1114619332); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Ivory = new PrefabGUID(164698768); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Purple = new PrefabGUID(-2029999606); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Black = new PrefabGUID(919347321); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Burgundy = new PrefabGUID(1955810365); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Cobalt = new PrefabGUID(553792296); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Dyable = new PrefabGUID(1006618280); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Green = new PrefabGUID(-1932733299); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Ivory = new PrefabGUID(526993414); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Purple = new PrefabGUID(1820953353); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_Corner = new PrefabGUID(1103606275); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_Cross_Section = new PrefabGUID(-181524704); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_End = new PrefabGUID(1855507356); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_Straight = new PrefabGUID(534774102); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_T_Section = new PrefabGUID(-1664644149); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_Corner = new PrefabGUID(1630742707); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_Cross_Section = new PrefabGUID(1416970934); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_End = new PrefabGUID(-1761526212); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_Straight = new PrefabGUID(1012471326); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_T_Section = new PrefabGUID(1037297955); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_Corner = new PrefabGUID(908557664); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_Cross_Section = new PrefabGUID(-1588047588); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_End = new PrefabGUID(2097305970); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_Straight = new PrefabGUID(832684882); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_T_Section = new PrefabGUID(-633127683); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_Corner = new PrefabGUID(1271352880); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_Cross_Section = new PrefabGUID(-24431530); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_End = new PrefabGUID(990139966); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_Straight = new PrefabGUID(-1507536062); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_T_Section = new PrefabGUID(1128182070); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_Corner = new PrefabGUID(-57770233); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_Cross_Section = new PrefabGUID(-787655845); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_End = new PrefabGUID(1784663116); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_Straight = new PrefabGUID(-164197545); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_T_Section = new PrefabGUID(-2084701667); public static readonly PrefabGUID TM_Castle_FloorDecor_FancyCarpet01_Dyable = new PrefabGUID(240238952); public static readonly PrefabGUID TM_Castle_FloorDecor_FancyCarpet02_Dyable = new PrefabGUID(1867846200); public static readonly PrefabGUID TM_Castle_FloorDecor_FurRug01 = new PrefabGUID(1899686895); public static readonly PrefabGUID TM_Castle_FloorDecor_FurRug02 = new PrefabGUID(-1781488171); public static readonly PrefabGUID TM_Castle_FloorDecor_GothicCarpet01_Dyable = new PrefabGUID(-1847029206); public static readonly PrefabGUID TM_Castle_FloorDecor_GothicCarpet02_Dyable = new PrefabGUID(307134587); public static readonly PrefabGUID TM_Castle_FloorDecor_RippedCarpet01_Dyable = new PrefabGUID(1839491208); public static readonly PrefabGUID TM_Castle_FloorDecor_RippedCarpet02_Dyable = new PrefabGUID(1295587736); public static readonly PrefabGUID TM_Castle_FloorDecor_Rug01_Dyable = new PrefabGUID(252879515); public static readonly PrefabGUID TM_Castle_FloorDecor_Rug02_Dyable = new PrefabGUID(-260509121); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet01_Dyable = new PrefabGUID(-690616247); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet02_Dyable = new PrefabGUID(892642237); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet03_Dyable = new PrefabGUID(1433503658); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet04_Dyable = new PrefabGUID(-2003925881); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet05_Dyable = new PrefabGUID(575413764); public static readonly PrefabGUID TM_Castle_Fortification_Stone_Entrance01 = new PrefabGUID(223208782); public static readonly PrefabGUID TM_Castle_Fortification_Stone_Wall01 = new PrefabGUID(572652285); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Metal_BloodRose = new PrefabGUID(-696518716); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Metal_Cursed = new PrefabGUID(329771592); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Metal_Ivy = new PrefabGUID(-27245786); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_BloodRose = new PrefabGUID(-2142374854); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_Cursed = new PrefabGUID(-2072930723); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_Ivy = new PrefabGUID(624203220); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_Wisteria = new PrefabGUID(-1545173719); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Metal_BloodRose = new PrefabGUID(1820938592); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Metal_Cursed = new PrefabGUID(-1860278799); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Metal_Ivy = new PrefabGUID(-1340651820); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_BloodRose = new PrefabGUID(-551176897); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_Cursed = new PrefabGUID(1028376291); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_Ivy = new PrefabGUID(-352700400); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_Wisteria = new PrefabGUID(-165398122); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_BloodRose = new PrefabGUID(2068662970); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_Cursed = new PrefabGUID(-28278410); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_Ivy = new PrefabGUID(1835868485); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_Wisteria = new PrefabGUID(1770705355); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_BloodRose = new PrefabGUID(-893594484); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_Cursed = new PrefabGUID(524127162); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_Ivy = new PrefabGUID(588827151); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_Wisteria = new PrefabGUID(-1858504726); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Metal_BloodRose = new PrefabGUID(1683380284); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Metal_Cursed = new PrefabGUID(2002956115); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Metal_Ivy = new PrefabGUID(-2117255138); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_BloodRose = new PrefabGUID(-348270745); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_Cursed = new PrefabGUID(126642331); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_Ivy = new PrefabGUID(-27002310); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_Wisteria = new PrefabGUID(-1863662319); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_BloodRose = new PrefabGUID(1831968277); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_Cursed = new PrefabGUID(1372502590); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_Ivy = new PrefabGUID(628431890); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_Wisteria = new PrefabGUID(1992180217); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_BloodRose = new PrefabGUID(1936225910); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_Cursed = new PrefabGUID(-1013891900); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_Ivy = new PrefabGUID(878769501); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_Wisteria = new PrefabGUID(25064448); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Large_Metal = new PrefabGUID(658148892); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Large_Wood = new PrefabGUID(-114044430); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Small_Metal = new PrefabGUID(258921107); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Small_Wood = new PrefabGUID(1892222213); public static readonly PrefabGUID TM_Castle_Garden_Parent_Obelisk_Metal = new PrefabGUID(709885056); public static readonly PrefabGUID TM_Castle_Garden_Parent_Obelisk_Wood = new PrefabGUID(-562981818); public static readonly PrefabGUID TM_Castle_Garden_Parent_Pergola_Metal = new PrefabGUID(-1222590743); public static readonly PrefabGUID TM_Castle_Garden_Parent_Pergola_Wood = new PrefabGUID(1835696328); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Large_Metal = new PrefabGUID(1768521351); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Large_Wood = new PrefabGUID(-1132434077); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Small_Metal = new PrefabGUID(1056819434); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Small_Wood = new PrefabGUID(167706466); public static readonly PrefabGUID TM_Castle_Gate_Wall_Door_01 = new PrefabGUID(-1110124667); public static readonly PrefabGUID TM_Castle_Gate_Wall_Door_02 = new PrefabGUID(-1388275148); public static readonly PrefabGUID TM_Castle_GeneratedRailing_Default01 = new PrefabGUID(1196518637); public static readonly PrefabGUID TM_Castle_GeneratedRailing_Default01_Pillar = new PrefabGUID(2118711934); public static readonly PrefabGUID TM_Castle_House_Window_Metal = new PrefabGUID(545291818); public static readonly PrefabGUID TM_Castle_House_Window_SimpleCurtains = new PrefabGUID(236180419); public static readonly PrefabGUID TM_Castle_House_Window_Wood = new PrefabGUID(-1719836801); public static readonly PrefabGUID TM_Castle_InteriorRailing_Default01 = new PrefabGUID(160153045); public static readonly PrefabGUID TM_Castle_InteriorRailing_Default01_Pillar = new PrefabGUID(-1691093039); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Blue = new PrefabGUID(760696617); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Purple = new PrefabGUID(2027471241); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Red = new PrefabGUID(1326023321); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Yellow = new PrefabGUID(1579702125); public static readonly PrefabGUID TM_Castle_MistBrazier = new PrefabGUID(1756900697); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape01 = new PrefabGUID(-823767297); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape02 = new PrefabGUID(-1376704997); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape03 = new PrefabGUID(-2093139794); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape04 = new PrefabGUID(1682197623); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_StrongbladeDLC01 = new PrefabGUID(1747478659); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_StrongbladeDLC02 = new PrefabGUID(-982682474); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_StrongbladeDLC03 = new PrefabGUID(1274339627); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting_Glass01 = new PrefabGUID(-1842123158); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting01 = new PrefabGUID(609879909); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting02 = new PrefabGUID(-1814460463); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting03 = new PrefabGUID(1415708511); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_StrongbladeDLC01 = new PrefabGUID(110079461); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_StrongbladeDLC02 = new PrefabGUID(846591851); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_StrongbladeDLC03 = new PrefabGUID(-910610447); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting_Glass01 = new PrefabGUID(442815015); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting01 = new PrefabGUID(366145820); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting02 = new PrefabGUID(-1077386164); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting03 = new PrefabGUID(-1142049453); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC01 = new PrefabGUID(-207510343); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC02 = new PrefabGUID(-70745613); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC03 = new PrefabGUID(-784399817); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC04 = new PrefabGUID(965422057); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC05 = new PrefabGUID(-1331727612); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting_Glass01 = new PrefabGUID(-1484048118); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting_Glass02 = new PrefabGUID(1389877877); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting_Glass03 = new PrefabGUID(1304353722); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting01 = new PrefabGUID(-280555422); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting02 = new PrefabGUID(429599776); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting03 = new PrefabGUID(-2088437090); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting04 = new PrefabGUID(-745029889); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_StrongbladeDLC01 = new PrefabGUID(-1595018806); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_StrongbladeDLC02 = new PrefabGUID(-1525424692); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_StrongbladeDLC03 = new PrefabGUID(1592427758); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting_Glass01 = new PrefabGUID(-1495633537); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting01 = new PrefabGUID(-812090150); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting02 = new PrefabGUID(1381090712); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting03 = new PrefabGUID(-181453288); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn01 = new PrefabGUID(1871935324); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn01_Original = new PrefabGUID(275489647); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn02 = new PrefabGUID(-1932051338); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn03 = new PrefabGUID(1175078735); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn04 = new PrefabGUID(1181034925); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Cabal01 = new PrefabGUID(1369010712); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Cabal02 = new PrefabGUID(479941373); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Cabal03 = new PrefabGUID(-2004716642); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Gothic01 = new PrefabGUID(1336447117); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_StrongbladeDLC_01 = new PrefabGUID(1119097203); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_StrongbladeDLC_02 = new PrefabGUID(-1097732927); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_3x6_Cabal01 = new PrefabGUID(2020208400); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_3x6_Gothic01 = new PrefabGUID(-1579557858); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_3x6_StrongbladeDLC_01 = new PrefabGUID(-1829611282); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_3x3_Cabal01 = new PrefabGUID(-1666587665); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_3x3_Gothic01 = new PrefabGUID(-825041900); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_3x3_StrongbladeDLC_01 = new PrefabGUID(1068226341); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_6x6_Cabal02 = new PrefabGUID(-1587825473); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_6x6_StrongbladeDLC_01 = new PrefabGUID(-46629157); public static readonly PrefabGUID TM_Castle_Noctem_Radar_Eye = new PrefabGUID(1383395802); public static readonly PrefabGUID TM_Castle_ObjectDecor_Anvil01 = new PrefabGUID(1277831890); public static readonly PrefabGUID TM_Castle_ObjectDecor_Aquarium_Iron_Large = new PrefabGUID(198047828); public static readonly PrefabGUID TM_Castle_ObjectDecor_Aquarium_Iron_Small = new PrefabGUID(2117907654); public static readonly PrefabGUID TM_Castle_ObjectDecor_Bench_Gothic01 = new PrefabGUID(-569832943); public static readonly PrefabGUID TM_Castle_ObjectDecor_BookPedestal01 = new PrefabGUID(1579362204); public static readonly PrefabGUID TM_Castle_ObjectDecor_BookPedestal02 = new PrefabGUID(-680809658); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Brazier01_Orange = new PrefabGUID(1446953312); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_CandleStand01 = new PrefabGUID(797605882); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase01 = new PrefabGUID(873503098); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase02 = new PrefabGUID(1864693233); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase03 = new PrefabGUID(-761353546); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase04 = new PrefabGUID(1943013666); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase06 = new PrefabGUID(1512138920); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand_Cabal = new PrefabGUID(1130658863); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand_Gothic = new PrefabGUID(570436365); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand_Lavish = new PrefabGUID(780798903); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand01 = new PrefabGUID(-939151406); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand02 = new PrefabGUID(-629121130); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand03 = new PrefabGUID(-2022124892); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Base = new PrefabGUID(-1325342529); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Cabal01 = new PrefabGUID(-1126014450); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_DeskCabal01 = new PrefabGUID(465502058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_DeskGothic01 = new PrefabGUID(2096482330); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_DeskLavish01 = new PrefabGUID(-752836365); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Gothic01 = new PrefabGUID(1147414470); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Lavish01 = new PrefabGUID(1481841976); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Red_Base = new PrefabGUID(-8015754); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Simple01 = new PrefabGUID(551046781); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC01 = new PrefabGUID(930898512); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC02 = new PrefabGUID(-162599930); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC03 = new PrefabGUID(1865135472); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC04 = new PrefabGUID(-706081177); public static readonly PrefabGUID TM_Castle_ObjectDecor_ChessTable01 = new PrefabGUID(624218349); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant01 = new PrefabGUID(27432785); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant02 = new PrefabGUID(-259659131); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant03 = new PrefabGUID(-1503503213); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant04 = new PrefabGUID(823459617); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant05 = new PrefabGUID(-1877692880); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant06 = new PrefabGUID(-1971857623); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant07 = new PrefabGUID(648206774); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant08 = new PrefabGUID(-692880320); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant09 = new PrefabGUID(-272063893); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant10 = new PrefabGUID(-681023682); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant11 = new PrefabGUID(975438498); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant12 = new PrefabGUID(575437684); public static readonly PrefabGUID TM_Castle_ObjectDecor_CrystalLamp_Brazier01 = new PrefabGUID(-1023837449); public static readonly PrefabGUID TM_Castle_ObjectDecor_Divan_Base = new PrefabGUID(2082207027); public static readonly PrefabGUID TM_Castle_ObjectDecor_Divan_Lavish01 = new PrefabGUID(-398243796); public static readonly PrefabGUID TM_Castle_ObjectDecor_Fireplace_Cabal01 = new PrefabGUID(780398112); public static readonly PrefabGUID TM_Castle_ObjectDecor_Fireplace_Gothic01 = new PrefabGUID(216089113); public static readonly PrefabGUID TM_Castle_ObjectDecor_Fireplace_Lavish01 = new PrefabGUID(374407813); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Antlers01 = new PrefabGUID(-508625704); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Bone01 = new PrefabGUID(765052065); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Candles01 = new PrefabGUID(-1705786232); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Crystal01 = new PrefabGUID(2033781589); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Gothic01 = new PrefabGUID(2070805994); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Halloween01 = new PrefabGUID(-2113113839); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Lavish01 = new PrefabGUID(-1121102574); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Simple01 = new PrefabGUID(2005837161); public static readonly PrefabGUID TM_Castle_ObjectDecor_FoldingWall_1x6_Cabal01 = new PrefabGUID(1536811714); public static readonly PrefabGUID TM_Castle_ObjectDecor_FoldingWall_1x6_Gothic01 = new PrefabGUID(-808142514); public static readonly PrefabGUID TM_Castle_ObjectDecor_FoldingWall_Base_1x6 = new PrefabGUID(1764832621); public static readonly PrefabGUID TM_Castle_ObjectDecor_ForgeBarrel01 = new PrefabGUID(-2128976183); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_1_short = new PrefabGUID(-794020006); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_1_tall = new PrefabGUID(1316058863); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_bridge01 = new PrefabGUID(-1458465094); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_bridge02 = new PrefabGUID(1672613686); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_short = new PrefabGUID(-1095847141); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_tall = new PrefabGUID(586685623); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_tall_arch01 = new PrefabGUID(929687735); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_tall_var01 = new PrefabGUID(850569597); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_5_bridge01 = new PrefabGUID(-2026589971); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_5_short = new PrefabGUID(-1130267123); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_5_tall = new PrefabGUID(-2132728905); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_Corner01 = new PrefabGUID(-258523558); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_Corner01_arch01 = new PrefabGUID(527160947); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_sculpture_horse01 = new PrefabGUID(-1949816617); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_sculpture_horse02 = new PrefabGUID(-761600498); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_Short_corner01 = new PrefabGUID(-2120322883); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01 = new PrefabGUID(-1030052444); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01_decor01 = new PrefabGUID(-1117823422); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01_decor02 = new PrefabGUID(-604532887); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01_decor03 = new PrefabGUID(-743622014); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02 = new PrefabGUID(1034151164); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02_decor01 = new PrefabGUID(1453586031); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02_decor02 = new PrefabGUID(2062518804); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02_decor03 = new PrefabGUID(-316863071); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01 = new PrefabGUID(349807177); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01_decor01 = new PrefabGUID(1044207305); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01_decor02 = new PrefabGUID(-253897934); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01_decor03 = new PrefabGUID(-329463697); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02 = new PrefabGUID(31164442); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02_decor01 = new PrefabGUID(-391133159); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02_decor02 = new PrefabGUID(-1295479109); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02_decor03 = new PrefabGUID(2032291686); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenBench01 = new PrefabGUID(2119410626); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenChair_Base = new PrefabGUID(830396434); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenChair01 = new PrefabGUID(-925263583); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenChair02_Dyable = new PrefabGUID(1020401996); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Bat01 = new PrefabGUID(1247163010); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Bat02 = new PrefabGUID(-1790149989); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Large01 = new PrefabGUID(177891172); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_ProjectK01 = new PrefabGUID(1178389093); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Small01 = new PrefabGUID(549920910); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLampPost01_Orange = new PrefabGUID(-55079755); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLampPost02_Orange = new PrefabGUID(1758705562); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLampPost03_Orange = new PrefabGUID(656054963); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLantern01_Orange = new PrefabGUID(-1302860768); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLantern02_Orange = new PrefabGUID(1759972580); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLantern03_Orange = new PrefabGUID(-451545916); public static readonly PrefabGUID TM_Castle_ObjectDecor_Globe02 = new PrefabGUID(1988389551); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gloomrot01_Brazier01_Green = new PrefabGUID(-618554922); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier01_Orange = new PrefabGUID(-2093005534); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier02_Orange = new PrefabGUID(1965326190); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier03_Orange = new PrefabGUID(224878241); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier04_Orange_DLC = new PrefabGUID(1965581787); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier05_Orange = new PrefabGUID(-887031154); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_BustStatue_Female01 = new PrefabGUID(1005770867); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_BustStatue_Male01 = new PrefabGUID(-1463516461); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_CandleRack01_Orange = new PrefabGUID(656976091); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_CandleStand01 = new PrefabGUID(709669487); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Podium01 = new PrefabGUID(-590609504); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01DuoGargoyle01 = new PrefabGUID(-593905838); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle01 = new PrefabGUID(1326445798); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle02 = new PrefabGUID(2123129022); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle03 = new PrefabGUID(725766266); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle04 = new PrefabGUID(-1985503763); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle05 = new PrefabGUID(-411374179); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle06 = new PrefabGUID(581940747); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle07 = new PrefabGUID(-1986302834); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle08 = new PrefabGUID(1245961354); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Female = new PrefabGUID(-1509963504); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Male = new PrefabGUID(1853226864); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Vat01 = new PrefabGUID(-154100892); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Vat02 = new PrefabGUID(-567491057); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Vat03 = new PrefabGUID(-751931539); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_Female01 = new PrefabGUID(-84369225); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_Gargoyle01 = new PrefabGUID(-1870409563); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_Male01 = new PrefabGUID(-1198796948); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase01 = new PrefabGUID(-479280465); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase02 = new PrefabGUID(-1076384196); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase03 = new PrefabGUID(-76851715); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase04 = new PrefabGUID(2030984728); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase05 = new PrefabGUID(-1537403426); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Base = new PrefabGUID(-6983693); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Cabal01 = new PrefabGUID(-1623564712); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Gothic01 = new PrefabGUID(-561639815); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Lavish01 = new PrefabGUID(1136472160); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier01_Orange = new PrefabGUID(-1296321304); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier02_Orange = new PrefabGUID(561843274); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier03_Orange = new PrefabGUID(-86884256); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier04_Orange = new PrefabGUID(444000363); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Base = new PrefabGUID(-1848307090); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_GrandPiano01 = new PrefabGUID(-409684408); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_GrandPiano02 = new PrefabGUID(-280549553); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Harp01 = new PrefabGUID(1246795581); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Harp02 = new PrefabGUID(591881817); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Organ01 = new PrefabGUID(-1894293910); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Organ02 = new PrefabGUID(-544504736); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Brazier01_Orange = new PrefabGUID(521970438); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_BustStatue_Female01 = new PrefabGUID(-420564298); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_BustStatue_Male01 = new PrefabGUID(-1841799555); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_CandleStand01 = new PrefabGUID(1080320533); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01DuoGargoyle01 = new PrefabGUID(-596981388); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle01 = new PrefabGUID(34149911); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle02 = new PrefabGUID(-444096842); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle03 = new PrefabGUID(22771948); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle04 = new PrefabGUID(210845918); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle05 = new PrefabGUID(1065525459); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle06 = new PrefabGUID(-374509611); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle07 = new PrefabGUID(-1086525411); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle08 = new PrefabGUID(-96779386); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_Female01 = new PrefabGUID(1302388238); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_Gargoyle01 = new PrefabGUID(1902853849); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_Male01 = new PrefabGUID(-1248717894); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase01 = new PrefabGUID(-779774088); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase02 = new PrefabGUID(-2087497758); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase03 = new PrefabGUID(-1218974349); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase04_Unused = new PrefabGUID(1781510688); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase05 = new PrefabGUID(-1312712675); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase06 = new PrefabGUID(851602346); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase07 = new PrefabGUID(-595181570); public static readonly PrefabGUID TM_Castle_ObjectDecor_OutdoorDecoration_Base = new PrefabGUID(845709672); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Cabal_Vase01 = new PrefabGUID(1958206979); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Cabal_Vase02 = new PrefabGUID(144463441); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Cabal_Vase03 = new PrefabGUID(-209525166); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase01 = new PrefabGUID(-1346427067); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase02 = new PrefabGUID(407233445); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase03 = new PrefabGUID(-1275348909); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase04 = new PrefabGUID(133934624); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase05 = new PrefabGUID(-118403276); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase06 = new PrefabGUID(-1781755513); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Marble_Vase01 = new PrefabGUID(64005732); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Marble_Vase02 = new PrefabGUID(-394501959); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Marble_Vase03 = new PrefabGUID(1650910016); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Metal_Vase01 = new PrefabGUID(-1359956150); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Metal_Vase02 = new PrefabGUID(814967763); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Metal_Vase03 = new PrefabGUID(-1227210056); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Stable_BarrelVase01 = new PrefabGUID(1310922184); public static readonly PrefabGUID TM_Castle_ObjectDecor_Pool_StrongbladeDLC01 = new PrefabGUID(558668025); public static readonly PrefabGUID TM_Castle_ObjectDecor_Pool_StrongbladeDLC02 = new PrefabGUID(-1963794511); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Brazier_Orange = new PrefabGUID(-899747642); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_BustStatue_Female01 = new PrefabGUID(2003546745); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_BustStatue_Male01 = new PrefabGUID(-83822172); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01DuoGargoyle01 = new PrefabGUID(2093267606); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle01 = new PrefabGUID(-1145446161); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle02 = new PrefabGUID(-1017411502); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle03 = new PrefabGUID(1951605041); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle04 = new PrefabGUID(781996044); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle05 = new PrefabGUID(1405941468); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle06 = new PrefabGUID(518448448); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle07 = new PrefabGUID(-1141919540); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle08 = new PrefabGUID(1663229398); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_Female01 = new PrefabGUID(2071819023); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_Gargoyle01 = new PrefabGUID(-883197188); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_Male01 = new PrefabGUID(-1866338269); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Base = new PrefabGUID(1752496674); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Cabal01 = new PrefabGUID(1991412107); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Gothic01 = new PrefabGUID(833803769); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Lavish01 = new PrefabGUID(-1613630707); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_StrongbladeDLC01 = new PrefabGUID(397717192); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_StrongbladeDLC02 = new PrefabGUID(-269507805); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHay01 = new PrefabGUID(1495755479); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHay02 = new PrefabGUID(1925146830); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHay03 = new PrefabGUID(-1990152390); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHitchingPost01 = new PrefabGUID(194712289); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHitchingPost02 = new PrefabGUID(-1543977056); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableSign01 = new PrefabGUID(-726476711); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableSign02 = new PrefabGUID(1395968105); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableWaterTrough01 = new PrefabGUID(1565409593); public static readonly PrefabGUID TM_Castle_ObjectDecor_StandingBurnerPot01 = new PrefabGUID(-202816279); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_AngelStatue01 = new PrefabGUID(-1777182058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_BonePillarStatue01 = new PrefabGUID(858552228); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_FemaleStatue01 = new PrefabGUID(1924883160); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_FemaleStatue02 = new PrefabGUID(57934274); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_GargoyleStatue01 = new PrefabGUID(1837038558); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_GargoyleStatue02 = new PrefabGUID(-1121713940); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_MaleStatue01 = new PrefabGUID(1735150840); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_MaleStatue02 = new PrefabGUID(-2122532810); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_StrongbladeDLC_Female01 = new PrefabGUID(-1212536125); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_StrongbladeDLC_Female02 = new PrefabGUID(-2006858566); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_StrongbladeDLC_Male01 = new PrefabGUID(-1071569211); public static readonly PrefabGUID TM_Castle_ObjectDecor_StrongbladeDLC_StandingLamp01_Dyable = new PrefabGUID(606753096); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Banquet01_Deprecated = new PrefabGUID(-888478474); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Banquet02_Deprecated = new PrefabGUID(-1064177564); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Banquet03_Deprecated = new PrefabGUID(2113855149); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_BanquetCloth01_Deprecated = new PrefabGUID(521727187); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_BanquetCloth02_Deprecated = new PrefabGUID(709037000); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_BanquetCloth03_Deprecated = new PrefabGUID(2111290770); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Cabal01_Deprecated = new PrefabGUID(733591670); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Gothic01_Deprecated = new PrefabGUID(-2005881662); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_StrongbladeDLC_01_Deprecated = new PrefabGUID(645454990); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_StrongbladeDLC_02_Deprecated = new PrefabGUID(1397513493); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x3_Cabal01_Deprecated = new PrefabGUID(-532692664); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x3_Gothic01_Deprecated = new PrefabGUID(-1887056619); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x6_Cabal01_Deprecated = new PrefabGUID(-34752264); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x6_Gothic01_Deprecated = new PrefabGUID(180499181); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_Cabal01 = new PrefabGUID(-742777303); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_CabalDesk01 = new PrefabGUID(-521027642); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_CabalVanity01 = new PrefabGUID(-544060510); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_GothicDesk01 = new PrefabGUID(-1583533114); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_GothicVanity01 = new PrefabGUID(-203928758); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_LavishDesk01 = new PrefabGUID(-1186490712); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_LavishVanity01 = new PrefabGUID(444727609); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x4_Garden01 = new PrefabGUID(1338051453); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x4_Garden02_Dyable = new PrefabGUID(-649433906); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_6x4_Simple01 = new PrefabGUID(2061278827); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_6x6_StrongbladeDLC_01_Deprecated = new PrefabGUID(2012743857); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_10x6 = new PrefabGUID(1799867777); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_3x3 = new PrefabGUID(725472058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_3x6 = new PrefabGUID(794694058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_4x4_Garden = new PrefabGUID(1176115109); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_6x4 = new PrefabGUID(1597270759); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_6x6 = new PrefabGUID(-2024489020); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Basic01 = new PrefabGUID(2101121636); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Soldier01 = new PrefabGUID(104465058); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Vampire01 = new PrefabGUID(230163020); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Villager01 = new PrefabGUID(1098118571); public static readonly PrefabGUID TM_Castle_ObjectDecor_Terrarium01 = new PrefabGUID(-1558674217); public static readonly PrefabGUID TM_Castle_ObjectDecor_WalkableFurnishing_StrongbladeDLC_Pillows01 = new PrefabGUID(886692114); public static readonly PrefabGUID TM_Castle_ObjectDecor_WalkableFurnishing_StrongbladeDLC_Pillows02 = new PrefabGUID(95608669); public static readonly PrefabGUID TM_Castle_ObjectDecor_WalkableFurnishing_StrongbladeDLC_Pillows03 = new PrefabGUID(1123292049); public static readonly PrefabGUID TM_Castle_ObjectDecor_WashBasin01 = new PrefabGUID(-3042048); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_Corner = new PrefabGUID(-1311856292); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_Cross_Section = new PrefabGUID(-133073227); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_End = new PrefabGUID(-1917517340); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_Straight = new PrefabGUID(1202397949); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_T_Section = new PrefabGUID(-1604165419); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_Corner = new PrefabGUID(-1150704729); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_Cross_Section = new PrefabGUID(940495998); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_End = new PrefabGUID(-855972220); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_Straight = new PrefabGUID(-342424861); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_T_Section = new PrefabGUID(1468258825); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_Corner = new PrefabGUID(-1590852004); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_Cross_Section = new PrefabGUID(-2068184188); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_End = new PrefabGUID(-330567583); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_Straight = new PrefabGUID(-2030277052); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_T_Section = new PrefabGUID(-1834344633); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner01 = new PrefabGUID(-1117554565); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner02 = new PrefabGUID(-1123773678); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner03 = new PrefabGUID(1652335816); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner04 = new PrefabGUID(-163088387); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner05 = new PrefabGUID(1317859336); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner06 = new PrefabGUID(-725227635); public static readonly PrefabGUID TM_Castle_PillarDecor_BatWing01 = new PrefabGUID(-1727572164); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms01_Banner01 = new PrefabGUID(-760358969); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms01_Banner02 = new PrefabGUID(1027890023); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms02_Banner01 = new PrefabGUID(87261865); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms02_Banner02 = new PrefabGUID(1615364717); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms03_Banner01 = new PrefabGUID(955474763); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms03_Banner02 = new PrefabGUID(-876427373); public static readonly PrefabGUID TM_Castle_PillarDecor_CrowWing01 = new PrefabGUID(1713970619); public static readonly PrefabGUID TM_Castle_PillarDecor_CrystalLamp_HangingLanterns01 = new PrefabGUID(1870073967); public static readonly PrefabGUID TM_Castle_PillarDecor_CrystalLamp_Lantern01 = new PrefabGUID(-1996281667); public static readonly PrefabGUID TM_Castle_PillarDecor_DecorationPropBase = new PrefabGUID(962747391); public static readonly PrefabGUID TM_Castle_PillarDecor_DLC_ProjectK_Torch01_Dyable = new PrefabGUID(1969574504); public static readonly PrefabGUID TM_Castle_PillarDecor_DLC_ProjectK_Torch01_Orange = new PrefabGUID(876159415); public static readonly PrefabGUID TM_Castle_PillarDecor_DoorBell_Gothic01 = new PrefabGUID(743735705); public static readonly PrefabGUID TM_Castle_PillarDecor_DoorBell_Gothic02 = new PrefabGUID(-359707458); public static readonly PrefabGUID TM_Castle_PillarDecor_DoorBell_Gothic03 = new PrefabGUID(-1037785378); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_BloodRose01 = new PrefabGUID(-328288413); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_Cursed01 = new PrefabGUID(1932505670); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_Ivy01 = new PrefabGUID(172664191); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_Wisteria01 = new PrefabGUID(-479059917); public static readonly PrefabGUID TM_Castle_PillarDecor_Gargoyle01 = new PrefabGUID(328148479); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle01_Dyable = new PrefabGUID(1209886173); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle02_Dyable = new PrefabGUID(1810336204); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle03_Dyable = new PrefabGUID(-777269524); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle04_Gold_Dyable = new PrefabGUID(1171228583); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle04_Silver_Dyable = new PrefabGUID(-42990661); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle04_Wood_Dyable = new PrefabGUID(1321004130); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_GloomrotLantern01_Green = new PrefabGUID(-19009133); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HalloweenLantern01_Orange = new PrefabGUID(-721714254); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern01_Orange = new PrefabGUID(514660688); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern02 = new PrefabGUID(1039319072); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern03 = new PrefabGUID(222452688); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern04 = new PrefabGUID(-1938248109); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern05 = new PrefabGUID(1990191735); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Torch01_Orange = new PrefabGUID(-1998196357); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Torch02 = new PrefabGUID(-962887562); public static readonly PrefabGUID TM_Castle_PillarDecor_Halloween01 = new PrefabGUID(229389372); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle01 = new PrefabGUID(1398111223); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle02 = new PrefabGUID(1952451618); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle03 = new PrefabGUID(-1591965530); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle04 = new PrefabGUID(171778355); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle05 = new PrefabGUID(318475524); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle06 = new PrefabGUID(-432509803); public static readonly PrefabGUID TM_Castle_PillarDecor_Stable_Sign01 = new PrefabGUID(1701464100); public static readonly PrefabGUID TM_Castle_PillarDecor_Stable_Sign02 = new PrefabGUID(1507156777); public static readonly PrefabGUID TM_Castle_PillarDecor_StrongbladeDLC_Lantern01_Dyable = new PrefabGUID(-1303979929); public static readonly PrefabGUID TM_Castle_PillarDecor_StrongbladeDLC_Lantern02_Dyable = new PrefabGUID(-558665859); public static readonly PrefabGUID TM_Castle_PillarDecor_WorkshopHoist01 = new PrefabGUID(623491931); public static readonly PrefabGUID TM_Castle_RefinementStation_Soulshard = new PrefabGUID(1794206684); public static readonly PrefabGUID TM_Castle_Relic_Radar_Eye = new PrefabGUID(-622002417); public static readonly PrefabGUID TM_Castle_SaplingPlanter_7x_Castle_Mega_Planter01 = new PrefabGUID(-451145631); public static readonly PrefabGUID TM_Castle_SaplingPlanter_7x_Castle_Mega_Planter02 = new PrefabGUID(904702946); public static readonly PrefabGUID TM_Castle_SaplingPlanter_7x_NoUnitBlock_Big = new PrefabGUID(-1811290122); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_NoUnitBlock = new PrefabGUID(20308236); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_NoUnitBlock_OutdoorDirt = new PrefabGUID(-1620680520); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_UnitBlock_01 = new PrefabGUID(633628073); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_UnitBlock_02 = new PrefabGUID(-2070120080); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_UnitBlock_03 = new PrefabGUID(-614728956); public static readonly PrefabGUID TM_Castle_SeedPlanter_3x_NoUnitBlock_OutdoorDirt = new PrefabGUID(-1777622178); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_NoUnitBlock = new PrefabGUID(-727003724); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_UnitBlock_01 = new PrefabGUID(-2016984283); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_UnitBlock_02 = new PrefabGUID(1348525260); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_UnitBlock_03 = new PrefabGUID(70490531); public static readonly PrefabGUID TM_Castle_SeedPlanter_5x_NoUnitBlock_OutdoorDirt = new PrefabGUID(-634052640); public static readonly PrefabGUID TM_Castle_SeedPlanter_7x_NoUnitBlock_Big = new PrefabGUID(576488226); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_End_Left = new PrefabGUID(2044737851); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_End_Right = new PrefabGUID(26454196); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_Start_Left = new PrefabGUID(2117545279); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_Start_Right = new PrefabGUID(-791433293); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_End_Left = new PrefabGUID(-1608139464); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_End_Right = new PrefabGUID(-1867747921); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_Start_Left = new PrefabGUID(1376308990); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_Start_Right = new PrefabGUID(-874593641); public static readonly PrefabGUID TM_Castle_Stairs_Floor_01 = new PrefabGUID(926709232); public static readonly PrefabGUID TM_Castle_Stairs_Floor_Ruined_01 = new PrefabGUID(-1401253655); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_End = new PrefabGUID(-1601742249); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_Mid_CCW = new PrefabGUID(156372693); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_Mid_CW = new PrefabGUID(91980480); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_Start = new PrefabGUID(-1848575035); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_End = new PrefabGUID(-1069128791); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_Mid_CCW = new PrefabGUID(223283194); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_Mid_CW = new PrefabGUID(553087546); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_Start = new PrefabGUID(-628271868); public static readonly PrefabGUID TM_Castle_Throne_01 = new PrefabGUID(-1944735586); public static readonly PrefabGUID TM_Castle_Throne_01_Dracula = new PrefabGUID(-633207199); public static readonly PrefabGUID TM_Castle_Throne_01_ProjectK = new PrefabGUID(-229853553); public static readonly PrefabGUID TM_Castle_Throne_01_StrongbladeDLC = new PrefabGUID(980816206); public static readonly PrefabGUID TM_Castle_Throne_01DLC01Variant = new PrefabGUID(1862373808); public static readonly PrefabGUID TM_Castle_Throne_01DLC02Variant = new PrefabGUID(-625213071); public static readonly PrefabGUID TM_Castle_Wall_Door_Metal_Wide_Tier02_ServantLock = new PrefabGUID(809177531); public static readonly PrefabGUID TM_Castle_Wall_Door_Metal_Wide_Tier02_Standard = new PrefabGUID(-1378161357); public static readonly PrefabGUID TM_Castle_Wall_Door_Palisade_Tier01 = new PrefabGUID(-1259825508); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle01_ServantLock = new PrefabGUID(-2120778385); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle01_Standard = new PrefabGUID(-1615530056); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle02_ServantLock = new PrefabGUID(1031154600); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle02_Standard = new PrefabGUID(-29749970); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC01Variant_ServantLock = new PrefabGUID(2063389605); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC01Variant_Standard = new PrefabGUID(1690783957); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC02Variant_ServantLock = new PrefabGUID(214726352); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC02Variant_Standard = new PrefabGUID(-1872077746); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK01Variant_ServantLock = new PrefabGUID(423018316); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK01Variant_Standard = new PrefabGUID(-1725918454); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK02Variant_ServantLock = new PrefabGUID(1523490679); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK02Variant_Standard = new PrefabGUID(1362023808); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ServantLock = new PrefabGUID(1325579315); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard = new PrefabGUID(-1462717684); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard01_ServantLock = new PrefabGUID(661164434); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard01_Standard = new PrefabGUID(-1720487003); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard02_ServantLock = new PrefabGUID(-324390719); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard02_Standard = new PrefabGUID(163814050); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard03_ServantLock = new PrefabGUID(1671467399); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard03_Standard = new PrefabGUID(-183045232); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_StrongbladeDLC01Variant_ServantLock = new PrefabGUID(1394627606); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_StrongbladeDLC01Variant_Standard = new PrefabGUID(-1441209695); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Wide_Tier02_ServantLock = new PrefabGUID(1790947395); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Wide_Tier02_Standard = new PrefabGUID(1407457927); public static readonly PrefabGUID TM_Castle_Wall_DoorPlug_Tier02_PrisonStyle01_Standard = new PrefabGUID(-1431484465); public static readonly PrefabGUID TM_Castle_Wall_DoorPlug_Tier02_PrisonStyle02_Standard = new PrefabGUID(-335563583); public static readonly PrefabGUID TM_Castle_Wall_Entrance_Center_Stone01 = new PrefabGUID(1451022870); public static readonly PrefabGUID TM_Castle_Wall_Invisible = new PrefabGUID(1987149974); public static readonly PrefabGUID TM_Castle_Wall_Pillar_Invisible = new PrefabGUID(-871263573); public static readonly PrefabGUID TM_Castle_Wall_Tier01_Wood = new PrefabGUID(792289367); public static readonly PrefabGUID TM_Castle_Wall_Tier01_Wood_Entrance = new PrefabGUID(-1293632412); public static readonly PrefabGUID TM_Castle_Wall_Tier01_Wood_Pillar = new PrefabGUID(1639432090); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone = new PrefabGUID(1909288154); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_Entrance = new PrefabGUID(728150320); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceCrown = new PrefabGUID(-251630856); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceWide = new PrefabGUID(996421136); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceWide_Left = new PrefabGUID(1960255814); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceWide_Right = new PrefabGUID(-2018964383); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_Pillar = new PrefabGUID(1506730526); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_Window = new PrefabGUID(-764944520); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_BloodRose01 = new PrefabGUID(1203605086); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_Cursed01 = new PrefabGUID(-173804790); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_Ivy01 = new PrefabGUID(-298809060); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_Wisteria01 = new PrefabGUID(1957340591); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Bars01 = new PrefabGUID(1169104268); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Blue01 = new PrefabGUID(-667248554); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Blue02 = new PrefabGUID(472162278); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Blue03 = new PrefabGUID(1512293539); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Clear01 = new PrefabGUID(443701342); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Clear02 = new PrefabGUID(-1220798446); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Clear03 = new PrefabGUID(322611066); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Dyable01 = new PrefabGUID(725659998); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Dyable02 = new PrefabGUID(-289420417); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Dyable03 = new PrefabGUID(-1119007803); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Green01 = new PrefabGUID(-659104170); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Green02 = new PrefabGUID(-1204323601); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Green03 = new PrefabGUID(-795601069); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Purple01 = new PrefabGUID(-729261826); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Purple02 = new PrefabGUID(1066937682); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Purple03 = new PrefabGUID(-1252378669); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Skyblue01 = new PrefabGUID(-453210601); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Skyblue02 = new PrefabGUID(-2028788906); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Skyblue03 = new PrefabGUID(-676131283); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_GloomrotDLC01 = new PrefabGUID(-1218750780); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_Halloween01 = new PrefabGUID(1887813312); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_ProjectK01 = new PrefabGUID(-1805858799); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_ProjectK02 = new PrefabGUID(-1938065854); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_ProjectK03 = new PrefabGUID(886525362); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_RoyalDLC01 = new PrefabGUID(-1167127551); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_RoyalDLC02 = new PrefabGUID(-194316523); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_StrongbladeDLC01 = new PrefabGUID(1524360644); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_01 = new PrefabGUID(-1307228368); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_02 = new PrefabGUID(1459252359); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_03 = new PrefabGUID(6059030); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_05 = new PrefabGUID(-103770213); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_07 = new PrefabGUID(625751737); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_08 = new PrefabGUID(118962921); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_09 = new PrefabGUID(-42098265); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_10 = new PrefabGUID(-1745893180); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_11 = new PrefabGUID(1452813388); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_12 = new PrefabGUID(1148566153); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_13 = new PrefabGUID(-874388056); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_14 = new PrefabGUID(-896398724); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_15 = new PrefabGUID(-1207990853); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_16 = new PrefabGUID(-1751512097); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_17 = new PrefabGUID(962358103); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_19 = new PrefabGUID(760787907); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_20 = new PrefabGUID(1234406413); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_21 = new PrefabGUID(1333571465); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_22 = new PrefabGUID(-674555145); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_23 = new PrefabGUID(-1181979524); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_27 = new PrefabGUID(800326898); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_28 = new PrefabGUID(-1442212690); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror01 = new PrefabGUID(1178448608); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror02 = new PrefabGUID(-1556169800); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror03 = new PrefabGUID(-1193732670); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror04 = new PrefabGUID(-1375980003); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_Symbol01 = new PrefabGUID(464203925); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_Symbol02 = new PrefabGUID(-2049392252); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_Symbol03 = new PrefabGUID(-2085364677); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_WallBanner01 = new PrefabGUID(1731550316); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_WallBanner02 = new PrefabGUID(562906620); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_WallBanner03 = new PrefabGUID(-614163586); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_DriedFlowers01 = new PrefabGUID(1238138229); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_DriedFlowers02 = new PrefabGUID(369925576); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_Stable_WallProps01 = new PrefabGUID(1609638790); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_StrongbladeDLC_WallFountain01 = new PrefabGUID(-2080018629); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_TrophySkull01 = new PrefabGUID(-509538861); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WallTools01 = new PrefabGUID(-2108225406); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WallTools02 = new PrefabGUID(183821441); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament01 = new PrefabGUID(1766219278); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament02 = new PrefabGUID(-777333175); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament03 = new PrefabGUID(-557407971); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament04 = new PrefabGUID(-24347868); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament05 = new PrefabGUID(-2037044181); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament06 = new PrefabGUID(1517094056); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament07 = new PrefabGUID(416779558); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament08 = new PrefabGUID(-255512362); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_01 = new PrefabGUID(-265936608); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_02 = new PrefabGUID(-457497939); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_03 = new PrefabGUID(-877164120); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_04 = new PrefabGUID(-1770486397); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_05 = new PrefabGUID(1104397231); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_06 = new PrefabGUID(-637480316); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_07 = new PrefabGUID(621107396); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_08 = new PrefabGUID(-80712975); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_09 = new PrefabGUID(790955618); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_01 = new PrefabGUID(1549709004); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_02 = new PrefabGUID(-1105873872); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_03 = new PrefabGUID(1235438962); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_04 = new PrefabGUID(-2073893355); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_05 = new PrefabGUID(620046867); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_06 = new PrefabGUID(209794964); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf01 = new PrefabGUID(-55125931); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf02 = new PrefabGUID(-1759419888); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf03 = new PrefabGUID(1648986010); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf04 = new PrefabGUID(-993266118); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_01 = new PrefabGUID(1125316242); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_02 = new PrefabGUID(622570691); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_03 = new PrefabGUID(1349599249); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_06 = new PrefabGUID(-1761226177); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_07 = new PrefabGUID(2119591728); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_08 = new PrefabGUID(687516047); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_09 = new PrefabGUID(-364590536); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_10 = new PrefabGUID(175786489); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_11 = new PrefabGUID(1237080090); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_12 = new PrefabGUID(1361398761); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_01 = new PrefabGUID(2032410610); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_02 = new PrefabGUID(-1458092673); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_03 = new PrefabGUID(2080830789); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_04 = new PrefabGUID(792422254); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_05 = new PrefabGUID(1286490723); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_06 = new PrefabGUID(142999579); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_01 = new PrefabGUID(2146556248); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_02 = new PrefabGUID(-1001786463); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_03 = new PrefabGUID(1048605404); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_04 = new PrefabGUID(1386044340); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_05 = new PrefabGUID(-954911330); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_06 = new PrefabGUID(-1683005611); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_07 = new PrefabGUID(-945436353); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_08 = new PrefabGUID(238986012); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_09 = new PrefabGUID(741508302); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Black02 = new PrefabGUID(-1501439420); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Burgundy01 = new PrefabGUID(231309079); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Burgundy02 = new PrefabGUID(1606211486); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Cobalt01 = new PrefabGUID(-422405678); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Cobalt02 = new PrefabGUID(12749038); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable01 = new PrefabGUID(-1177431120); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable02 = new PrefabGUID(-1229482665); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable03 = new PrefabGUID(-984791408); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable04 = new PrefabGUID(-1969049484); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Green01 = new PrefabGUID(1864414502); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Green02 = new PrefabGUID(990866755); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Halloween01 = new PrefabGUID(271242862); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Ivory01 = new PrefabGUID(-567222601); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Ivory02 = new PrefabGUID(-780805196); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Purple01 = new PrefabGUID(2083352962); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Purple02 = new PrefabGUID(1867773052); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_StrongbladeDLC01 = new PrefabGUID(1959531938); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_BloodRose01 = new PrefabGUID(-153992684); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Cursed01 = new PrefabGUID(692934651); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Ivy01 = new PrefabGUID(470275151); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Ivy02 = new PrefabGUID(809118249); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Wisteria01 = new PrefabGUID(17765511); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Burgundy01 = new PrefabGUID(-1943675284); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Burgundy02 = new PrefabGUID(1577175893); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Cobalt01 = new PrefabGUID(1673999068); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Cobalt02 = new PrefabGUID(1638424638); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable01 = new PrefabGUID(1067847850); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable02 = new PrefabGUID(2076807891); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable03 = new PrefabGUID(214563375); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable04 = new PrefabGUID(636765323); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Green01 = new PrefabGUID(593603087); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Green02 = new PrefabGUID(1489965429); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Halloween01 = new PrefabGUID(-1073349521); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Ivory01 = new PrefabGUID(-1293253763); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Ivory02 = new PrefabGUID(-456871310); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Purple01 = new PrefabGUID(-887526082); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Purple02 = new PrefabGUID(373906916); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_StrongbladeDLC01 = new PrefabGUID(-1320180911); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_StrongbladeDLC02 = new PrefabGUID(1802534145); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_StrongbladeDLC03 = new PrefabGUID(-513302771); public static readonly PrefabGUID TM_Castle_Window_Hatches_Gothic01 = new PrefabGUID(-1771014048); public static readonly PrefabGUID TM_CastleOuterWalls_Gate01 = new PrefabGUID(-826211390); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins_Gate01 = new PrefabGUID(1455390331); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins01 = new PrefabGUID(-1236321910); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins02 = new PrefabGUID(-1788250707); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins03 = new PrefabGUID(979674153); public static readonly PrefabGUID TM_CastleOuterWalls_Towerl01 = new PrefabGUID(754211521); public static readonly PrefabGUID TM_CastleOuterWalls_Wall01 = new PrefabGUID(776261229); public static readonly PrefabGUID TM_CastleRoof_Type0 = new PrefabGUID(-1956506780); public static readonly PrefabGUID TM_CastleRoof_Type1 = new PrefabGUID(-439480776); public static readonly PrefabGUID TM_CastleRoof_Type10 = new PrefabGUID(-1044006992); public static readonly PrefabGUID TM_CastleRoof_Type11 = new PrefabGUID(-1126102767); public static readonly PrefabGUID TM_CastleRoof_Type12 = new PrefabGUID(-1870366883); public static readonly PrefabGUID TM_CastleRoof_Type13 = new PrefabGUID(-1380888668); public static readonly PrefabGUID TM_CastleRoof_Type14 = new PrefabGUID(618518549); public static readonly PrefabGUID TM_CastleRoof_Type2 = new PrefabGUID(1832119701); public static readonly PrefabGUID TM_CastleRoof_Type3 = new PrefabGUID(-717409229); public static readonly PrefabGUID TM_CastleRoof_Type4 = new PrefabGUID(1539285846); public static readonly PrefabGUID TM_CastleRoof_Type5 = new PrefabGUID(1134990599); public static readonly PrefabGUID TM_CastleRoof_Type6 = new PrefabGUID(1726877252); public static readonly PrefabGUID TM_CastleRoof_Type7 = new PrefabGUID(-1160601856); public static readonly PrefabGUID TM_CastleRoof_Type8 = new PrefabGUID(-1082227493); public static readonly PrefabGUID TM_CastleRoof_Type9 = new PrefabGUID(-17628407); public static readonly PrefabGUID TM_CastleRuins_Entrance_Standard01 = new PrefabGUID(-1757502016); public static readonly PrefabGUID TM_CastleRuins_Entrance_Standard02 = new PrefabGUID(-1501752689); public static readonly PrefabGUID TM_CastleRuins_Entrance_Standard03 = new PrefabGUID(-27583633); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken01 = new PrefabGUID(62866248); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken02 = new PrefabGUID(-721642257); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken03 = new PrefabGUID(-624959497); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken04 = new PrefabGUID(-1328001445); public static readonly PrefabGUID TM_CastleRuins_Pillar_Standard01 = new PrefabGUID(132628738); public static readonly PrefabGUID TM_CastleRuins_Pillar_Standard02 = new PrefabGUID(-47050655); public static readonly PrefabGUID TM_CastleRuins_Pillar_Standard03 = new PrefabGUID(260871776); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard01 = new PrefabGUID(231837690); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard02 = new PrefabGUID(1141487055); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard03 = new PrefabGUID(799957439); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard04 = new PrefabGUID(-542071737); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard05 = new PrefabGUID(-2089286946); public static readonly PrefabGUID TM_Catacomb_Brazier01 = new PrefabGUID(-587816307); public static readonly PrefabGUID TM_Catacomb_Coffinattachment01 = new PrefabGUID(1495463833); public static readonly PrefabGUID TM_Catacomb_CoffinProp01 = new PrefabGUID(-1459035007); public static readonly PrefabGUID TM_Catacomb_CoffinProp02 = new PrefabGUID(406178807); public static readonly PrefabGUID TM_Catacomb_CoffinProp03 = new PrefabGUID(-1242940272); public static readonly PrefabGUID TM_Catacomb_CoffinProp04 = new PrefabGUID(-184355602); public static readonly PrefabGUID TM_Catacomb_Pillar01 = new PrefabGUID(-634654736); public static readonly PrefabGUID TM_Catacomb_Pillar02 = new PrefabGUID(1617839271); public static readonly PrefabGUID TM_Catacomb_Pillar03_Tall = new PrefabGUID(762246079); public static readonly PrefabGUID TM_Catacomb_Pillar04_Tall = new PrefabGUID(1424697561); public static readonly PrefabGUID TM_Catacomb_PillarDebris01 = new PrefabGUID(-922106784); public static readonly PrefabGUID TM_Catacomb_PillarDebris02 = new PrefabGUID(2015570172); public static readonly PrefabGUID TM_Catacomb_PillarDebris03 = new PrefabGUID(181284634); public static readonly PrefabGUID TM_Cemetery_Grave_01_Breakable = new PrefabGUID(-1327977623); public static readonly PrefabGUID TM_Cemetery_Grave_05_Breakable = new PrefabGUID(1626987016); public static readonly PrefabGUID TM_Cemetery_Grave_06_Breakable = new PrefabGUID(-2085349570); public static readonly PrefabGUID TM_Cemetery_Grave_Marker_02SmallBreakable = new PrefabGUID(128857433); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_01a = new PrefabGUID(-581137507); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_01b = new PrefabGUID(735670909); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_02a = new PrefabGUID(-1142030796); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_02b = new PrefabGUID(143822984); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_02b_MicroPOI = new PrefabGUID(-1317416404); public static readonly PrefabGUID TM_Cemetery_Grave_Site_01_Breakable = new PrefabGUID(1993661726); public static readonly PrefabGUID TM_Cemetery_Gravestone_01_Breakable = new PrefabGUID(1160077614); public static readonly PrefabGUID TM_Cemetery_Gravestone_02_Breakable = new PrefabGUID(-1225683233); public static readonly PrefabGUID TM_Cemetery_Gravestone_04_Breakable = new PrefabGUID(1224058242); public static readonly PrefabGUID TM_Cemetery_Gravestone_05_Breakable = new PrefabGUID(-1836417921); public static readonly PrefabGUID TM_Cemetery_Gravestone_07_Breakable = new PrefabGUID(-190837872); public static readonly PrefabGUID TM_Cemetery_Gravestone_08_Breakable = new PrefabGUID(112652299); public static readonly PrefabGUID TM_Cemetery_Gravestone_09_Breakable = new PrefabGUID(803782640); public static readonly PrefabGUID TM_Cemetery_Gravestone_10_Breakable = new PrefabGUID(-1021715982); public static readonly PrefabGUID TM_Cemetery_Gravestone_11_Breakable = new PrefabGUID(-1637044551); public static readonly PrefabGUID TM_Cemetery_Gravestone_12_Breakable = new PrefabGUID(91027361); public static readonly PrefabGUID TM_Cemetery_Gravestone_18_Breakable = new PrefabGUID(1862779064); public static readonly PrefabGUID TM_Cemetery_Gravestone_34_Breakable = new PrefabGUID(-1578313731); public static readonly PrefabGUID TM_Cemetery_Statue_02SmallBreakable = new PrefabGUID(-735916219); public static readonly PrefabGUID TM_Cemetery_Statue_07SmallBreakable = new PrefabGUID(1260753221); public static readonly PrefabGUID TM_Cemetery_Statue_11SmallBreakable = new PrefabGUID(-1905053090); public static readonly PrefabGUID TM_Cemetery_Statue_13SmallBreakable = new PrefabGUID(2807987); public static readonly PrefabGUID TM_Cemetery_Statue_22SmallBreakable = new PrefabGUID(-982055649); public static readonly PrefabGUID TM_Cherry_01_Stage0 = new PrefabGUID(401210727); public static readonly PrefabGUID TM_Cherry_01_Stage0_Stump = new PrefabGUID(1819209241); public static readonly PrefabGUID TM_Cherry_01_Stage1 = new PrefabGUID(-620852834); public static readonly PrefabGUID TM_Cherry_01_Stage1_Stump = new PrefabGUID(-724490694); public static readonly PrefabGUID TM_Cherry_02_Stage0 = new PrefabGUID(-1547037058); public static readonly PrefabGUID TM_Cherry_02_Stage0_Stump = new PrefabGUID(1680753917); public static readonly PrefabGUID TM_Cherry_02_Stage1 = new PrefabGUID(276797823); public static readonly PrefabGUID TM_Cherry_02_Stage1_Stump = new PrefabGUID(1675693120); public static readonly PrefabGUID TM_Cherry_Sapling = new PrefabGUID(1233683594); public static readonly PrefabGUID TM_Cherry_White_01_Stage0 = new PrefabGUID(-305053695); public static readonly PrefabGUID TM_Cherry_White_01_Stage0_Stump = new PrefabGUID(1373012879); public static readonly PrefabGUID TM_Cherry_White_01_Stage1 = new PrefabGUID(-826509790); public static readonly PrefabGUID TM_Cherry_White_01_Stage1_Stump = new PrefabGUID(-538818564); public static readonly PrefabGUID TM_Cherry_White_02_Stage0 = new PrefabGUID(651255593); public static readonly PrefabGUID TM_Cherry_White_02_Stage0_Stump = new PrefabGUID(-463874168); public static readonly PrefabGUID TM_Cherry_White_02_Stage1 = new PrefabGUID(932401419); public static readonly PrefabGUID TM_Cherry_White_02_Stage1_Stump = new PrefabGUID(-545088067); public static readonly PrefabGUID TM_Cherry_White_Sapling = new PrefabGUID(-1090931508); public static readonly PrefabGUID TM_Church_Cupboard_01_Empty = new PrefabGUID(-1858342224); public static readonly PrefabGUID TM_Church_Cupboard_01_Full = new PrefabGUID(-883234955); public static readonly PrefabGUID TM_Church_Fence_01 = new PrefabGUID(367317768); public static readonly PrefabGUID TM_Church_Fence_02 = new PrefabGUID(1095636704); public static readonly PrefabGUID TM_Church_Fence_03 = new PrefabGUID(493506713); public static readonly PrefabGUID TM_Church_Podium_01 = new PrefabGUID(1035503083); public static readonly PrefabGUID TM_Church_WoodenFence_01_Fence = new PrefabGUID(-126275993); public static readonly PrefabGUID TM_Church_WoodenFence_01_Fence_Broken = new PrefabGUID(-1246954058); public static readonly PrefabGUID TM_Church_WoodenFencePole_01 = new PrefabGUID(1166934796); public static readonly PrefabGUID TM_Church_WoodenFencePole_01_Broken = new PrefabGUID(-1434857520); public static readonly PrefabGUID TM_ChurchBench_01 = new PrefabGUID(-1510093160); public static readonly PrefabGUID TM_ChurchOfLight_Overseer_IceRecovery_Icicle_01 = new PrefabGUID(-561596140); public static readonly PrefabGUID TM_ChurchOfLight_Overseer_IceRecovery_Icicle_01_Original = new PrefabGUID(701017812); public static readonly PrefabGUID TM_ChurchOfLight_Overseer_IceRink_Icicle_02 = new PrefabGUID(-893801146); public static readonly PrefabGUID TM_ChurchOfTheDamned_AltarBreakable01 = new PrefabGUID(1927206557); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_Big01 = new PrefabGUID(-1289903994); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_Big02_PurpleVar = new PrefabGUID(805723770); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable01 = new PrefabGUID(1839091230); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable01_PurpleVar = new PrefabGUID(-168971869); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable02 = new PrefabGUID(151670066); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable03 = new PrefabGUID(-827602931); public static readonly PrefabGUID TM_ChurchOfTheDamned_Candleholder01 = new PrefabGUID(-1439503044); public static readonly PrefabGUID TM_ChurchOfTheDamned_Candleholder01_PurpleVar = new PrefabGUID(-1756966683); public static readonly PrefabGUID TM_ChurchOfTheDamned_DecoPillar01 = new PrefabGUID(-511076442); public static readonly PrefabGUID TM_ChurchOfTheDamned_DecoPillar02 = new PrefabGUID(-337939152); public static readonly PrefabGUID TM_ChurchOfTheDamned_Platform01 = new PrefabGUID(-103948591); public static readonly PrefabGUID TM_ChurchOfTheDamned_Statue = new PrefabGUID(1354283973); public static readonly PrefabGUID TM_Coal_01_Rubble = new PrefabGUID(346525583); public static readonly PrefabGUID TM_Coal_01_Stage0_Resource = new PrefabGUID(1132091903); public static readonly PrefabGUID TM_Coal_01_Stage1_Resource = new PrefabGUID(-61286066); public static readonly PrefabGUID TM_Coal_02_Rubble = new PrefabGUID(-362539499); public static readonly PrefabGUID TM_Coal_02_Stage0_Resource = new PrefabGUID(-341127402); public static readonly PrefabGUID TM_Coal_02_Stage1_Resource = new PrefabGUID(-1495626288); public static readonly PrefabGUID TM_Coal_03_Rubble = new PrefabGUID(-1346448204); public static readonly PrefabGUID TM_Coal_03_Stage0_Resource = new PrefabGUID(2038868968); public static readonly PrefabGUID TM_Coal_03_Stage1_Resource = new PrefabGUID(-988419979); public static readonly PrefabGUID TM_Coal_04_Rubble = new PrefabGUID(1784635848); public static readonly PrefabGUID TM_Coal_04_Stage0_Resource = new PrefabGUID(-345737372); public static readonly PrefabGUID TM_Coal_04_Stage1_Resource = new PrefabGUID(1683384544); public static readonly PrefabGUID TM_Copper_01_Rubble = new PrefabGUID(-913263584); public static readonly PrefabGUID TM_Copper_01_Stage0_Resource = new PrefabGUID(1692326589); public static readonly PrefabGUID TM_Copper_01_Stage1_Resource = new PrefabGUID(-862961691); public static readonly PrefabGUID TM_Copper_02_Rubble = new PrefabGUID(-1695950018); public static readonly PrefabGUID TM_Copper_02_Stage0_Resource = new PrefabGUID(198734608); public static readonly PrefabGUID TM_Copper_02_Stage1_Resource = new PrefabGUID(1668679315); public static readonly PrefabGUID TM_Copper_03_Rubble = new PrefabGUID(-1761197872); public static readonly PrefabGUID TM_Copper_03_Stage0_Resource = new PrefabGUID(-1044508839); public static readonly PrefabGUID TM_Copper_03_Stage1_Resource = new PrefabGUID(-1307814655); public static readonly PrefabGUID TM_Copper_04_Rubble = new PrefabGUID(2037947548); public static readonly PrefabGUID TM_Copper_04_Stage0_Resource = new PrefabGUID(347127213); public static readonly PrefabGUID TM_Copper_04_Stage1_Resource = new PrefabGUID(1558329254); public static readonly PrefabGUID TM_CopperBig_01_Rubble = new PrefabGUID(1409691562); public static readonly PrefabGUID TM_CopperBig_01_Stage0_Resource = new PrefabGUID(526572022); public static readonly PrefabGUID TM_CopperBig_01_Stage1_Resource = new PrefabGUID(-2008916349); public static readonly PrefabGUID TM_CopperMedium_01_Rubble = new PrefabGUID(-114904817); public static readonly PrefabGUID TM_CopperMedium_01_Stage0_Resource = new PrefabGUID(-1774847334); public static readonly PrefabGUID TM_CopperMedium_01_Stage1_Resource = new PrefabGUID(539107720); public static readonly PrefabGUID TM_Corruption_Zone_Area01 = new PrefabGUID(-1435765545); public static readonly PrefabGUID TM_CottonPickup_01 = new PrefabGUID(-1030372628); public static readonly PrefabGUID TM_CottonPickup_01_Harvested = new PrefabGUID(-2002185447); public static readonly PrefabGUID TM_CottonPickup_02 = new PrefabGUID(247769206); public static readonly PrefabGUID TM_CottonPickup_02_Harvested = new PrefabGUID(1851913647); public static readonly PrefabGUID TM_CottonPickup_03 = new PrefabGUID(1049924113); public static readonly PrefabGUID TM_CottonPickup_03_Harvested = new PrefabGUID(-742063356); public static readonly PrefabGUID TM_CraftingStation_AlchemyLab_Small = new PrefabGUID(181938440); public static readonly PrefabGUID TM_CraftingStation_Altar_Frost = new PrefabGUID(-609878016); public static readonly PrefabGUID TM_CraftingStation_Altar_Spectral = new PrefabGUID(-64110296); public static readonly PrefabGUID TM_CraftingStation_Altar_Unholy = new PrefabGUID(-676962218); public static readonly PrefabGUID TM_CraftingStation_AncestralForge = new PrefabGUID(48521126); public static readonly PrefabGUID TM_CraftingStation_Anvil = new PrefabGUID(-437790980); public static readonly PrefabGUID TM_CraftingStation_ArtisansCorner = new PrefabGUID(1121480632); public static readonly PrefabGUID TM_CraftingStation_ArtisanTable = new PrefabGUID(-1718710437); public static readonly PrefabGUID TM_CraftingStation_BloodBank = new PrefabGUID(-452732692); public static readonly PrefabGUID TM_CraftingStation_BloodMixer = new PrefabGUID(-969931747); public static readonly PrefabGUID TM_CraftingStation_FusionForge = new PrefabGUID(-1286344051); public static readonly PrefabGUID TM_CraftingStation_JewelcraftingTable = new PrefabGUID(508953830); public static readonly PrefabGUID TM_CraftingStation_Leatherworking = new PrefabGUID(1779320855); public static readonly PrefabGUID TM_CraftingStation_MetalworkStation = new PrefabGUID(2014944075); public static readonly PrefabGUID TM_CraftingStation_SimpleCraftingBench = new PrefabGUID(-1107784271); public static readonly PrefabGUID TM_CraftingStation_Smithy = new PrefabGUID(-1840926436); public static readonly PrefabGUID TM_CraftingStation_Stables = new PrefabGUID(472278220); public static readonly PrefabGUID TM_CraftingStation_TailorBench = new PrefabGUID(-952755594); public static readonly PrefabGUID TM_CraftingStation_WoodworkingBench = new PrefabGUID(-332123372); public static readonly PrefabGUID TM_Crystal_01_Rubble = new PrefabGUID(1137840357); public static readonly PrefabGUID TM_Crystal_01_Stage0_Resource = new PrefabGUID(-1239407936); public static readonly PrefabGUID TM_Crystal_01_Stage1_Resource = new PrefabGUID(-896634608); public static readonly PrefabGUID TM_Cursed_Zone_Area01 = new PrefabGUID(-923189082); public static readonly PrefabGUID TM_CursedForest_AltarLantern_01 = new PrefabGUID(-465496166); public static readonly PrefabGUID TM_CursedForest_AltarLantern_02 = new PrefabGUID(-446115208); public static readonly PrefabGUID TM_CursedForest_AltarLantern_03 = new PrefabGUID(476032291); public static readonly PrefabGUID TM_CursedForest_AltarStub01 = new PrefabGUID(1729978517); public static readonly PrefabGUID TM_CursedRotten_Sapling = new PrefabGUID(1743733023); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage0 = new PrefabGUID(-986240728); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage0_Stump = new PrefabGUID(155898432); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage1 = new PrefabGUID(-1491394415); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage1_Stump = new PrefabGUID(1600730613); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage0 = new PrefabGUID(-748397710); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage0_Stump = new PrefabGUID(-271302331); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage1 = new PrefabGUID(776487496); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage1_Stump = new PrefabGUID(1648464672); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage0 = new PrefabGUID(-1633512436); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage0_Stump = new PrefabGUID(1338204691); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage1 = new PrefabGUID(454273628); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage1_Stump = new PrefabGUID(1083326962); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage0 = new PrefabGUID(-787447326); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage0_Stump = new PrefabGUID(1184050281); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage1 = new PrefabGUID(1303999828); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage1_Stump = new PrefabGUID(23696821); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage0 = new PrefabGUID(-2001741971); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage0_Stump = new PrefabGUID(-276630090); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage1 = new PrefabGUID(1602415686); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage1_Stump = new PrefabGUID(661965041); public static readonly PrefabGUID TM_CursedTree_01_Stage0 = new PrefabGUID(1648247733); public static readonly PrefabGUID TM_CursedTree_01_Stage0_Stump = new PrefabGUID(-1672005837); public static readonly PrefabGUID TM_CursedTree_01_Stage1 = new PrefabGUID(-1675877895); public static readonly PrefabGUID TM_CursedTree_01_Stage1_Stump = new PrefabGUID(405239541); public static readonly PrefabGUID TM_CursedTree_02_Stage0 = new PrefabGUID(1028886413); public static readonly PrefabGUID TM_CursedTree_02_Stage0_Stump = new PrefabGUID(783340522); public static readonly PrefabGUID TM_CursedTree_02_Stage1 = new PrefabGUID(-1560937541); public static readonly PrefabGUID TM_CursedTree_02_Stage1_Stump = new PrefabGUID(-1991149312); public static readonly PrefabGUID TM_CursedTree_Sapling = new PrefabGUID(408330791); public static readonly PrefabGUID TM_Customization_Mirror_Cabal_01 = new PrefabGUID(1711288798); public static readonly PrefabGUID TM_Customization_Mirror_Gothic_01 = new PrefabGUID(-1400505344); public static readonly PrefabGUID TM_Customization_Mirror_Halloween_01 = new PrefabGUID(-1633556205); public static readonly PrefabGUID TM_Cypress_Sapling = new PrefabGUID(1125832487); public static readonly PrefabGUID TM_Cypress01_Large = new PrefabGUID(-1172828775); public static readonly PrefabGUID TM_Cypress01_Large_Stump = new PrefabGUID(-1072468618); public static readonly PrefabGUID TM_Cypress01_Small = new PrefabGUID(-1082605129); public static readonly PrefabGUID TM_Cypress01_Small_Stump = new PrefabGUID(-1881470577); public static readonly PrefabGUID TM_Cypress02_Large = new PrefabGUID(-411688238); public static readonly PrefabGUID TM_Cypress02_Large_Stump = new PrefabGUID(-1139842396); public static readonly PrefabGUID TM_Cypress02_Small = new PrefabGUID(-2060202486); public static readonly PrefabGUID TM_Cypress02_Small_Stump = new PrefabGUID(1090053579); public static readonly PrefabGUID TM_Cypress03_Large = new PrefabGUID(-677563061); public static readonly PrefabGUID TM_Cypress03_Large_Stump = new PrefabGUID(-594078837); public static readonly PrefabGUID TM_Cypress03_Small = new PrefabGUID(1830820819); public static readonly PrefabGUID TM_Cypress03_Small_Stump = new PrefabGUID(-1928593350); public static readonly PrefabGUID TM_CypressAutum_Sapling = new PrefabGUID(105035259); public static readonly PrefabGUID TM_CypressAutum01_Large = new PrefabGUID(-1965759651); public static readonly PrefabGUID TM_CypressAutum01_Large_Stump = new PrefabGUID(2058084976); public static readonly PrefabGUID TM_CypressAutum01_Small = new PrefabGUID(2099473218); public static readonly PrefabGUID TM_CypressAutum01_Small_Stump = new PrefabGUID(784316127); public static readonly PrefabGUID TM_CypressAutum02_Large = new PrefabGUID(649947065); public static readonly PrefabGUID TM_CypressAutum02_Large_Stump = new PrefabGUID(-1177199382); public static readonly PrefabGUID TM_CypressAutum02_Small = new PrefabGUID(1542809612); public static readonly PrefabGUID TM_CypressAutum02_Small_Stump = new PrefabGUID(1916420307); public static readonly PrefabGUID TM_CypressAutum03_Large = new PrefabGUID(1945365298); public static readonly PrefabGUID TM_CypressAutum03_Large_Stump = new PrefabGUID(738566262); public static readonly PrefabGUID TM_CypressAutum03_Small = new PrefabGUID(-459330141); public static readonly PrefabGUID TM_CypressAutum03_Small_Stump = new PrefabGUID(-640488987); public static readonly PrefabGUID TM_DeadSpooky_01_Stage0 = new PrefabGUID(-84093045); public static readonly PrefabGUID TM_DeadSpooky_01_Stage0_Stump = new PrefabGUID(-591112747); public static readonly PrefabGUID TM_DeadSpooky_01_Stage1 = new PrefabGUID(-1181920502); public static readonly PrefabGUID TM_DeadSpooky_01_Stage1_Stump = new PrefabGUID(-1631450141); public static readonly PrefabGUID TM_DeadSpooky_02_Stage0 = new PrefabGUID(1749846017); public static readonly PrefabGUID TM_DeadSpooky_02_Stage0_Stump = new PrefabGUID(-804379388); public static readonly PrefabGUID TM_DeadSpooky_02_Stage1 = new PrefabGUID(94024248); public static readonly PrefabGUID TM_DeadSpooky_02_Stage1_Stump = new PrefabGUID(-284504908); public static readonly PrefabGUID TM_DeadSpooky_03_Stage0 = new PrefabGUID(1143574029); public static readonly PrefabGUID TM_DeadSpooky_03_Stage0_Stump = new PrefabGUID(-28679345); public static readonly PrefabGUID TM_DeadSpooky_03_Stage1 = new PrefabGUID(-97981069); public static readonly PrefabGUID TM_DeadSpooky_03_Stage1_Stump = new PrefabGUID(699401289); public static readonly PrefabGUID TM_DeadSpooky_04_Stage0 = new PrefabGUID(2096441022); public static readonly PrefabGUID TM_DeadSpooky_04_Stage0_Stump = new PrefabGUID(-410126265); public static readonly PrefabGUID TM_DeadSpooky_04_Stage1 = new PrefabGUID(413943116); public static readonly PrefabGUID TM_DeadSpooky_04_Stage1_Stump = new PrefabGUID(-325912346); public static readonly PrefabGUID TM_DeadSpooky_Sapling = new PrefabGUID(1952466279); public static readonly PrefabGUID TM_DeadStump_01_Stage0 = new PrefabGUID(1033696554); public static readonly PrefabGUID TM_DeadStump_01_Stage0_Stump = new PrefabGUID(-540931786); public static readonly PrefabGUID TM_DeadStump_01_Stage1 = new PrefabGUID(-1444946765); public static readonly PrefabGUID TM_DeadStump_01_Stage1_Stump = new PrefabGUID(872823277); public static readonly PrefabGUID TM_DeadStump_02_Stage0 = new PrefabGUID(-1954747176); public static readonly PrefabGUID TM_DeadStump_02_Stage0_Stump = new PrefabGUID(-549750388); public static readonly PrefabGUID TM_DeadStump_02_Stage1 = new PrefabGUID(-497671168); public static readonly PrefabGUID TM_DeadStump_02_Stage1_Stump = new PrefabGUID(771210306); public static readonly PrefabGUID TM_DeadStump_03_Stage0 = new PrefabGUID(-1662368050); public static readonly PrefabGUID TM_DeadStump_03_Stage0_Stump = new PrefabGUID(-223426219); public static readonly PrefabGUID TM_DeadStump_03_Stage1 = new PrefabGUID(-365578071); public static readonly PrefabGUID TM_DeadStump_03_Stage1_Stump = new PrefabGUID(2078391444); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage0 = new PrefabGUID(-683043764); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage0_Stump = new PrefabGUID(337583994); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage1 = new PrefabGUID(514636229); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage1_Stump = new PrefabGUID(-313495302); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage0 = new PrefabGUID(2009402570); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage0_Stump = new PrefabGUID(-1252264290); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage1 = new PrefabGUID(-1430987741); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage1_Stump = new PrefabGUID(463023447); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage0 = new PrefabGUID(-19455682); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage0_Stump = new PrefabGUID(327056959); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage1 = new PrefabGUID(2064764291); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage1_Stump = new PrefabGUID(-1872754279); public static readonly PrefabGUID TM_DeadStump_CursedForest_Sapling = new PrefabGUID(1188456042); public static readonly PrefabGUID TM_DeadStump_Sapling = new PrefabGUID(1070255808); public static readonly PrefabGUID TM_Debug_EquipmentChest_Empty = new PrefabGUID(1009569231); public static readonly PrefabGUID TM_Debug_EquipmentChest_T01 = new PrefabGUID(-1927464065); public static readonly PrefabGUID TM_Debug_EquipmentChest_T02 = new PrefabGUID(1874062092); public static readonly PrefabGUID TM_Debug_EquipmentChest_T03 = new PrefabGUID(758091090); public static readonly PrefabGUID TM_Debug_EquipmentChest_T04 = new PrefabGUID(-1034898863); public static readonly PrefabGUID TM_Debug_SpellKitChest_TXX = new PrefabGUID(-1058308594); public static readonly PrefabGUID TM_Debug_UserTestChest_T01 = new PrefabGUID(-2008615383); public static readonly PrefabGUID TM_Debug_UserTestChest_T02 = new PrefabGUID(245436617); public static readonly PrefabGUID TM_Debug_UserTestChest_T04 = new PrefabGUID(582927466); public static readonly PrefabGUID TM_Debug_UserTestChest_T06 = new PrefabGUID(130141627); public static readonly PrefabGUID TM_DenseDynamicClouds_Zone_Area01 = new PrefabGUID(-1811178896); public static readonly PrefabGUID TM_Destructible_DraculasCastle_Pillar01 = new PrefabGUID(1934867279); public static readonly PrefabGUID TM_Door_IronFenceGate_01 = new PrefabGUID(214850088); public static readonly PrefabGUID TM_Dracula_DestroyedPillar01 = new PrefabGUID(-798366867); public static readonly PrefabGUID TM_Dracula_WarpRift_Entrance = new PrefabGUID(950546355); public static readonly PrefabGUID TM_Dracula_WarpRift_ExitNode = new PrefabGUID(-959575891); public static readonly PrefabGUID TM_Dracula_WarpRift_GoToDemise = new PrefabGUID(-140123614); public static readonly PrefabGUID TM_Dracula_WarpRift_LeaveFight = new PrefabGUID(1670626205); public static readonly PrefabGUID TM_DraculasCastle_Banner_Clean01 = new PrefabGUID(-970935036); public static readonly PrefabGUID TM_DraculasCastle_Banner_Clean01_Fade = new PrefabGUID(-1461096846); public static readonly PrefabGUID TM_DraculasCastle_Banner_Ruin01 = new PrefabGUID(-182987790); public static readonly PrefabGUID TM_DraculasCastle_Banner_Ruin02 = new PrefabGUID(-594214561); public static readonly PrefabGUID TM_DraculasCastle_Banner_Ruin03 = new PrefabGUID(1907492709); public static readonly PrefabGUID TM_DraculasCastle_Throne_Clean01 = new PrefabGUID(-151766050); public static readonly PrefabGUID TM_DraculaThroneRoom_MOCKUP = new PrefabGUID(-1203306945); public static readonly PrefabGUID TM_DryWood_01_Stage0 = new PrefabGUID(300492639); public static readonly PrefabGUID TM_DryWood_01_Stage0_Stump = new PrefabGUID(-523697868); public static readonly PrefabGUID TM_DryWood_02_Stage0 = new PrefabGUID(-782673388); public static readonly PrefabGUID TM_DryWood_02_Stage0_Stump = new PrefabGUID(1287513210); public static readonly PrefabGUID TM_DryWood_03_Stage0 = new PrefabGUID(-1909236356); public static readonly PrefabGUID TM_DryWood_03_Stage0_Stump = new PrefabGUID(-1597872396); public static readonly PrefabGUID TM_Duel_Area = new PrefabGUID(-893175652); public static readonly PrefabGUID TM_Duel_Flag = new PrefabGUID(871546629); public static readonly PrefabGUID TM_EH_EMP_Placeable_T01 = new PrefabGUID(-259301876); public static readonly PrefabGUID TM_EH_Mines_ExplosiveBarrel = new PrefabGUID(382870549); public static readonly PrefabGUID TM_EH_Mines_ExplosiveBarrel_Placeable_T01 = new PrefabGUID(-1401715476); public static readonly PrefabGUID TM_EH_Mines_ExplosiveBarrel_Placeable_T02 = new PrefabGUID(2036168659); public static readonly PrefabGUID TM_Elris_Bag_01 = new PrefabGUID(-1437395691); public static readonly PrefabGUID TM_Elris_Bag_02 = new PrefabGUID(-925821559); public static readonly PrefabGUID TM_Elris_Bag_03 = new PrefabGUID(-1391306605); public static readonly PrefabGUID TM_Elris_Bags_01 = new PrefabGUID(167350142); public static readonly PrefabGUID TM_Elris_Bed_01 = new PrefabGUID(1336704929); public static readonly PrefabGUID TM_Elris_Bench_01 = new PrefabGUID(-2003363684); public static readonly PrefabGUID TM_Elris_CookingFireplace_small01 = new PrefabGUID(1923631185); public static readonly PrefabGUID TM_Elris_CookingFireplace01 = new PrefabGUID(1795305530); public static readonly PrefabGUID TM_Elris_Fence_Broken = new PrefabGUID(1725310907); public static readonly PrefabGUID TM_Elris_Fence_Diagonal_Broken = new PrefabGUID(1929572285); public static readonly PrefabGUID TM_Elris_Fishpole_01 = new PrefabGUID(-1018613431); public static readonly PrefabGUID TM_Elris_Fishpole_02 = new PrefabGUID(876105528); public static readonly PrefabGUID TM_Elris_Hangingfish_01 = new PrefabGUID(-992142516); public static readonly PrefabGUID TM_Elris_Hidebag_01 = new PrefabGUID(1577387071); public static readonly PrefabGUID TM_Elris_RockCluster_14_Original = new PrefabGUID(-1947696681); public static readonly PrefabGUID TM_Elris_Sled01 = new PrefabGUID(677969388); public static readonly PrefabGUID TM_Elris_Sled02 = new PrefabGUID(-633597938); public static readonly PrefabGUID TM_Elris_Sled03 = new PrefabGUID(372796507); public static readonly PrefabGUID TM_Elris_Stool_01 = new PrefabGUID(-1041511902); public static readonly PrefabGUID TM_Elris_Stool_02 = new PrefabGUID(188374087); public static readonly PrefabGUID TM_Elris_Table_01 = new PrefabGUID(1082846); public static readonly PrefabGUID TM_Elris_Table_02 = new PrefabGUID(39867855); public static readonly PrefabGUID TM_Elris_Table_03 = new PrefabGUID(881930323); public static readonly PrefabGUID TM_Elris_Well_01 = new PrefabGUID(240462700); public static readonly PrefabGUID TM_Elris_WildlingFlag01 = new PrefabGUID(1051647935); public static readonly PrefabGUID TM_Elris_WildlingFlag02 = new PrefabGUID(1831814699); public static readonly PrefabGUID TM_Elris_WildlingFlag03 = new PrefabGUID(-1993182231); public static readonly PrefabGUID TM_ElrisMountain_FireAltar01 = new PrefabGUID(-122875804); public static readonly PrefabGUID TM_ElrisMountain_LargeFirePit01 = new PrefabGUID(-1985446265); public static readonly PrefabGUID TM_ElrisMountain_LargeFirePit02 = new PrefabGUID(-1644674988); public static readonly PrefabGUID TM_ElrisMountain_LargeFirePit03 = new PrefabGUID(1737841485); public static readonly PrefabGUID TM_ElrisMountain_WildlingGraveyard01 = new PrefabGUID(816386984); public static readonly PrefabGUID TM_Emery_01_Rubble = new PrefabGUID(-558033926); public static readonly PrefabGUID TM_Emery_01_Stage0_Resource = new PrefabGUID(-78152017); public static readonly PrefabGUID TM_Emery_01_Stage1_Resource = new PrefabGUID(720904076); public static readonly PrefabGUID TM_Emery_02_Rubble = new PrefabGUID(-928659757); public static readonly PrefabGUID TM_Emery_02_Stage0_Resource = new PrefabGUID(1686044871); public static readonly PrefabGUID TM_Emery_02_Stage1_Resource = new PrefabGUID(420948369); public static readonly PrefabGUID TM_Emery_03_Rubble = new PrefabGUID(1672205675); public static readonly PrefabGUID TM_Emery_03_Stage0_Resource = new PrefabGUID(262699362); public static readonly PrefabGUID TM_Emery_03_Stage1_Resource = new PrefabGUID(-382478847); public static readonly PrefabGUID TM_EmeryBig_01_Rubble = new PrefabGUID(1606524383); public static readonly PrefabGUID TM_EmeryBig_01_Stage0_Resource = new PrefabGUID(1281859402); public static readonly PrefabGUID TM_EmeryBig_01_Stage1_Resource = new PrefabGUID(-481993372); public static readonly PrefabGUID TM_EmeryMedium_01_Rubble = new PrefabGUID(-1268946559); public static readonly PrefabGUID TM_EmeryMedium_01_Stage0_Resource = new PrefabGUID(1179023414); public static readonly PrefabGUID TM_EmeryMedium_01_Stage1_Resource = new PrefabGUID(1834638218); public static readonly PrefabGUID TM_ExitGate_01 = new PrefabGUID(-394351506); public static readonly PrefabGUID TM_FarmRuin_Pillar01 = new PrefabGUID(564267843); public static readonly PrefabGUID TM_FarmRuin_Pillar02 = new PrefabGUID(-1009494057); public static readonly PrefabGUID TM_FarmRuin_Pillar03 = new PrefabGUID(-1930848471); public static readonly PrefabGUID TM_FarmRuin_Pillar04 = new PrefabGUID(-940270536); public static readonly PrefabGUID TM_FarmRuin_Pillar05 = new PrefabGUID(-551702706); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar01 = new PrefabGUID(1459668113); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar02 = new PrefabGUID(1160918953); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar03 = new PrefabGUID(626147733); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar04 = new PrefabGUID(1730985692); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal01 = new PrefabGUID(403026434); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal02 = new PrefabGUID(2123099022); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal03 = new PrefabGUID(-1016136771); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal04 = new PrefabGUID(-1247952575); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall01 = new PrefabGUID(1470839455); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall02 = new PrefabGUID(1141784137); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall03 = new PrefabGUID(1874671041); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall04 = new PrefabGUID(944871581); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal01 = new PrefabGUID(-200164224); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal02 = new PrefabGUID(-74306974); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal03 = new PrefabGUID(-288901931); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal04 = new PrefabGUID(946615972); public static readonly PrefabGUID TM_FarmRuin_Wall01 = new PrefabGUID(-1008320860); public static readonly PrefabGUID TM_FarmRuin_Wall02 = new PrefabGUID(-764910472); public static readonly PrefabGUID TM_FarmRuin_Wall03 = new PrefabGUID(126822819); public static readonly PrefabGUID TM_FarmRuin_Wall04 = new PrefabGUID(-807733155); public static readonly PrefabGUID TM_FarmRuin_Wall05 = new PrefabGUID(1169196596); public static readonly PrefabGUID TM_FarmRuin_Wall06 = new PrefabGUID(210029774); public static readonly PrefabGUID TM_FarmRuin_Wall07 = new PrefabGUID(-1986127521); public static readonly PrefabGUID TM_FarmRuin_Wall08 = new PrefabGUID(-660510569); public static readonly PrefabGUID TM_FarmRuin_Wall09 = new PrefabGUID(-664009511); public static readonly PrefabGUID TM_Fence_Elris_01 = new PrefabGUID(-8537381); public static readonly PrefabGUID TM_Fence_Elris_02 = new PrefabGUID(638061504); public static readonly PrefabGUID TM_Fence_Elris_03 = new PrefabGUID(-1269847487); public static readonly PrefabGUID TM_Fence_Elris_Diagonal_01 = new PrefabGUID(195270950); public static readonly PrefabGUID TM_Fence_Elris_Diagonal_02 = new PrefabGUID(-666396801); public static readonly PrefabGUID TM_Fence_IronFence_01 = new PrefabGUID(1037949815); public static readonly PrefabGUID TM_FencePole_IronFencePole_01 = new PrefabGUID(-1399879731); public static readonly PrefabGUID TM_FineBed_01 = new PrefabGUID(163041517); public static readonly PrefabGUID TM_FineDrawers_01_Empty = new PrefabGUID(761477334); public static readonly PrefabGUID TM_FineDrawers_01_Full = new PrefabGUID(-1974200575); public static readonly PrefabGUID TM_FineIronFence_02_Fence = new PrefabGUID(-1095586593); public static readonly PrefabGUID TM_FineIronFence_02_Fence_Broken = new PrefabGUID(-899764896); public static readonly PrefabGUID TM_FineIronFenceGate_01_Door = new PrefabGUID(-824199379); public static readonly PrefabGUID TM_FineIronFenceGate_02_Door = new PrefabGUID(1526551911); public static readonly PrefabGUID TM_FineIronFencePole_02 = new PrefabGUID(2099677539); public static readonly PrefabGUID TM_FineIronFencePole_02_Broken = new PrefabGUID(1469449202); public static readonly PrefabGUID TM_FineLampPost_01 = new PrefabGUID(1618677147); public static readonly PrefabGUID TM_FineLampPost_02 = new PrefabGUID(762538977); public static readonly PrefabGUID TM_FineLampPost_03 = new PrefabGUID(-398962425); public static readonly PrefabGUID TM_FineStoneBench_01 = new PrefabGUID(1763816865); public static readonly PrefabGUID TM_FineStoneBench_01_Broken = new PrefabGUID(513551503); public static readonly PrefabGUID TM_FineTomb_01 = new PrefabGUID(-1640166222); public static readonly PrefabGUID TM_FineTomb_01_Broken = new PrefabGUID(-2045783191); public static readonly PrefabGUID TM_FineTomb_02 = new PrefabGUID(-339775330); public static readonly PrefabGUID TM_FineTomb_02_Broken = new PrefabGUID(2072843322); public static readonly PrefabGUID TM_FineTomb_03 = new PrefabGUID(-701495664); public static readonly PrefabGUID TM_FineTomb_03_Broken = new PrefabGUID(1998193698); public static readonly PrefabGUID TM_FineTomb_04 = new PrefabGUID(487554588); public static readonly PrefabGUID TM_FineTomb_04_Broken = new PrefabGUID(1636550609); public static readonly PrefabGUID TM_FineTomb_05 = new PrefabGUID(-1651245914); public static readonly PrefabGUID TM_FineTomb_05_Broken = new PrefabGUID(369456797); public static readonly PrefabGUID TM_FineTomb_06 = new PrefabGUID(-1045153505); public static readonly PrefabGUID TM_FineTomb_06_Broken = new PrefabGUID(1543021107); public static readonly PrefabGUID TM_FineTomb_07 = new PrefabGUID(-1027794280); public static readonly PrefabGUID TM_FineTomb_07_Broken = new PrefabGUID(-13129077); public static readonly PrefabGUID TM_FineTomb_08 = new PrefabGUID(1940705891); public static readonly PrefabGUID TM_FineTomb_08_Broken = new PrefabGUID(1059395634); public static readonly PrefabGUID TM_FineTombBig_01 = new PrefabGUID(215889746); public static readonly PrefabGUID TM_FineTombBig_01_Broken = new PrefabGUID(1304502946); public static readonly PrefabGUID TM_FineTombBig_02 = new PrefabGUID(-198407322); public static readonly PrefabGUID TM_FineTombBig_02_Broken = new PrefabGUID(-354238234); public static readonly PrefabGUID TM_FineTombBig_03 = new PrefabGUID(1453773191); public static readonly PrefabGUID TM_FineTombBig_03_Broken = new PrefabGUID(-883147074); public static readonly PrefabGUID TM_FineWoodenChair_01 = new PrefabGUID(-583808378); public static readonly PrefabGUID TM_FineWoodenSideTable_01 = new PrefabGUID(-189652499); public static readonly PrefabGUID TM_FineWoodenTable_01 = new PrefabGUID(-1031114114); public static readonly PrefabGUID TM_FineWoodenTable_Vineyard01 = new PrefabGUID(1848259910); public static readonly PrefabGUID TM_ForgeMaster_Barrel01 = new PrefabGUID(-1131571757); public static readonly PrefabGUID TM_ForgeMaster_Barrel02 = new PrefabGUID(1385018335); public static readonly PrefabGUID TM_ForgeMaster_Weaponrack01 = new PrefabGUID(-1865424450); public static readonly PrefabGUID TM_Fortressoflight_Altar01 = new PrefabGUID(1431434529); public static readonly PrefabGUID TM_Fortressoflight_Brazier01 = new PrefabGUID(-600276275); public static readonly PrefabGUID TM_Fortressoflight_Brazier03 = new PrefabGUID(1777636932); public static readonly PrefabGUID TM_FortressOfLight_Railing_01 = new PrefabGUID(2116494627); public static readonly PrefabGUID TM_FortressOfLight_Railing_01_Broken = new PrefabGUID(646244065); public static readonly PrefabGUID TM_FortressOfLight_Railing_01_Flipped = new PrefabGUID(-682269957); public static readonly PrefabGUID TM_FortressOfLight_Railing_02 = new PrefabGUID(2146657213); public static readonly PrefabGUID TM_FortressOfLight_Railing_03 = new PrefabGUID(-1375806908); public static readonly PrefabGUID TM_FortressOfLight_Railing_03_Flipped = new PrefabGUID(1028661646); public static readonly PrefabGUID TM_FortressOfLight_Railing_Pillar_01 = new PrefabGUID(-2046287766); public static readonly PrefabGUID TM_FortressOfLight_Railing_Pillar_Broken_01 = new PrefabGUID(-624627538); public static readonly PrefabGUID TM_Framework_SunShelter = new PrefabGUID(1065960329); public static readonly PrefabGUID TM_Gallows_Large_01 = new PrefabGUID(-1239237183); public static readonly PrefabGUID TM_Gallows_Small_01 = new PrefabGUID(-1389381036); public static readonly PrefabGUID TM_Gallows_Small_02 = new PrefabGUID(-1845783560); public static readonly PrefabGUID TM_Garlic_Zone_Area01 = new PrefabGUID(2136523022); public static readonly PrefabGUID TM_Gazebo_Alchemyboard01 = new PrefabGUID(-1930317586); public static readonly PrefabGUID TM_Gazebo_Alchemytable01 = new PrefabGUID(-1671305118); public static readonly PrefabGUID TM_Gazebo_Alchemytable02 = new PrefabGUID(2111397204); public static readonly PrefabGUID TM_GemCrude_01_Rubble = new PrefabGUID(-1890701523); public static readonly PrefabGUID TM_GemCrude_01_Stage0_Resource = new PrefabGUID(-1069591701); public static readonly PrefabGUID TM_GemCrude_01_Stage1_Resource = new PrefabGUID(311396498); public static readonly PrefabGUID TM_GemFlawless_01_Rubble = new PrefabGUID(-166211366); public static readonly PrefabGUID TM_GemFlawless_01_Stage0_Resource = new PrefabGUID(1761375763); public static readonly PrefabGUID TM_GemFlawless_01_Stage1_Resource = new PrefabGUID(-1293752476); public static readonly PrefabGUID TM_GemRegular_01_Rubble = new PrefabGUID(2097157446); public static readonly PrefabGUID TM_GemRegular_01_Stage0_Resource = new PrefabGUID(-1486510754); public static readonly PrefabGUID TM_GemRegular_01_Stage1_Resource = new PrefabGUID(1842704508); public static readonly PrefabGUID TM_General_Entrance_Gate = new PrefabGUID(200761932); public static readonly PrefabGUID TM_Geomancer_RockSlam_Object = new PrefabGUID(1322424290); public static readonly PrefabGUID TM_GhostCrate_01 = new PrefabGUID(-919230492); public static readonly PrefabGUID TM_GhostCrate_02 = new PrefabGUID(1653638891); public static readonly PrefabGUID TM_GhostCrateLarge_01 = new PrefabGUID(-1972516446); public static readonly PrefabGUID TM_GhostCrateLarge_02 = new PrefabGUID(-992784199); public static readonly PrefabGUID TM_GhostCrystal_01_Rubble = new PrefabGUID(914118286); public static readonly PrefabGUID TM_GhostCrystal_01_Stage0_Resource = new PrefabGUID(-90615335); public static readonly PrefabGUID TM_GhostCrystal_01_Stage1_Resource = new PrefabGUID(-223339940); public static readonly PrefabGUID TM_GhostCrystal_02_Rubble = new PrefabGUID(1089598643); public static readonly PrefabGUID TM_GhostCrystal_02_Stage0_Resource = new PrefabGUID(-869713104); public static readonly PrefabGUID TM_GhostCrystal_02_Stage1_Resource = new PrefabGUID(-1367218098); public static readonly PrefabGUID TM_GhostCrystal_03_Rubble = new PrefabGUID(-1606368536); public static readonly PrefabGUID TM_GhostCrystal_03_Stage0_Resource = new PrefabGUID(1043824874); public static readonly PrefabGUID TM_GhostCrystal_03_Stage1_Resource = new PrefabGUID(539822787); public static readonly PrefabGUID TM_GhostHouse_Drawers_01_Empty = new PrefabGUID(-1585266061); public static readonly PrefabGUID TM_GhostHouse_Drawers_01_Full = new PrefabGUID(-1005494041); public static readonly PrefabGUID TM_GhostHouse_Drawers_02_Empty = new PrefabGUID(30902388); public static readonly PrefabGUID TM_GhostHouse_Drawers_02_Full = new PrefabGUID(1410544856); public static readonly PrefabGUID TM_GhostHouse_Drawers_03_Empty = new PrefabGUID(982714900); public static readonly PrefabGUID TM_GhostHouse_Drawers_03_Full = new PrefabGUID(876670224); public static readonly PrefabGUID TM_GhostHouse_Drawers_04_Empty = new PrefabGUID(428144368); public static readonly PrefabGUID TM_GhostHouse_Drawers_04_Full = new PrefabGUID(-419043954); public static readonly PrefabGUID TM_GhostHouseBed_01 = new PrefabGUID(124989740); public static readonly PrefabGUID TM_GhostHouseChair01 = new PrefabGUID(1551003305); public static readonly PrefabGUID TM_GhostHouseChair02 = new PrefabGUID(1506465082); public static readonly PrefabGUID TM_GhosthouseTable_01 = new PrefabGUID(958176926); public static readonly PrefabGUID TM_GhostHouseTable_02 = new PrefabGUID(1788937489); public static readonly PrefabGUID TM_GhostHouseTable_03 = new PrefabGUID(652874609); public static readonly PrefabGUID TM_GhostHouseTable_04 = new PrefabGUID(2014850079); public static readonly PrefabGUID TM_Glassblower_Barrel01 = new PrefabGUID(1234242138); public static readonly PrefabGUID TM_Glassblower_Barrel02 = new PrefabGUID(-270304875); public static readonly PrefabGUID TM_Glassblower_Barrel03 = new PrefabGUID(1429308263); public static readonly PrefabGUID TM_Glassblower_Bucket01 = new PrefabGUID(-876387423); public static readonly PrefabGUID TM_Glassblower_Bucket02 = new PrefabGUID(184851900); public static readonly PrefabGUID TM_Glassblower_Crate01 = new PrefabGUID(251142158); public static readonly PrefabGUID TM_Glassblower_Crate02 = new PrefabGUID(-1163107789); public static readonly PrefabGUID TM_Glassblower_Crate03 = new PrefabGUID(1560761362); public static readonly PrefabGUID TM_Glassblower_Crate04 = new PrefabGUID(-1815511188); public static readonly PrefabGUID TM_Glassblower_Minecart01 = new PrefabGUID(-252175085); public static readonly PrefabGUID TM_Glassblower_Minecart02 = new PrefabGUID(-719727939); public static readonly PrefabGUID TM_Glassblower_Table01 = new PrefabGUID(-127144214); public static readonly PrefabGUID TM_Glassblower_Table02 = new PrefabGUID(-2091585646); public static readonly PrefabGUID TM_Glassblower_Table03 = new PrefabGUID(1196353204); public static readonly PrefabGUID TM_Glassblower_Table04 = new PrefabGUID(420815389); public static readonly PrefabGUID TM_Glassblower_Table05 = new PrefabGUID(1367308908); public static readonly PrefabGUID TM_Glassblower_Table06 = new PrefabGUID(2035740421); public static readonly PrefabGUID TM_Glassblower_Table07 = new PrefabGUID(-851305215); public static readonly PrefabGUID TM_Glassblower_Toolstand01 = new PrefabGUID(604840602); public static readonly PrefabGUID TM_Glassblower_Toolstand02 = new PrefabGUID(1965217615); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow01 = new PrefabGUID(-412750000); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow02 = new PrefabGUID(932061635); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow03 = new PrefabGUID(2034318526); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow04 = new PrefabGUID(2113504048); public static readonly PrefabGUID TM_Gloomrot_01_Fence = new PrefabGUID(2060925336); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Broken = new PrefabGUID(1273969275); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Gate01 = new PrefabGUID(-1256461768); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Gate02 = new PrefabGUID(-1453223196); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Gate02_RATSONLY = new PrefabGUID(-692291089); public static readonly PrefabGUID TM_Gloomrot_01_Stage0 = new PrefabGUID(1796232117); public static readonly PrefabGUID TM_Gloomrot_01_Stage0_Stump = new PrefabGUID(-939788838); public static readonly PrefabGUID TM_Gloomrot_01_Stage1 = new PrefabGUID(-1663422471); public static readonly PrefabGUID TM_Gloomrot_01_Stage1_Stump = new PrefabGUID(-428052107); public static readonly PrefabGUID TM_Gloomrot_02_Fence = new PrefabGUID(-1568890586); public static readonly PrefabGUID TM_Gloomrot_02_Fence_Broken = new PrefabGUID(-550151048); public static readonly PrefabGUID TM_Gloomrot_02_Stage0 = new PrefabGUID(160102012); public static readonly PrefabGUID TM_Gloomrot_02_Stage0_Stump = new PrefabGUID(2037191637); public static readonly PrefabGUID TM_Gloomrot_02_Stage1 = new PrefabGUID(-400994581); public static readonly PrefabGUID TM_Gloomrot_02_Stage1_Stump = new PrefabGUID(-17077537); public static readonly PrefabGUID TM_Gloomrot_03_Fence = new PrefabGUID(980525611); public static readonly PrefabGUID TM_Gloomrot_03_Fence_Broken = new PrefabGUID(-486853008); public static readonly PrefabGUID TM_Gloomrot_03_Fence_RATSONLY = new PrefabGUID(-1529676833); public static readonly PrefabGUID TM_Gloomrot_03_Stage0 = new PrefabGUID(-1608739185); public static readonly PrefabGUID TM_Gloomrot_03_Stage0_Stump = new PrefabGUID(-281102246); public static readonly PrefabGUID TM_Gloomrot_03_Stage1 = new PrefabGUID(-528295829); public static readonly PrefabGUID TM_Gloomrot_03_Stage1_Stump = new PrefabGUID(-1523001857); public static readonly PrefabGUID TM_Gloomrot_04_Fence = new PrefabGUID(-918685652); public static readonly PrefabGUID TM_Gloomrot_04_Fence_Broken = new PrefabGUID(-2100024305); public static readonly PrefabGUID TM_Gloomrot_04_Fence_RATSONLY = new PrefabGUID(-1596934771); public static readonly PrefabGUID TM_Gloomrot_04_Stage0 = new PrefabGUID(-600486747); public static readonly PrefabGUID TM_Gloomrot_04_Stage0_Stump = new PrefabGUID(2117350865); public static readonly PrefabGUID TM_Gloomrot_04_Stage1 = new PrefabGUID(322453017); public static readonly PrefabGUID TM_Gloomrot_04_Stage1_Stump = new PrefabGUID(1016538426); public static readonly PrefabGUID TM_Gloomrot_05_Stage0 = new PrefabGUID(-342156098); public static readonly PrefabGUID TM_Gloomrot_05_Stage0_Stump = new PrefabGUID(-10930506); public static readonly PrefabGUID TM_Gloomrot_05_Stage1 = new PrefabGUID(1702172788); public static readonly PrefabGUID TM_Gloomrot_05_Stage1_Stump = new PrefabGUID(-1614877390); public static readonly PrefabGUID TM_Gloomrot_06_Stage0 = new PrefabGUID(-254483099); public static readonly PrefabGUID TM_Gloomrot_06_Stage0_Stump = new PrefabGUID(2106738828); public static readonly PrefabGUID TM_Gloomrot_06_Stage1 = new PrefabGUID(-923032215); public static readonly PrefabGUID TM_Gloomrot_06_Stage1_Stump = new PrefabGUID(-767391163); public static readonly PrefabGUID TM_Gloomrot_07_Stage0 = new PrefabGUID(-949458981); public static readonly PrefabGUID TM_Gloomrot_07_Stage0_Stump = new PrefabGUID(216806662); public static readonly PrefabGUID TM_Gloomrot_07_Stage1 = new PrefabGUID(-233539243); public static readonly PrefabGUID TM_Gloomrot_07_Stage1_Stump = new PrefabGUID(2095791708); public static readonly PrefabGUID TM_Gloomrot_08_Stage0 = new PrefabGUID(1762116124); public static readonly PrefabGUID TM_Gloomrot_08_Stage0_Stump = new PrefabGUID(-1042808221); public static readonly PrefabGUID TM_Gloomrot_08_Stage1 = new PrefabGUID(1109538878); public static readonly PrefabGUID TM_Gloomrot_08_Stage1_Stump = new PrefabGUID(-269744743); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_01_Fence = new PrefabGUID(24665476); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_01_Fence_Broken = new PrefabGUID(1836611107); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_02_Fence = new PrefabGUID(720254972); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_03_Fence = new PrefabGUID(329340708); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_04_Fence = new PrefabGUID(-1782561494); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_04_Fence_Broken = new PrefabGUID(825505358); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_01_Fence = new PrefabGUID(-420341460); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_01_Fence_Broken = new PrefabGUID(1265189675); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_02_Fence = new PrefabGUID(2065353600); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_02_Fence_Broken = new PrefabGUID(1436568463); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_End01 = new PrefabGUID(885764832); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_End01_broken = new PrefabGUID(2006634648); public static readonly PrefabGUID TM_GloomRot_BookCase01_Empty = new PrefabGUID(-237221621); public static readonly PrefabGUID TM_GloomRot_BookCase01_Full = new PrefabGUID(1593042250); public static readonly PrefabGUID TM_GloomRot_BookCase02_Full = new PrefabGUID(-215532440); public static readonly PrefabGUID TM_GloomRot_Cabinet01_Empty = new PrefabGUID(-405286872); public static readonly PrefabGUID TM_GloomRot_Cabinet01_Full = new PrefabGUID(237932045); public static readonly PrefabGUID TM_GloomRot_Cabinet02_Empty = new PrefabGUID(-1193928824); public static readonly PrefabGUID TM_GloomRot_Cabinet02_Full = new PrefabGUID(1609325994); public static readonly PrefabGUID TM_GloomRot_Cage01 = new PrefabGUID(-1919573717); public static readonly PrefabGUID TM_GloomRot_Cage02 = new PrefabGUID(1854255284); public static readonly PrefabGUID TM_GloomRot_Cage03 = new PrefabGUID(980549882); public static readonly PrefabGUID TM_GloomRot_Cage04 = new PrefabGUID(728727398); public static readonly PrefabGUID TM_GloomRot_Chair01 = new PrefabGUID(1434483374); public static readonly PrefabGUID TM_GloomRot_CoilFactory_Lamp01 = new PrefabGUID(1374604685); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_Screen01 = new PrefabGUID(-823234507); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_Screen02 = new PrefabGUID(-438607955); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf01 = new PrefabGUID(-336652576); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf02 = new PrefabGUID(-388299514); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf03 = new PrefabGUID(-27925453); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf04 = new PrefabGUID(-1987571028); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Table01 = new PrefabGUID(1715597645); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Table02 = new PrefabGUID(-2021976578); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Table03 = new PrefabGUID(-1329936073); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy01 = new PrefabGUID(-707943613); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy02 = new PrefabGUID(-2042192583); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy03 = new PrefabGUID(-1650557480); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy04 = new PrefabGUID(786475626); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01 = new PrefabGUID(1091322909); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01_01 = new PrefabGUID(-2033529653); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01_02 = new PrefabGUID(-425896601); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01_03 = new PrefabGUID(-1357882456); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02 = new PrefabGUID(1818084716); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_01 = new PrefabGUID(-1221205186); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_02 = new PrefabGUID(-848839529); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_03 = new PrefabGUID(801272957); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_04 = new PrefabGUID(-1754097893); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_05 = new PrefabGUID(-643118335); public static readonly PrefabGUID TM_Gloomrot_Coppermine_Lamp01 = new PrefabGUID(1816636463); public static readonly PrefabGUID TM_Gloomrot_Coppermine_Lamp02 = new PrefabGUID(-472846425); public static readonly PrefabGUID TM_Gloomrot_Coppermine_Lamp03 = new PrefabGUID(-1362913394); public static readonly PrefabGUID TM_GloomRot_Desk01_Empty = new PrefabGUID(732337264); public static readonly PrefabGUID TM_GloomRot_Desk01_Full = new PrefabGUID(1092828792); public static readonly PrefabGUID TM_Gloomrot_Diagonal_01_Fence = new PrefabGUID(1256800588); public static readonly PrefabGUID TM_Gloomrot_Diagonal_01_Fence_Broken = new PrefabGUID(1991007649); public static readonly PrefabGUID TM_Gloomrot_Diagonal_02_Fence = new PrefabGUID(-1888682553); public static readonly PrefabGUID TM_Gloomrot_Diagonal_02_Fence_Broken = new PrefabGUID(408849938); public static readonly PrefabGUID TM_Gloomrot_Diagonal_02_Fence_RATSONLY = new PrefabGUID(1827799014); public static readonly PrefabGUID TM_Gloomrot_End01 = new PrefabGUID(-1155298458); public static readonly PrefabGUID TM_Gloomrot_End01_broken = new PrefabGUID(-1756987711); public static readonly PrefabGUID TM_Gloomrot_End02 = new PrefabGUID(-1267619053); public static readonly PrefabGUID TM_Gloomrot_End02_broken = new PrefabGUID(700286203); public static readonly PrefabGUID TM_Gloomrot_End02_RATSONLY = new PrefabGUID(-1777017033); public static readonly PrefabGUID TM_Gloomrot_Farm_Lamp01 = new PrefabGUID(-1135654416); public static readonly PrefabGUID TM_Gloomrot_Farm_Tank01 = new PrefabGUID(-382854056); public static readonly PrefabGUID TM_Gloomrot_Farm01 = new PrefabGUID(1121868423); public static readonly PrefabGUID TM_Gloomrot_Farm02 = new PrefabGUID(1049242026); public static readonly PrefabGUID TM_GloomRot_Fence_Wood_Broken01 = new PrefabGUID(-1818525545); public static readonly PrefabGUID TM_GloomRot_Fence_Wood_Diagonal_Broken01 = new PrefabGUID(-414378276); public static readonly PrefabGUID TM_GloomRot_Fence_Wood_Diagonal01 = new PrefabGUID(1801415416); public static readonly PrefabGUID TM_GloomRot_Fence_Wood01 = new PrefabGUID(-1115102517); public static readonly PrefabGUID TM_GloomRot_Fence_Wood02 = new PrefabGUID(1883894247); public static readonly PrefabGUID TM_Gloomrot_Fireplace_01 = new PrefabGUID(250247176); public static readonly PrefabGUID TM_Gloomrot_Fireplace_01_FireOn = new PrefabGUID(-755710255); public static readonly PrefabGUID TM_Gloomrot_Fireplace_02 = new PrefabGUID(1882392978); public static readonly PrefabGUID TM_Gloomrot_Fireplace_02_FireOn = new PrefabGUID(-1210508642); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_01 = new PrefabGUID(1514112203); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_01_FireOn = new PrefabGUID(-464366914); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_02 = new PrefabGUID(1388325140); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_02_FireOn = new PrefabGUID(-976503984); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair_Body01 = new PrefabGUID(114706283); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair_Body02 = new PrefabGUID(-621940556); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair01 = new PrefabGUID(65705351); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair02 = new PrefabGUID(1797473170); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair03 = new PrefabGUID(269283193); public static readonly PrefabGUID TM_GloomRot_Laboratory_Drape01 = new PrefabGUID(1762187635); public static readonly PrefabGUID TM_GloomRot_Laboratory_Drape02 = new PrefabGUID(-2003754628); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table01 = new PrefabGUID(-1046973379); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table02 = new PrefabGUID(-250861483); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table03 = new PrefabGUID(-542467085); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table04 = new PrefabGUID(-770563232); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table05 = new PrefabGUID(917686046); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table06 = new PrefabGUID(649243701); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table07 = new PrefabGUID(-2072272743); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table08 = new PrefabGUID(1431799349); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table09 = new PrefabGUID(938320086); public static readonly PrefabGUID TM_GloomRot_Laboratory_WoodenShelf01 = new PrefabGUID(1929283810); public static readonly PrefabGUID TM_GloomRot_Laboratory_WoodenShelf02 = new PrefabGUID(531690978); public static readonly PrefabGUID TM_GloomRot_Laboratory_WoodenShelf03 = new PrefabGUID(2143636471); public static readonly PrefabGUID TM_GloomRot_LampPost01 = new PrefabGUID(1805301546); public static readonly PrefabGUID TM_GloomRot_LightningRod_Refinement_01 = new PrefabGUID(-1932531289); public static readonly PrefabGUID TM_GloomRot_LightningRod01 = new PrefabGUID(-1038065103); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Door01 = new PrefabGUID(-1729535449); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Door01_Broken = new PrefabGUID(1948736360); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Gate01 = new PrefabGUID(1896589649); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Lever01 = new PrefabGUID(302433668); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Lever01_Broken = new PrefabGUID(-99415273); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked01 = new PrefabGUID(1644741025); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked01_01 = new PrefabGUID(87816578); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked02 = new PrefabGUID(-601266343); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked02_01 = new PrefabGUID(-366024485); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked03 = new PrefabGUID(-1060947348); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked03_01 = new PrefabGUID(-1304687684); public static readonly PrefabGUID TM_Gloomrot_Sapling01 = new PrefabGUID(-637279341); public static readonly PrefabGUID TM_Gloomrot_Sapling02 = new PrefabGUID(1028084238); public static readonly PrefabGUID TM_Gloomrot_Sapling03 = new PrefabGUID(-1381321967); public static readonly PrefabGUID TM_GloomRot_Screen01 = new PrefabGUID(481431244); public static readonly PrefabGUID TM_GloomRot_Screen02 = new PrefabGUID(760672034); public static readonly PrefabGUID TM_Gloomrot_Sludgepool_Pipeholder01 = new PrefabGUID(-676730506); public static readonly PrefabGUID TM_Gloomrot_Sludgepool_Workbench01 = new PrefabGUID(1519158331); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage0 = new PrefabGUID(-1316926015); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage0_Stump = new PrefabGUID(1898633437); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage1 = new PrefabGUID(1675792079); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage1_Stump = new PrefabGUID(-1899730739); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage0 = new PrefabGUID(-1243385335); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage0_Stump = new PrefabGUID(612714918); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage1 = new PrefabGUID(-991415127); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage1_Stump = new PrefabGUID(-1709292350); public static readonly PrefabGUID TM_GloomRot_Table01 = new PrefabGUID(1093691461); public static readonly PrefabGUID TM_Gloomrot_TransistorBreakable01 = new PrefabGUID(-1286313718); public static readonly PrefabGUID TM_Gloomrot_TransistorBreakable02 = new PrefabGUID(127329745); public static readonly PrefabGUID TM_GloomRot_VillageHouses_BreakableBalcony01 = new PrefabGUID(386846799); public static readonly PrefabGUID TM_GloomRot_VillageHouses_BreakableBalcony01_Broken = new PrefabGUID(-1265029409); public static readonly PrefabGUID TM_GloomrotBarrel_01 = new PrefabGUID(455477240); public static readonly PrefabGUID TM_GloomrotBarrel_02 = new PrefabGUID(-1023698957); public static readonly PrefabGUID TM_GloomrotBarrel_03 = new PrefabGUID(820286188); public static readonly PrefabGUID TM_GloomrotBarrel_04 = new PrefabGUID(-1071394622); public static readonly PrefabGUID TM_GloomrotBarrel_05 = new PrefabGUID(158051546); public static readonly PrefabGUID TM_GloomrotBarrel_06 = new PrefabGUID(-2054691901); public static readonly PrefabGUID TM_GloomrotBarrel_SludgePool_SPECIAL_01 = new PrefabGUID(-24545225); public static readonly PrefabGUID TM_GloomrotBarrel_SludgePool_SPECIAL_02 = new PrefabGUID(2113540655); public static readonly PrefabGUID TM_GloomrotCrate_01 = new PrefabGUID(113262395); public static readonly PrefabGUID TM_GloomrotCrate_02 = new PrefabGUID(1620843108); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_01 = new PrefabGUID(-284051182); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_02 = new PrefabGUID(1776936490); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_03 = new PrefabGUID(-1647383778); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_04 = new PrefabGUID(992767813); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_05 = new PrefabGUID(-309740124); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_06 = new PrefabGUID(-31208482); public static readonly PrefabGUID TM_GloomrotCrateLarge_01 = new PrefabGUID(512954603); public static readonly PrefabGUID TM_GloomrotCrateLarge_02 = new PrefabGUID(1248252942); public static readonly PrefabGUID TM_GloomrotHills_01_Stage0 = new PrefabGUID(-223320881); public static readonly PrefabGUID TM_GloomrotHills_01_Stage0_Stump = new PrefabGUID(1650045845); public static readonly PrefabGUID TM_GloomrotHills_01_Stage1 = new PrefabGUID(687116097); public static readonly PrefabGUID TM_GloomrotHills_01_Stage1_Stump = new PrefabGUID(1432851161); public static readonly PrefabGUID TM_GloomrotHills_02_Stage0 = new PrefabGUID(-1218601671); public static readonly PrefabGUID TM_GloomrotHills_02_Stage0_Stump = new PrefabGUID(-955372154); public static readonly PrefabGUID TM_GloomrotHills_02_Stage1 = new PrefabGUID(-1301522085); public static readonly PrefabGUID TM_GloomrotHills_02_Stage1_Stump = new PrefabGUID(1010919373); public static readonly PrefabGUID TM_GloomrotHills_03_Stage0 = new PrefabGUID(-1409385286); public static readonly PrefabGUID TM_GloomrotHills_03_Stage0_Stump = new PrefabGUID(328431006); public static readonly PrefabGUID TM_GloomrotHills_03_Stage1 = new PrefabGUID(1233647687); public static readonly PrefabGUID TM_GloomrotHills_03_Stage1_Stump = new PrefabGUID(545772819); public static readonly PrefabGUID TM_GloomrotHills_04_Stage0 = new PrefabGUID(1404634955); public static readonly PrefabGUID TM_GloomrotHills_04_Stage0_Stump = new PrefabGUID(-1899095496); public static readonly PrefabGUID TM_GloomrotHills_04_Stage1 = new PrefabGUID(-1903138584); public static readonly PrefabGUID TM_GloomrotHills_04_Stage1_Stump = new PrefabGUID(-1798233684); public static readonly PrefabGUID TM_GloomrotHills_05_Stage0 = new PrefabGUID(1607532220); public static readonly PrefabGUID TM_GloomrotHills_05_Stage0_Stump = new PrefabGUID(-39194610); public static readonly PrefabGUID TM_GloomrotHills_05_Stage1 = new PrefabGUID(-167835464); public static readonly PrefabGUID TM_GloomrotHills_05_Stage1_Stump = new PrefabGUID(1027663756); public static readonly PrefabGUID TM_GloomrotHills_06_Stage0 = new PrefabGUID(-1212232856); public static readonly PrefabGUID TM_GloomrotHills_06_Stage0_Stump = new PrefabGUID(378862245); public static readonly PrefabGUID TM_GloomrotHills_06_Stage1 = new PrefabGUID(483652238); public static readonly PrefabGUID TM_GloomrotHills_06_Stage1_Stump = new PrefabGUID(342779645); public static readonly PrefabGUID TM_GloomrotHills_07_Stage0 = new PrefabGUID(815503116); public static readonly PrefabGUID TM_GloomrotHills_07_Stage0_Stump = new PrefabGUID(957165230); public static readonly PrefabGUID TM_GloomrotHills_07_Stage1 = new PrefabGUID(737057122); public static readonly PrefabGUID TM_GloomrotHills_07_Stage1_Stump = new PrefabGUID(165196794); public static readonly PrefabGUID TM_GloomrotHills_Sapling01 = new PrefabGUID(-676826412); public static readonly PrefabGUID TM_GloomrotHills_Sapling02 = new PrefabGUID(1849671455); public static readonly PrefabGUID TM_GloomrotHills_Sapling03 = new PrefabGUID(-190530386); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage0 = new PrefabGUID(-1597637922); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage0_Stump = new PrefabGUID(752527667); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage1 = new PrefabGUID(1613451726); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage1_Stump = new PrefabGUID(1381162616); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage0 = new PrefabGUID(-1047233874); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage0_Stump = new PrefabGUID(1968371205); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage1 = new PrefabGUID(111907777); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage1_Stump = new PrefabGUID(-524903666); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage0 = new PrefabGUID(-32164125); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage0_Stump = new PrefabGUID(-163191061); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage1 = new PrefabGUID(-1303140100); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage1_Stump = new PrefabGUID(-504020002); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage0 = new PrefabGUID(434738935); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage0_Stump = new PrefabGUID(-2005401230); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage1 = new PrefabGUID(-1503416712); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage1_Stump = new PrefabGUID(46157770); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage0 = new PrefabGUID(-93703336); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage0_Stump = new PrefabGUID(1318351023); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage1 = new PrefabGUID(1269043913); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage1_Stump = new PrefabGUID(-813663541); public static readonly PrefabGUID TM_GloomrotWoodenBarrel_01 = new PrefabGUID(145977432); public static readonly PrefabGUID TM_GloomrotWoodenBarrel_02 = new PrefabGUID(2117822012); public static readonly PrefabGUID TM_Gold_01_Rubble = new PrefabGUID(1686494402); public static readonly PrefabGUID TM_Gold_01_Stage0_Resource = new PrefabGUID(1003907303); public static readonly PrefabGUID TM_Gold_01_Stage1_Resource = new PrefabGUID(-990230456); public static readonly PrefabGUID TM_Gold_02_Rubble = new PrefabGUID(509602847); public static readonly PrefabGUID TM_Gold_02_Stage0_Resource = new PrefabGUID(713035142); public static readonly PrefabGUID TM_Gold_02_Stage1_Resource = new PrefabGUID(-562896840); public static readonly PrefabGUID TM_Gold_03_Rubble = new PrefabGUID(92150146); public static readonly PrefabGUID TM_Gold_03_Stage0_Resource = new PrefabGUID(2053068002); public static readonly PrefabGUID TM_Gold_03_Stage1_Resource = new PrefabGUID(-1639125776); public static readonly PrefabGUID TM_Gold_04_Rubble = new PrefabGUID(-235762132); public static readonly PrefabGUID TM_Gold_04_Stage0_Resource = new PrefabGUID(2026017639); public static readonly PrefabGUID TM_Gold_04_Stage1_Resource = new PrefabGUID(1098090514); public static readonly PrefabGUID TM_GrapeStompBarrel01_Empty = new PrefabGUID(4390934); public static readonly PrefabGUID TM_GrapeStompBarrel01_Full = new PrefabGUID(-971122364); public static readonly PrefabGUID TM_GrapeStompBarrel02_Empty = new PrefabGUID(894270121); public static readonly PrefabGUID TM_GrapeStompBarrel02_Full = new PrefabGUID(-1115183844); public static readonly PrefabGUID TM_HarpyNest_01 = new PrefabGUID(-1358411484); public static readonly PrefabGUID TM_HarpyNest_02 = new PrefabGUID(-680466327); public static readonly PrefabGUID TM_HarpyNest_03 = new PrefabGUID(1957728655); public static readonly PrefabGUID TM_HayStack01_Interactable = new PrefabGUID(-1107404080); public static readonly PrefabGUID TM_HiddenObject = new PrefabGUID(162560418); public static readonly PrefabGUID TM_Holy_Cross_Object_Area01 = new PrefabGUID(-88097453); public static readonly PrefabGUID TM_Holy_Zone_Area_T01 = new PrefabGUID(1365651921); public static readonly PrefabGUID TM_Holy_Zone_Area_T02 = new PrefabGUID(1706728579); public static readonly PrefabGUID TM_Horsetrack_ArcheryTarget01 = new PrefabGUID(-1485200551); public static readonly PrefabGUID TM_Horsetrack_Fence01 = new PrefabGUID(-465773872); public static readonly PrefabGUID TM_Horsetrack_Fence01_Broken01 = new PrefabGUID(1361545049); public static readonly PrefabGUID TM_Horsetrack_MilitiaFlag01 = new PrefabGUID(712522128); public static readonly PrefabGUID TM_Horsetrack_MilitiaFlag02 = new PrefabGUID(-1078634250); public static readonly PrefabGUID TM_Horsetrack_MilitiaFlag03 = new PrefabGUID(-424804219); public static readonly PrefabGUID TM_Horsetrack_Rack01 = new PrefabGUID(1846857211); public static readonly PrefabGUID TM_Horsetrack_Rack02 = new PrefabGUID(-1386838529); public static readonly PrefabGUID TM_Horsetrack_TargetDummy01 = new PrefabGUID(1376031832); public static readonly PrefabGUID TM_Horsetrack_TargetRings01 = new PrefabGUID(1076246318); public static readonly PrefabGUID TM_HousePlant01_01 = new PrefabGUID(1312620270); public static readonly PrefabGUID TM_HousePlant01_02 = new PrefabGUID(-953263482); public static readonly PrefabGUID TM_HousePlant01_03 = new PrefabGUID(575519007); public static readonly PrefabGUID TM_HousePlant01_04 = new PrefabGUID(47844225); public static readonly PrefabGUID TM_HousePlant02_01 = new PrefabGUID(-75430835); public static readonly PrefabGUID TM_HousePlant02_02 = new PrefabGUID(674359848); public static readonly PrefabGUID TM_HousePlant02_03 = new PrefabGUID(-1800613330); public static readonly PrefabGUID TM_HousePlant03_01 = new PrefabGUID(833878418); public static readonly PrefabGUID TM_HousePlant03_02 = new PrefabGUID(-961960227); public static readonly PrefabGUID TM_HousePlant03_03 = new PrefabGUID(972357182); public static readonly PrefabGUID TM_IdleInteractionLocation_Campfire = new PrefabGUID(-1367123033); public static readonly PrefabGUID TM_IdleInteractionLocation_Digging = new PrefabGUID(-894380976); public static readonly PrefabGUID TM_IdleInteractionLocation_FiddleSitting = new PrefabGUID(-778316797); public static readonly PrefabGUID TM_IdleInteractionLocation_Fiddling01 = new PrefabGUID(690653168); public static readonly PrefabGUID TM_IdleInteractionLocation_Fishing = new PrefabGUID(1564140143); public static readonly PrefabGUID TM_IdleInteractionLocation_HarvestSitting = new PrefabGUID(1205463848); public static readonly PrefabGUID TM_IdleInteractionLocation_Lookout = new PrefabGUID(-1760916179); public static readonly PrefabGUID TM_IdleInteractionLocation_Raking = new PrefabGUID(-1190338703); public static readonly PrefabGUID TM_IdleInteractionLocation_RummagingSitting = new PrefabGUID(-113481360); public static readonly PrefabGUID TM_IdleInteractionLocation_SellingFish = new PrefabGUID(-1341230267); public static readonly PrefabGUID TM_IdleInteractionLocation_SellingFruit = new PrefabGUID(306558233); public static readonly PrefabGUID TM_IdleInteractionLocation_Sowing = new PrefabGUID(287022135); public static readonly PrefabGUID TM_IdleInteractionLocation_StokeFireSitting = new PrefabGUID(-1495989446); public static readonly PrefabGUID TM_IdleInteractionLocation_Tinker = new PrefabGUID(-2073339590); public static readonly PrefabGUID TM_IdleInteractionLocation_Wall = new PrefabGUID(-955760432); public static readonly PrefabGUID TM_IdleInteractionLocation_WorkingOut = new PrefabGUID(-1724848888); public static readonly PrefabGUID TM_IdleInteractionTest0 = new PrefabGUID(364358874); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock01 = new PrefabGUID(2042892527); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock02 = new PrefabGUID(1526353479); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock03 = new PrefabGUID(582408126); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock04 = new PrefabGUID(-803521697); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock01 = new PrefabGUID(-1766316662); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock02 = new PrefabGUID(-2060368698); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock03 = new PrefabGUID(-1642513904); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock04 = new PrefabGUID(621288846); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock05 = new PrefabGUID(1810285892); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock01 = new PrefabGUID(2134070146); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock02 = new PrefabGUID(-1396961233); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock03 = new PrefabGUID(-989627861); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock04 = new PrefabGUID(217978949); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock05 = new PrefabGUID(-624036737); public static readonly PrefabGUID TM_Interact_Inspect_Base = new PrefabGUID(1727016613); public static readonly PrefabGUID TM_Interact_Inspect_Prog_Test = new PrefabGUID(1406946273); public static readonly PrefabGUID TM_InteractablePortalEnter_Radius3 = new PrefabGUID(-16082476); public static readonly PrefabGUID TM_InteractablePortalExit_Radius3 = new PrefabGUID(1239470018); public static readonly PrefabGUID TM_InteractionSpell_DraculaCastleDoor = new PrefabGUID(1783645063); public static readonly PrefabGUID TM_InteractionSpell_RatHole = new PrefabGUID(-1181425184); public static readonly PrefabGUID TM_InvisibleObject_AIPointOfInterest = new PrefabGUID(-468593524); public static readonly PrefabGUID TM_InvisibleObject_Dracula_CenterPos = new PrefabGUID(1842538655); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_1 = new PrefabGUID(304557225); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_2 = new PrefabGUID(1609034981); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_3 = new PrefabGUID(-527791516); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_4 = new PrefabGUID(1241563561); public static readonly PrefabGUID TM_InvisibleObject_Fisherman_FishingSpot = new PrefabGUID(2084711690); public static readonly PrefabGUID TM_InvisibleObject_Fisherman_MonsterSpawnPositions = new PrefabGUID(-581688006); public static readonly PrefabGUID TM_InvisibleObject_Fisherman_MonsterSpawnPositions_Hard = new PrefabGUID(-1030588315); public static readonly PrefabGUID TM_InvisibleObject_Lucie_AlchemyPos = new PrefabGUID(-641192866); public static readonly PrefabGUID TM_InvisibleObject_Morgana_BigPoolPosition = new PrefabGUID(-19771227); public static readonly PrefabGUID TM_InvisibleObject_Morgana_OuterPosition = new PrefabGUID(587046633); public static readonly PrefabGUID TM_InvisibleObject_Morgana_Position = new PrefabGUID(2139958514); public static readonly PrefabGUID TM_InvisibleObject_Morgana_TailPosition = new PrefabGUID(1549716943); public static readonly PrefabGUID TM_InvisibleObject_Morgana_TransformPosition = new PrefabGUID(796434534); public static readonly PrefabGUID TM_InvisibleObject_Valyr_CenterPosition = new PrefabGUID(153816529); public static readonly PrefabGUID TM_Iron_01_Rubble = new PrefabGUID(520138190); public static readonly PrefabGUID TM_Iron_01_Stage0_Resource = new PrefabGUID(1840644869); public static readonly PrefabGUID TM_Iron_01_Stage1_Resource = new PrefabGUID(1433915693); public static readonly PrefabGUID TM_Iron_02_Rubble = new PrefabGUID(-950272531); public static readonly PrefabGUID TM_Iron_02_Stage0_Resource = new PrefabGUID(1175494187); public static readonly PrefabGUID TM_Iron_02_Stage1_Resource = new PrefabGUID(-1717383696); public static readonly PrefabGUID TM_Iron_03_Rubble = new PrefabGUID(2081282973); public static readonly PrefabGUID TM_Iron_03_Stage0_Resource = new PrefabGUID(22014227); public static readonly PrefabGUID TM_Iron_03_Stage1_Resource = new PrefabGUID(474818747); public static readonly PrefabGUID TM_Iron_04_Rubble = new PrefabGUID(1358162802); public static readonly PrefabGUID TM_Iron_04_Stage0_Resource = new PrefabGUID(-435373182); public static readonly PrefabGUID TM_Iron_04_Stage1_Resource = new PrefabGUID(1197410955); public static readonly PrefabGUID TM_IronBig_01_Rubble = new PrefabGUID(-3531568); public static readonly PrefabGUID TM_IronBig_01_Stage0_Resource = new PrefabGUID(-1299009149); public static readonly PrefabGUID TM_IronBig_01_Stage1_Resource = new PrefabGUID(-212549862); public static readonly PrefabGUID TM_IronFence_01_Fence = new PrefabGUID(-353386615); public static readonly PrefabGUID TM_IronFence_01_Fence_Broken = new PrefabGUID(1462460813); public static readonly PrefabGUID TM_IronFenceGate_01_Door = new PrefabGUID(-1120136695); public static readonly PrefabGUID TM_IronFencePole_01 = new PrefabGUID(-1166050889); public static readonly PrefabGUID TM_IronFencePole_01_Broken = new PrefabGUID(-62424194); public static readonly PrefabGUID TM_IronMedium_01_Rubble = new PrefabGUID(-1071179461); public static readonly PrefabGUID TM_IronMedium_01_Stage0_Resource = new PrefabGUID(1234059876); public static readonly PrefabGUID TM_IronMedium_01_Stage1_Resource = new PrefabGUID(94119538); public static readonly PrefabGUID TM_IronMine_BoxExplosives = new PrefabGUID(-399448477); public static readonly PrefabGUID TM_IronMineEntranceGate_01 = new PrefabGUID(734478859); public static readonly PrefabGUID TM_IronMineEntranceGate_01_DONTUSE = new PrefabGUID(1213728325); public static readonly PrefabGUID TM_IronMinesBroken_MineCart_01 = new PrefabGUID(-2110993796); public static readonly PrefabGUID TM_Laboratory_Chair_Leather_01 = new PrefabGUID(-813681645); public static readonly PrefabGUID TM_Laboratory_Chair_Leather_02 = new PrefabGUID(-685248512); public static readonly PrefabGUID TM_Laboratory_ChalkBoard01 = new PrefabGUID(2108637450); public static readonly PrefabGUID TM_Laboratory_ChalkBoard02 = new PrefabGUID(-39671683); public static readonly PrefabGUID TM_LampPost_01 = new PrefabGUID(-679007802); public static readonly PrefabGUID TM_LampPost_02 = new PrefabGUID(-736903085); public static readonly PrefabGUID TM_LampPost_03 = new PrefabGUID(50369433); public static readonly PrefabGUID TM_LargeOak_Sapling = new PrefabGUID(-1889577224); public static readonly PrefabGUID TM_LargeOak01_Large = new PrefabGUID(1742584349); public static readonly PrefabGUID TM_LargeOak01_Large_Stump = new PrefabGUID(-63995040); public static readonly PrefabGUID TM_LargeOak01_Small = new PrefabGUID(-717207119); public static readonly PrefabGUID TM_LargeOak01_Small_Stump = new PrefabGUID(21672351); public static readonly PrefabGUID TM_LargeOak02_Large = new PrefabGUID(-412660681); public static readonly PrefabGUID TM_LargeOak02_Large_Stump = new PrefabGUID(-1560681314); public static readonly PrefabGUID TM_LargeOak02_Small = new PrefabGUID(-654901029); public static readonly PrefabGUID TM_LargeOak02_Small_Stump = new PrefabGUID(-715292029); public static readonly PrefabGUID TM_LargeOakAutumn_Sapling = new PrefabGUID(545533510); public static readonly PrefabGUID TM_LargeOakAutumn_SaplingAutumn = new PrefabGUID(-501017050); public static readonly PrefabGUID TM_LargeOakAutumn_SaplingYellow = new PrefabGUID(-1145151142); public static readonly PrefabGUID TM_LargeOakAutumn01_Large = new PrefabGUID(-1003759720); public static readonly PrefabGUID TM_LargeOakAutumn01_Large_Stump = new PrefabGUID(-584751529); public static readonly PrefabGUID TM_LargeOakAutumn01_Small = new PrefabGUID(1417575986); public static readonly PrefabGUID TM_LargeOakAutumn01_Small_Stump = new PrefabGUID(-842715503); public static readonly PrefabGUID TM_LargeOakAutumn02_Large = new PrefabGUID(-566650769); public static readonly PrefabGUID TM_LargeOakAutumn02_Large_Stump = new PrefabGUID(-461321524); public static readonly PrefabGUID TM_LargeOakAutumn02_Small = new PrefabGUID(-752083858); public static readonly PrefabGUID TM_LargeOakAutumn02_Small_Stump = new PrefabGUID(290704928); public static readonly PrefabGUID TM_LargeOakAutumn03_Large = new PrefabGUID(-874441709); public static readonly PrefabGUID TM_LargeOakAutumn03_Large_Stump = new PrefabGUID(547204042); public static readonly PrefabGUID TM_LargeOakAutumn03_Small = new PrefabGUID(-202718322); public static readonly PrefabGUID TM_LargeOakAutumn03_Small_Stump = new PrefabGUID(1633325077); public static readonly PrefabGUID TM_LargeOakAutumn04_Large = new PrefabGUID(-1564516199); public static readonly PrefabGUID TM_LargeOakAutumn04_Large_Stump = new PrefabGUID(-1110568440); public static readonly PrefabGUID TM_LargeOakAutumn04_Small = new PrefabGUID(-1206755332); public static readonly PrefabGUID TM_LargeOakAutumn04_Small_Stump = new PrefabGUID(-1864020113); public static readonly PrefabGUID TM_LargeOakCursed_Sapling = new PrefabGUID(1030777660); public static readonly PrefabGUID TM_LargeOakCursed01_Large = new PrefabGUID(337927279); public static readonly PrefabGUID TM_LargeOakCursed01_Large_Stump = new PrefabGUID(-1346279298); public static readonly PrefabGUID TM_LargeOakCursed01_Small = new PrefabGUID(394119645); public static readonly PrefabGUID TM_LargeOakCursed01_Small_Stump = new PrefabGUID(-1632693658); public static readonly PrefabGUID TM_LargeOakCursed02_Large = new PrefabGUID(-301550072); public static readonly PrefabGUID TM_LargeOakCursed02_Large_Stump = new PrefabGUID(-1639680535); public static readonly PrefabGUID TM_LargeOakCursed02_Small = new PrefabGUID(1624190233); public static readonly PrefabGUID TM_LargeOakCursed02_Small_Stump = new PrefabGUID(-135697683); public static readonly PrefabGUID TM_LargeOakSkeleton01_Large = new PrefabGUID(-192885294); public static readonly PrefabGUID TM_LargeOakSkeleton01_Large_Stump = new PrefabGUID(147753258); public static readonly PrefabGUID TM_LargeOakSkeleton01_Small = new PrefabGUID(-552834969); public static readonly PrefabGUID TM_LargeOakSkeleton01_Small_Stump = new PrefabGUID(1683973791); public static readonly PrefabGUID TM_LargeOakSkeleton02_Large = new PrefabGUID(482061460); public static readonly PrefabGUID TM_LargeOakSkeleton02_Large_Stump = new PrefabGUID(-432127691); public static readonly PrefabGUID TM_LargeOakSkeleton02_Small = new PrefabGUID(-265761278); public static readonly PrefabGUID TM_LargeOakSkeleton02_Small_Stump = new PrefabGUID(1365825497); public static readonly PrefabGUID TM_LargePine_Sapling = new PrefabGUID(1234049573); public static readonly PrefabGUID TM_LargePine01_Large = new PrefabGUID(-438860644); public static readonly PrefabGUID TM_LargePine01_Large_Stump = new PrefabGUID(-23619961); public static readonly PrefabGUID TM_LargePine01_Small = new PrefabGUID(-949411015); public static readonly PrefabGUID TM_LargePine01_Small_Stump = new PrefabGUID(1908681136); public static readonly PrefabGUID TM_LargePine02_Large = new PrefabGUID(-1311854068); public static readonly PrefabGUID TM_LargePine02_Large_Stump = new PrefabGUID(-362823640); public static readonly PrefabGUID TM_LargePine02_Small = new PrefabGUID(240368922); public static readonly PrefabGUID TM_LargePine02_Small_Stump = new PrefabGUID(8102210); public static readonly PrefabGUID TM_LargePine03_Large = new PrefabGUID(-759478251); public static readonly PrefabGUID TM_LargePine03_Large_Stump = new PrefabGUID(869548682); public static readonly PrefabGUID TM_LargePine03_Small = new PrefabGUID(-2066102272); public static readonly PrefabGUID TM_LargePine03_Small_Stump = new PrefabGUID(-592785874); public static readonly PrefabGUID TM_LargePineOld_Gloomrot_Sapling = new PrefabGUID(-2116735949); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Large = new PrefabGUID(-269198760); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Large_Stump = new PrefabGUID(2135429080); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Small = new PrefabGUID(-1308259469); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Small_Stump = new PrefabGUID(-811956903); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Large = new PrefabGUID(-696165372); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Large_Stump = new PrefabGUID(1909531952); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Small = new PrefabGUID(-958351862); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Small_Stump = new PrefabGUID(-135047468); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Large = new PrefabGUID(978831024); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Large_Stump = new PrefabGUID(907266344); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Small = new PrefabGUID(479335824); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Small_Stump = new PrefabGUID(-586316902); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills_Sapling = new PrefabGUID(-1793120877); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Large = new PrefabGUID(77136207); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Large_Stump = new PrefabGUID(1388700683); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Small = new PrefabGUID(1779015700); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Small_Stump = new PrefabGUID(1581130035); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Large = new PrefabGUID(-661625198); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Large_Stump = new PrefabGUID(330096903); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Small = new PrefabGUID(832357347); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Small_Stump = new PrefabGUID(-318262172); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Large = new PrefabGUID(1412034556); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Large_Stump = new PrefabGUID(-1966556931); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Small = new PrefabGUID(-346999122); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Small_Stump = new PrefabGUID(2118852092); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Large = new PrefabGUID(-1739815411); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Large_Stump = new PrefabGUID(-327875929); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Small = new PrefabGUID(-745688142); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Small_Stump = new PrefabGUID(1962718239); public static readonly PrefabGUID TM_LargePineOld_Sapling = new PrefabGUID(138418377); public static readonly PrefabGUID TM_LargePineOld01_Large = new PrefabGUID(1945099940); public static readonly PrefabGUID TM_LargePineOld01_Large_Stump = new PrefabGUID(1285072008); public static readonly PrefabGUID TM_LargePineOld01_Small = new PrefabGUID(-55199275); public static readonly PrefabGUID TM_LargePineOld01_Small_Stump = new PrefabGUID(-1942171050); public static readonly PrefabGUID TM_LargePineOld02_Large = new PrefabGUID(1813109566); public static readonly PrefabGUID TM_LargePineOld02_Large_Stump = new PrefabGUID(1614369697); public static readonly PrefabGUID TM_LargePineOld02_Small = new PrefabGUID(1906622667); public static readonly PrefabGUID TM_LargePineOld02_Small_Stump = new PrefabGUID(-148172196); public static readonly PrefabGUID TM_LargePineOld03_Large = new PrefabGUID(-1975496116); public static readonly PrefabGUID TM_LargePineOld03_Large_Stump = new PrefabGUID(741400628); public static readonly PrefabGUID TM_LargePineOld03_Small = new PrefabGUID(879466695); public static readonly PrefabGUID TM_LargePineOld03_Small_Stump = new PrefabGUID(1482765888); public static readonly PrefabGUID TM_LargePineOldSnow_Sapling = new PrefabGUID(-1242611578); public static readonly PrefabGUID TM_LargePineOldSnow01_Large = new PrefabGUID(-2119402759); public static readonly PrefabGUID TM_LargePineOldSnow01_Large_Stump = new PrefabGUID(-1705222715); public static readonly PrefabGUID TM_LargePineOldSnow01_Small = new PrefabGUID(-1159705128); public static readonly PrefabGUID TM_LargePineOldSnow01_Small_Stump = new PrefabGUID(-338186440); public static readonly PrefabGUID TM_LargePineOldSnow02_Large = new PrefabGUID(583754080); public static readonly PrefabGUID TM_LargePineOldSnow02_Large_Stump = new PrefabGUID(599029196); public static readonly PrefabGUID TM_LargePineOldSnow02_Small = new PrefabGUID(2088781484); public static readonly PrefabGUID TM_LargePineOldSnow02_Small_Stump = new PrefabGUID(-1730387958); public static readonly PrefabGUID TM_LargePineOldSnow03_Large = new PrefabGUID(-1620450934); public static readonly PrefabGUID TM_LargePineOldSnow03_Large_Stump = new PrefabGUID(-256672691); public static readonly PrefabGUID TM_LargePineOldSnow03_Small = new PrefabGUID(1554604728); public static readonly PrefabGUID TM_LargePineOldSnow03_Small_Stump = new PrefabGUID(959210414); public static readonly PrefabGUID TM_LargePineSnow_Sapling = new PrefabGUID(-1773875790); public static readonly PrefabGUID TM_LargePineSnow01_Large = new PrefabGUID(444235335); public static readonly PrefabGUID TM_LargePineSnow01_Large_Stump = new PrefabGUID(2114203604); public static readonly PrefabGUID TM_LargePineSnow01_Small = new PrefabGUID(-140928751); public static readonly PrefabGUID TM_LargePineSnow01_Small_Stump = new PrefabGUID(902747057); public static readonly PrefabGUID TM_LargePineSnow02_Large = new PrefabGUID(1910215991); public static readonly PrefabGUID TM_LargePineSnow02_Large_Stump = new PrefabGUID(17446195); public static readonly PrefabGUID TM_LargePineSnow02_Small = new PrefabGUID(-1498917585); public static readonly PrefabGUID TM_LargePineSnow02_Small_Stump = new PrefabGUID(-12151298); public static readonly PrefabGUID TM_LargePineSnow03_Large = new PrefabGUID(1325646407); public static readonly PrefabGUID TM_LargePineSnow03_Large_Stump = new PrefabGUID(1853477321); public static readonly PrefabGUID TM_LargePineSnow03_Small = new PrefabGUID(-973511458); public static readonly PrefabGUID TM_LargePineSnow03_Small_Stump = new PrefabGUID(-685405394); public static readonly PrefabGUID TM_Legion_IceRanger_TowerOfFrost_Icicle = new PrefabGUID(1476543271); public static readonly PrefabGUID TM_LiquidStation_Water_Well01 = new PrefabGUID(986517450); public static readonly PrefabGUID TM_LiquidStation_Water_Well02 = new PrefabGUID(-1919124085); public static readonly PrefabGUID TM_LiquidStation_Water_Well03 = new PrefabGUID(1742891933); public static readonly PrefabGUID TM_Lucie_PotionCabinet_02 = new PrefabGUID(-1659867234); public static readonly PrefabGUID TM_Lucie_PotionCabinet_02_Broken = new PrefabGUID(-1620505458); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03 = new PrefabGUID(-1663843662); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03_Broken = new PrefabGUID(1603980058); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03_Broken_NonArena = new PrefabGUID(-145310860); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03_NonArena = new PrefabGUID(-2132944980); public static readonly PrefabGUID TM_Lucie_PotionManager = new PrefabGUID(730911835); public static readonly PrefabGUID TM_MageTower_BigDesk01 = new PrefabGUID(-152875148); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken01 = new PrefabGUID(644331483); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken01_WithCollision = new PrefabGUID(-744101460); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken02 = new PrefabGUID(-990882441); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken02_WithCollision = new PrefabGUID(451187676); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken03 = new PrefabGUID(1340221356); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken03_WithCollision = new PrefabGUID(1808726032); public static readonly PrefabGUID TM_MageTower_Bookcase_Big01 = new PrefabGUID(1773192306); public static readonly PrefabGUID TM_MageTower_Bookcase_Big01_WithCollision = new PrefabGUID(-945081898); public static readonly PrefabGUID TM_MageTower_Bookcase_Big02 = new PrefabGUID(-11132733); public static readonly PrefabGUID TM_MageTower_Bookcase_Big02_WithCollision = new PrefabGUID(1967487597); public static readonly PrefabGUID TM_MageTower_Bookcase_Big03 = new PrefabGUID(-1233413457); public static readonly PrefabGUID TM_MageTower_Bookcase_Big03_WithCollision = new PrefabGUID(1512473184); public static readonly PrefabGUID TM_MageTower_Bookcase_Small01 = new PrefabGUID(-37170608); public static readonly PrefabGUID TM_MageTower_Bookcase_Small01_45deg = new PrefabGUID(1527415091); public static readonly PrefabGUID TM_MageTower_Bookcase_Small02 = new PrefabGUID(1058224676); public static readonly PrefabGUID TM_MageTower_Bookcase_Small02_45deg = new PrefabGUID(-1880462946); public static readonly PrefabGUID TM_MageTower_Bookcase_Small03 = new PrefabGUID(2137442766); public static readonly PrefabGUID TM_MageTower_Bookcase_Small03_45deg = new PrefabGUID(-1714034937); public static readonly PrefabGUID TM_MageTower_Bookpile01 = new PrefabGUID(-1891796343); public static readonly PrefabGUID TM_MageTower_Bookpile02 = new PrefabGUID(-1153963954); public static readonly PrefabGUID TM_MageTower_Bookpile03 = new PrefabGUID(1674059947); public static readonly PrefabGUID TM_MageTower_CandleHolder01 = new PrefabGUID(-1445792263); public static readonly PrefabGUID TM_MageTower_Chair01 = new PrefabGUID(-446403193); public static readonly PrefabGUID TM_MageTower_Divan01 = new PrefabGUID(-1658798970); public static readonly PrefabGUID TM_MageTower_Divan02 = new PrefabGUID(862756751); public static readonly PrefabGUID TM_MageTower_FlowerPot01 = new PrefabGUID(-57566621); public static readonly PrefabGUID TM_MageTower_FlowerPot02 = new PrefabGUID(2035487770); public static readonly PrefabGUID TM_MageTower_Ladder01 = new PrefabGUID(-1452967211); public static readonly PrefabGUID TM_MageTower_Ladder02 = new PrefabGUID(-397822799); public static readonly PrefabGUID TM_MageTower_Ladder03 = new PrefabGUID(-1004010354); public static readonly PrefabGUID TM_MageTower_Lantern01 = new PrefabGUID(84563889); public static readonly PrefabGUID TM_MageTower_Lantern02 = new PrefabGUID(2036768485); public static readonly PrefabGUID TM_MageTower_Prop_Pillar01 = new PrefabGUID(1251734449); public static readonly PrefabGUID TM_MageTower_Prop_Pillar02 = new PrefabGUID(305229767); public static readonly PrefabGUID TM_MageTower_SmallDesk01 = new PrefabGUID(-42280593); public static readonly PrefabGUID TM_MageTower_SmallDesk02 = new PrefabGUID(2012637784); public static readonly PrefabGUID TM_MageTower_SmallDesk03 = new PrefabGUID(-960662165); public static readonly PrefabGUID TM_MageTower_SmallDesk04 = new PrefabGUID(-864814519); public static readonly PrefabGUID TM_Maple_01_Stage0 = new PrefabGUID(106579371); public static readonly PrefabGUID TM_Maple_01_Stage0_Stump = new PrefabGUID(296497533); public static readonly PrefabGUID TM_Maple_01_Stage1 = new PrefabGUID(1326895471); public static readonly PrefabGUID TM_Maple_01_Stage1_Stump = new PrefabGUID(2037726182); public static readonly PrefabGUID TM_Maple_02_Stage0 = new PrefabGUID(902802489); public static readonly PrefabGUID TM_Maple_02_Stage0_Stump = new PrefabGUID(520402705); public static readonly PrefabGUID TM_Maple_02_Stage1 = new PrefabGUID(1601709544); public static readonly PrefabGUID TM_Maple_02_Stage1_Stump = new PrefabGUID(1654504536); public static readonly PrefabGUID TM_Maple_Sapling = new PrefabGUID(-573361809); public static readonly PrefabGUID TM_Mech_01_Rubble = new PrefabGUID(116795498); public static readonly PrefabGUID TM_Mech_01_Stage0_Resource = new PrefabGUID(1286218467); public static readonly PrefabGUID TM_Mech_01_Stage1_Resource = new PrefabGUID(1348284321); public static readonly PrefabGUID TM_Mech_02_Rubble = new PrefabGUID(-1282943138); public static readonly PrefabGUID TM_Mech_02_Stage0_Resource = new PrefabGUID(-1797867127); public static readonly PrefabGUID TM_Mech_02_Stage1_Resource = new PrefabGUID(525821635); public static readonly PrefabGUID TM_Mech_03_Rubble = new PrefabGUID(266440518); public static readonly PrefabGUID TM_Mech_03_Stage0_Resource = new PrefabGUID(134171803); public static readonly PrefabGUID TM_Mech_03_Stage1_Resource = new PrefabGUID(535826937); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_Driller_01 = new PrefabGUID(1615800801); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_Gattler_01 = new PrefabGUID(-2108134215); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_LightningRod_01 = new PrefabGUID(1252063697); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_Zapper_01 = new PrefabGUID(-1747329297); public static readonly PrefabGUID TM_MidsummerPole01 = new PrefabGUID(-519562381); public static readonly PrefabGUID TM_Militia_Barricade_01 = new PrefabGUID(491588514); public static readonly PrefabGUID TM_Militia_Brazier01 = new PrefabGUID(-185220168); public static readonly PrefabGUID TM_Militia_GlassBreakableCool = new PrefabGUID(-425692819); public static readonly PrefabGUID TM_Militia_GlassBreakableCool_Hard = new PrefabGUID(1078530288); public static readonly PrefabGUID TM_MilitiaCrate_01 = new PrefabGUID(1505468927); public static readonly PrefabGUID TM_MilitiaCrate_02 = new PrefabGUID(-2012567553); public static readonly PrefabGUID TM_MilitiaCrateLarge_01 = new PrefabGUID(-312741735); public static readonly PrefabGUID TM_MilitiaCrateLarge_02 = new PrefabGUID(1562952055); public static readonly PrefabGUID TM_MilitiaFlag01 = new PrefabGUID(-1016380251); public static readonly PrefabGUID TM_MilitiaFlag02 = new PrefabGUID(898859625); public static readonly PrefabGUID TM_MilitiaFlag03 = new PrefabGUID(1951585238); public static readonly PrefabGUID TM_MilitiaFlag04 = new PrefabGUID(-1028865713); public static readonly PrefabGUID TM_MilitiaTableVar01 = new PrefabGUID(-1961837248); public static readonly PrefabGUID TM_MilitiaTableVar02 = new PrefabGUID(-1274664855); public static readonly PrefabGUID TM_MilitiaTableVar03 = new PrefabGUID(1093493032); public static readonly PrefabGUID TM_MilitiaTableVar03_InteractionIdle = new PrefabGUID(2001711654); public static readonly PrefabGUID TM_Mine_Barrel01 = new PrefabGUID(-1221794762); public static readonly PrefabGUID TM_Mine_Box01 = new PrefabGUID(1241123122); public static readonly PrefabGUID TM_Mine_BoxDynamite01 = new PrefabGUID(-2106455441); public static readonly PrefabGUID TM_Mine_Cart01 = new PrefabGUID(-2012937705); public static readonly PrefabGUID TM_Mine_Cart01_IdleInteraction = new PrefabGUID(664323111); public static readonly PrefabGUID TM_Mine_CartIron01 = new PrefabGUID(-2072515321); public static readonly PrefabGUID TM_Mine_CartSilver01 = new PrefabGUID(-1894839372); public static readonly PrefabGUID TM_Mine_Fence01 = new PrefabGUID(431713588); public static readonly PrefabGUID TM_Mine_Fence02 = new PrefabGUID(1864454785); public static readonly PrefabGUID TM_Mine_Fence03 = new PrefabGUID(1263922549); public static readonly PrefabGUID TM_Mine_FenceDiagonal01 = new PrefabGUID(1733848869); public static readonly PrefabGUID TM_Mine_FenceDiagonal02 = new PrefabGUID(-1362967486); public static readonly PrefabGUID TM_Mine_FenceDiagonal03 = new PrefabGUID(-1776438554); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable01 = new PrefabGUID(-2107940824); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable02 = new PrefabGUID(-930432884); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable03 = new PrefabGUID(-605713859); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable04 = new PrefabGUID(1279321185); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable05 = new PrefabGUID(340421094); public static readonly PrefabGUID TM_MountainBirch_01_Stage0_snow = new PrefabGUID(-69224034); public static readonly PrefabGUID TM_MountainBirch_01_Stage0_snow_Stump = new PrefabGUID(1686208998); public static readonly PrefabGUID TM_MountainBirch_01_Stage1_snow = new PrefabGUID(-212267252); public static readonly PrefabGUID TM_MountainBirch_01_Stage1_snow_Stump = new PrefabGUID(-1957278998); public static readonly PrefabGUID TM_MountainBirch_02_Stage0_snow = new PrefabGUID(-1875389140); public static readonly PrefabGUID TM_MountainBirch_02_Stage0_snow_Stump = new PrefabGUID(8368200); public static readonly PrefabGUID TM_MountainBirch_02_Stage1_snow = new PrefabGUID(364664176); public static readonly PrefabGUID TM_MountainBirch_02_Stage1_snow_Stump = new PrefabGUID(187992557); public static readonly PrefabGUID TM_MountainBirch_03_Stage0_snow = new PrefabGUID(-481413387); public static readonly PrefabGUID TM_MountainBirch_03_Stage0_snow_Stump = new PrefabGUID(1275815720); public static readonly PrefabGUID TM_MountainBirch_03_Stage1_snow = new PrefabGUID(-881587725); public static readonly PrefabGUID TM_MountainBirch_03_Stage1_snow_Stump = new PrefabGUID(1353541514); public static readonly PrefabGUID TM_MountainBirch_Sapling_snow = new PrefabGUID(1903361689); public static readonly PrefabGUID TM_Noctem_AlchemyTable01 = new PrefabGUID(2042966310); public static readonly PrefabGUID TM_Noctem_AlchemyTable02 = new PrefabGUID(1543470680); public static readonly PrefabGUID TM_Noctem_AlchemyTable03 = new PrefabGUID(1826602541); public static readonly PrefabGUID TM_Noctem_Banner01 = new PrefabGUID(1504598571); public static readonly PrefabGUID TM_Noctem_Barrel01 = new PrefabGUID(1972530250); public static readonly PrefabGUID TM_Noctem_BloodTap01 = new PrefabGUID(391174672); public static readonly PrefabGUID TM_Noctem_Bonfire01 = new PrefabGUID(-1694565271); public static readonly PrefabGUID TM_Noctem_Bonfire01_Growing = new PrefabGUID(710968347); public static readonly PrefabGUID TM_Noctem_BossThrone01 = new PrefabGUID(-1491491130); public static readonly PrefabGUID TM_Noctem_Cage01_Door01 = new PrefabGUID(-1185032666); public static readonly PrefabGUID TM_Noctem_Candlestand01 = new PrefabGUID(182934148); public static readonly PrefabGUID TM_Noctem_Catacomb_Brazier01 = new PrefabGUID(-80730814); public static readonly PrefabGUID TM_Noctem_Cauldron01 = new PrefabGUID(1238747965); public static readonly PrefabGUID TM_Noctem_Cauldron01_Growing = new PrefabGUID(-412480443); public static readonly PrefabGUID TM_Noctem_Chair01 = new PrefabGUID(-398818006); public static readonly PrefabGUID TM_Noctem_Chair02 = new PrefabGUID(-1752391953); public static readonly PrefabGUID TM_Noctem_Crate01 = new PrefabGUID(1420732621); public static readonly PrefabGUID TM_Noctem_CrateLarge01 = new PrefabGUID(-1782945304); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Brazier_Ruin01 = new PrefabGUID(1488297337); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Brazier_Ruin02 = new PrefabGUID(1930685054); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Brazier01 = new PrefabGUID(1156936627); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase_Ruin01 = new PrefabGUID(84890747); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase_Ruin02 = new PrefabGUID(1576868385); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase_Ruin03 = new PrefabGUID(-237875290); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase01 = new PrefabGUID(-216695461); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase01_Fade = new PrefabGUID(28659318); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase02 = new PrefabGUID(-515651776); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin01 = new PrefabGUID(664885951); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin01_lying = new PrefabGUID(-790101700); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin02 = new PrefabGUID(-1695775262); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin03 = new PrefabGUID(597207737); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin04 = new PrefabGUID(-1288020645); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase01 = new PrefabGUID(-1289201708); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase01_Fade = new PrefabGUID(1953561193); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase02 = new PrefabGUID(-157727038); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Bench01 = new PrefabGUID(422272623); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn01 = new PrefabGUID(-748409624); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn02 = new PrefabGUID(-1242222712); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn03 = new PrefabGUID(956592768); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn04 = new PrefabGUID(-1220419189); public static readonly PrefabGUID TM_Noctem_DraculasDemise_Barricade01 = new PrefabGUID(1236744770); public static readonly PrefabGUID TM_Noctem_DraculaYard_ImpalingSpikes02 = new PrefabGUID(-1370617154); public static readonly PrefabGUID TM_Noctem_DraculaYard_ImpalingSpikes02_02 = new PrefabGUID(955237866); public static readonly PrefabGUID TM_Noctem_DraculaYard_ImpalingSpikes02_03 = new PrefabGUID(1008279702); public static readonly PrefabGUID TM_Noctem_HangingTorch01 = new PrefabGUID(-355808780); public static readonly PrefabGUID TM_Noctem_IronMaiden01 = new PrefabGUID(954846494); public static readonly PrefabGUID TM_Noctem_IronMaiden02 = new PrefabGUID(1697833542); public static readonly PrefabGUID TM_Noctem_IronMaiden03 = new PrefabGUID(834268713); public static readonly PrefabGUID TM_Noctem_IronMaiden04 = new PrefabGUID(956297577); public static readonly PrefabGUID TM_Noctem_Lantern01 = new PrefabGUID(-2138309085); public static readonly PrefabGUID TM_Noctem_PillarRuin01_Destructable = new PrefabGUID(311468378); public static readonly PrefabGUID TM_Noctem_PillarRuin02_Destructable = new PrefabGUID(-1933533595); public static readonly PrefabGUID TM_Noctem_RiftCrystalChild_Tier01 = new PrefabGUID(-1316392908); public static readonly PrefabGUID TM_Noctem_RiftCrystalChild_Tier02 = new PrefabGUID(974772805); public static readonly PrefabGUID TM_Noctem_StoneUrn_01 = new PrefabGUID(850715588); public static readonly PrefabGUID TM_Noctem_StoneUrn_02 = new PrefabGUID(-1782629816); public static readonly PrefabGUID TM_Noctem_StoneUrn_03 = new PrefabGUID(-1642296863); public static readonly PrefabGUID TM_Noctem_TombBig_01_Broken = new PrefabGUID(-1945712831); public static readonly PrefabGUID TM_Noctem_TombBig_02_Broken = new PrefabGUID(1708948020); public static readonly PrefabGUID TM_Noctem_TombBig_03_Broken = new PrefabGUID(-903107334); public static readonly PrefabGUID TM_Noctem_Tube01 = new PrefabGUID(-404834416); public static readonly PrefabGUID TM_Noctem_Tube02 = new PrefabGUID(1029968030); public static readonly PrefabGUID TM_Noctem_VampireGravestone_Big_01 = new PrefabGUID(-1800706733); public static readonly PrefabGUID TM_Noctem_VampireGravestone_Big_02 = new PrefabGUID(2105903165); public static readonly PrefabGUID TM_Noctem_VampireGravestone_Big_03 = new PrefabGUID(-2002166832); public static readonly PrefabGUID TM_Noctem_VampireGravestone01 = new PrefabGUID(-1428170075); public static readonly PrefabGUID TM_Noctem_VampireGravestone01_Broken = new PrefabGUID(1762408972); public static readonly PrefabGUID TM_Noctem_VampireGravestone02 = new PrefabGUID(291023312); public static readonly PrefabGUID TM_Noctem_VampireGravestone02_Broken = new PrefabGUID(1290812537); public static readonly PrefabGUID TM_Noctem_VampireGravestone03 = new PrefabGUID(-65103494); public static readonly PrefabGUID TM_Noctem_VampireGravestone04 = new PrefabGUID(-1492616562); public static readonly PrefabGUID TM_Noctem_VampireGravestone05 = new PrefabGUID(-1268722576); public static readonly PrefabGUID TM_Noctem_VampireGraveyard_Brazier_01 = new PrefabGUID(-1961297808); public static readonly PrefabGUID TM_Noctem_Vendor_Barrel01 = new PrefabGUID(-504704688); public static readonly PrefabGUID TM_Noctem_Vendor_Crate_Large01 = new PrefabGUID(-1400431279); public static readonly PrefabGUID TM_Noctem_Vendor_Crate01 = new PrefabGUID(1054623959); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage0 = new PrefabGUID(1962045764); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage0_Stump = new PrefabGUID(-129787060); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage1 = new PrefabGUID(-508689497); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage1_Stump = new PrefabGUID(1390491755); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage0 = new PrefabGUID(1786617846); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage0_Stump = new PrefabGUID(-878615880); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage1 = new PrefabGUID(1219290740); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage1_Stump = new PrefabGUID(-642341734); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage0 = new PrefabGUID(985804166); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage0_Stump = new PrefabGUID(771649960); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage1 = new PrefabGUID(-176717740); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage1_Stump = new PrefabGUID(335989304); public static readonly PrefabGUID TM_NoctemAspenTree_Sapling = new PrefabGUID(-1689036950); public static readonly PrefabGUID TM_NoctemNorth_PineLarge_Sapling = new PrefabGUID(-1818013313); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Large = new PrefabGUID(-1348425524); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Large_Stump = new PrefabGUID(-973083800); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Small = new PrefabGUID(455442402); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Small_Stump = new PrefabGUID(2128710602); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage0 = new PrefabGUID(-2025542759); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage0_Stump = new PrefabGUID(1804715715); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage1 = new PrefabGUID(-27912735); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage1_Stump = new PrefabGUID(-110142534); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage0 = new PrefabGUID(-779943315); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage0_Stump = new PrefabGUID(-1491286802); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage1 = new PrefabGUID(1895172199); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage1_Stump = new PrefabGUID(2110695354); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage0 = new PrefabGUID(488674808); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage0_Stump = new PrefabGUID(1052022625); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage1 = new PrefabGUID(-1030675179); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage1_Stump = new PrefabGUID(1205359067); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage0 = new PrefabGUID(1935047779); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage0_Stump = new PrefabGUID(271282186); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage1 = new PrefabGUID(-704504207); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage1_Stump = new PrefabGUID(-1094708999); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage0 = new PrefabGUID(1285430818); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage0_Stump = new PrefabGUID(-1955201684); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage1 = new PrefabGUID(39749754); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage1_Stump = new PrefabGUID(-1324428527); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage0 = new PrefabGUID(1815027876); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage0_Stump = new PrefabGUID(1805816450); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage1 = new PrefabGUID(444893322); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage1_Stump = new PrefabGUID(1595805603); public static readonly PrefabGUID TM_NoctemNorthTree_Sapling = new PrefabGUID(189747236); public static readonly PrefabGUID TM_NoctemRuin_Pillar01 = new PrefabGUID(-1246139033); public static readonly PrefabGUID TM_NoctemRuin_Wall_Diagonal01 = new PrefabGUID(1098881685); public static readonly PrefabGUID TM_NoctemRuin_Wall_Diagonal02 = new PrefabGUID(-1212297675); public static readonly PrefabGUID TM_NoctemRuin_Wall01 = new PrefabGUID(1276787019); public static readonly PrefabGUID TM_NoctemRuin_Wall02 = new PrefabGUID(1927612335); public static readonly PrefabGUID TM_NoctemSouth_Pine_Sapling = new PrefabGUID(568604230); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Large = new PrefabGUID(-1666789669); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Large_Stump = new PrefabGUID(-1963800645); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Small = new PrefabGUID(-596271732); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Small_Stump = new PrefabGUID(-544360355); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Large = new PrefabGUID(-828070670); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Large_Stump = new PrefabGUID(1499800154); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Small = new PrefabGUID(1148853969); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Small_Stump = new PrefabGUID(-252634646); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Large = new PrefabGUID(-147139721); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Large_Stump = new PrefabGUID(-918524663); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Small = new PrefabGUID(749672599); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Small_Stump = new PrefabGUID(1512109254); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage0 = new PrefabGUID(291809914); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage0_Stump = new PrefabGUID(1679629344); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage1 = new PrefabGUID(912011101); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage1_Stump = new PrefabGUID(-1829463608); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage0 = new PrefabGUID(1973942445); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage0_Stump = new PrefabGUID(16174971); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage1 = new PrefabGUID(652177446); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage1_Stump = new PrefabGUID(-188462808); public static readonly PrefabGUID TM_NoctemWillowTree_Sapling = new PrefabGUID(1426557356); public static readonly PrefabGUID TM_Obsidian_01_Rubble = new PrefabGUID(803155035); public static readonly PrefabGUID TM_Obsidian_01_Stage0_Resource = new PrefabGUID(1370245473); public static readonly PrefabGUID TM_Obsidian_01_Stage1_Resource = new PrefabGUID(232426902); public static readonly PrefabGUID TM_Obsidian_02_Rubble = new PrefabGUID(1799464116); public static readonly PrefabGUID TM_Obsidian_02_Stage0_Resource = new PrefabGUID(-50596060); public static readonly PrefabGUID TM_Obsidian_02_Stage1_Resource = new PrefabGUID(574082445); public static readonly PrefabGUID TM_Obsidian_03_Rubble = new PrefabGUID(906809505); public static readonly PrefabGUID TM_Obsidian_03_Stage0_Resource = new PrefabGUID(2075702825); public static readonly PrefabGUID TM_Obsidian_03_Stage1_Resource = new PrefabGUID(-385870631); public static readonly PrefabGUID TM_Obsidian_04_Rubble = new PrefabGUID(-61468652); public static readonly PrefabGUID TM_Obsidian_04_Stage0_Resource = new PrefabGUID(-1456936243); public static readonly PrefabGUID TM_Obsidian_04_Stage1_Resource = new PrefabGUID(1989732749); public static readonly PrefabGUID TM_Pedestal_Candle_01 = new PrefabGUID(1453786058); public static readonly PrefabGUID TM_Pedestal_Lamp_01 = new PrefabGUID(-883487404); public static readonly PrefabGUID TM_Pedestal_Plant_01 = new PrefabGUID(1812470431); public static readonly PrefabGUID TM_Pine_01_Stage0 = new PrefabGUID(432677180); public static readonly PrefabGUID TM_Pine_01_Stage0_snow = new PrefabGUID(939072066); public static readonly PrefabGUID TM_Pine_01_Stage0_snow_Stump = new PrefabGUID(354114524); public static readonly PrefabGUID TM_Pine_01_Stage0_Stump = new PrefabGUID(-263696408); public static readonly PrefabGUID TM_Pine_01_Stage1 = new PrefabGUID(-1343416474); public static readonly PrefabGUID TM_Pine_01_Stage1_snow = new PrefabGUID(-488226823); public static readonly PrefabGUID TM_Pine_01_Stage1_snow_Stump = new PrefabGUID(1768501642); public static readonly PrefabGUID TM_Pine_01_Stage1_Stump = new PrefabGUID(816272341); public static readonly PrefabGUID TM_Pine_02_Stage0 = new PrefabGUID(-88876167); public static readonly PrefabGUID TM_Pine_02_Stage0_snow = new PrefabGUID(980536412); public static readonly PrefabGUID TM_Pine_02_Stage0_snow_Stump = new PrefabGUID(-65172615); public static readonly PrefabGUID TM_Pine_02_Stage0_Spider = new PrefabGUID(230443038); public static readonly PrefabGUID TM_Pine_02_Stage0_Stump = new PrefabGUID(-387871062); public static readonly PrefabGUID TM_Pine_02_Stage1 = new PrefabGUID(-184217952); public static readonly PrefabGUID TM_Pine_02_Stage1_snow = new PrefabGUID(1548394465); public static readonly PrefabGUID TM_Pine_02_Stage1_snow_Stump = new PrefabGUID(-968069886); public static readonly PrefabGUID TM_Pine_02_Stage1_Spider = new PrefabGUID(-1345949015); public static readonly PrefabGUID TM_Pine_02_Stage1_Stump = new PrefabGUID(1761404517); public static readonly PrefabGUID TM_Pine_03_Stage0 = new PrefabGUID(1863115891); public static readonly PrefabGUID TM_Pine_03_Stage0_snow = new PrefabGUID(1977847725); public static readonly PrefabGUID TM_Pine_03_Stage0_snow_Stump = new PrefabGUID(402853609); public static readonly PrefabGUID TM_Pine_03_Stage0_Stump = new PrefabGUID(-679818697); public static readonly PrefabGUID TM_Pine_03_Stage1 = new PrefabGUID(1736091243); public static readonly PrefabGUID TM_Pine_03_Stage1_snow = new PrefabGUID(1185287607); public static readonly PrefabGUID TM_Pine_03_Stage1_snow_Stump = new PrefabGUID(1802142374); public static readonly PrefabGUID TM_Pine_03_Stage1_Stump = new PrefabGUID(-1501752520); public static readonly PrefabGUID TM_Pine_04_Stage0 = new PrefabGUID(-670465643); public static readonly PrefabGUID TM_Pine_04_Stage0_snow = new PrefabGUID(-445812187); public static readonly PrefabGUID TM_Pine_04_Stage0_snow_Stump = new PrefabGUID(-1108140468); public static readonly PrefabGUID TM_Pine_04_Stage0_Stump = new PrefabGUID(-513030010); public static readonly PrefabGUID TM_Pine_04_Stage1 = new PrefabGUID(-203597648); public static readonly PrefabGUID TM_Pine_04_Stage1_snow = new PrefabGUID(-1677038371); public static readonly PrefabGUID TM_Pine_04_Stage1_snow_Stump = new PrefabGUID(-68479492); public static readonly PrefabGUID TM_Pine_04_Stage1_Stump = new PrefabGUID(967890786); public static readonly PrefabGUID TM_Pine_05_Stage0 = new PrefabGUID(41585966); public static readonly PrefabGUID TM_Pine_05_Stage0_snow = new PrefabGUID(-360972203); public static readonly PrefabGUID TM_Pine_05_Stage0_snow_Stump = new PrefabGUID(-878806640); public static readonly PrefabGUID TM_Pine_05_Stage0_Spider = new PrefabGUID(561374773); public static readonly PrefabGUID TM_Pine_05_Stage0_Stump = new PrefabGUID(1575390470); public static readonly PrefabGUID TM_Pine_05_Stage1 = new PrefabGUID(1966772876); public static readonly PrefabGUID TM_Pine_05_Stage1_snow = new PrefabGUID(2026745353); public static readonly PrefabGUID TM_Pine_05_Stage1_snow_Stump = new PrefabGUID(922961280); public static readonly PrefabGUID TM_Pine_05_Stage1_Spider = new PrefabGUID(57072390); public static readonly PrefabGUID TM_Pine_05_Stage1_Stump = new PrefabGUID(1582925053); public static readonly PrefabGUID TM_Pine_Sapling = new PrefabGUID(1682148661); public static readonly PrefabGUID TM_Pine_Sapling_snow = new PrefabGUID(-1376995081); public static readonly PrefabGUID TM_Plant_BleedingHeart_01_Pickup = new PrefabGUID(26232567); public static readonly PrefabGUID TM_Plant_BleedingHeart_01_Pickup_Destroyed = new PrefabGUID(639140591); public static readonly PrefabGUID TM_Plant_BloodRose_01_Pickup = new PrefabGUID(912333956); public static readonly PrefabGUID TM_Plant_BloodRose_01_Pickup_Destroyed = new PrefabGUID(1052560967); public static readonly PrefabGUID TM_Plant_FireBlossom_01_Pickup = new PrefabGUID(-1478081952); public static readonly PrefabGUID TM_Plant_FireBlossom_01_Pickup_Destroyed = new PrefabGUID(-1199937968); public static readonly PrefabGUID TM_Plant_GhostShroom_01_Pickup = new PrefabGUID(-1433121689); public static readonly PrefabGUID TM_Plant_GhostShroom_01_Pickup_Destroyed = new PrefabGUID(-674810862); public static readonly PrefabGUID TM_Plant_HellsClarion_01_Pickup = new PrefabGUID(-1058568408); public static readonly PrefabGUID TM_Plant_HellsClarion_01_Pickup_Destroyed = new PrefabGUID(104103099); public static readonly PrefabGUID TM_Plant_Lotus_01_Pickup = new PrefabGUID(-2125170378); public static readonly PrefabGUID TM_Plant_Lotus_01_Pickup_Destroyed = new PrefabGUID(361784916); public static readonly PrefabGUID TM_Plant_MourningLily_01_Pickup = new PrefabGUID(1647629126); public static readonly PrefabGUID TM_Plant_MourningLily_01_Pickup_Destroyed = new PrefabGUID(-841370650); public static readonly PrefabGUID TM_Plant_SnowFlower_01_Pickup = new PrefabGUID(-871557590); public static readonly PrefabGUID TM_Plant_SnowFlower_01_Pickup_Destroyed = new PrefabGUID(-1393198230); public static readonly PrefabGUID TM_Plant_Sunflower_01_Pickup = new PrefabGUID(1556305529); public static readonly PrefabGUID TM_Plant_Sunflower_01_Pickup_Destroyed = new PrefabGUID(1868267541); public static readonly PrefabGUID TM_Plant_Thistle_01_Pickup = new PrefabGUID(2006190871); public static readonly PrefabGUID TM_Plant_Thistle_01_Pickup_Destroyed = new PrefabGUID(991765428); public static readonly PrefabGUID TM_Plant_TrippyShroom_01_Pickup = new PrefabGUID(-362609585); public static readonly PrefabGUID TM_Plant_TrippyShroom_01_Pickup_Destroyed = new PrefabGUID(142017252); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_01_Pickup = new PrefabGUID(-1228912087); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_01_Pickup_Destoryed = new PrefabGUID(1946292342); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_02_Pickup = new PrefabGUID(1493401656); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_03_Pickup = new PrefabGUID(-1848451066); public static readonly PrefabGUID TM_Plantfiber_Strongblade_BushyTree_01_Pickup = new PrefabGUID(918368875); public static readonly PrefabGUID TM_Plantfiber_Strongblade_BushyTree_01_Pickup_Destoryed = new PrefabGUID(85036432); public static readonly PrefabGUID TM_Plantfiber_Strongblade_BushyTree_02_Pickup = new PrefabGUID(-944907462); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_01_Pickup = new PrefabGUID(1216413890); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_01_Pickup_Destroyed = new PrefabGUID(1561508012); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_02_Pickup = new PrefabGUID(676475511); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_02_Pickup_Destroyed = new PrefabGUID(1248629195); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_01_Pickup = new PrefabGUID(-618484931); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_01_Pickup_Destoryed = new PrefabGUID(-718902570); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_02_Pickup = new PrefabGUID(640495645); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_03_Pickup = new PrefabGUID(101808063); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_01_Pickup = new PrefabGUID(716680258); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_01_Pickup_Destoryed = new PrefabGUID(-172463274); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_02_Pickup = new PrefabGUID(314640169); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_03_Pickup = new PrefabGUID(36242818); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushLeafy_01_Pickup = new PrefabGUID(-521375512); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushLeafy_01_Pickup_Destoryed = new PrefabGUID(1328035726); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushLeafy_02_Pickup = new PrefabGUID(-1561406655); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_01_Pickup = new PrefabGUID(1223081180); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_01_Pickup_Destoryed = new PrefabGUID(-912427122); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_02_Pickup = new PrefabGUID(-179372720); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_03_Pickup = new PrefabGUID(1486204754); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_01_Pickup = new PrefabGUID(1777962788); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_01_Pickup_Destoryed = new PrefabGUID(1437725476); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_02_Pickup = new PrefabGUID(-1062578652); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_03_Pickup = new PrefabGUID(-1254179162); public static readonly PrefabGUID TM_PlantfiberBush_01_Pickup = new PrefabGUID(-907862918); public static readonly PrefabGUID TM_PlantfiberBush_01_Pickup_Destoryed = new PrefabGUID(-1835022989); public static readonly PrefabGUID TM_PlantfiberBush_02_Pickup = new PrefabGUID(250267380); public static readonly PrefabGUID TM_PlantfiberBush_03_Pickup = new PrefabGUID(1309141698); public static readonly PrefabGUID TM_PlantfiberBush_Cursed01_Pickup = new PrefabGUID(1399724961); public static readonly PrefabGUID TM_PlantfiberBush_Cursed01_Pickup_Destoryed = new PrefabGUID(1386783504); public static readonly PrefabGUID TM_PlantfiberBush_Cursed02_Pickup = new PrefabGUID(1923309251); public static readonly PrefabGUID TM_PlantfiberBush_Cursed03_Pickup = new PrefabGUID(-2063293341); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_01_Pickup = new PrefabGUID(-1827332944); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_01_Pickup_Destoryed = new PrefabGUID(-885025880); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_02_Pickup = new PrefabGUID(299789096); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_02_Pickup_Destoryed = new PrefabGUID(1695559083); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_03_Pickup = new PrefabGUID(1052259277); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_03_Pickup_Destoryed = new PrefabGUID(1585818857); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_01_Pickup = new PrefabGUID(166967730); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_01_Pickup_Destoryed = new PrefabGUID(-602697050); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_02_Pickup = new PrefabGUID(-795132586); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_02_Pickup_Destoryed = new PrefabGUID(1884214509); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_03_Pickup = new PrefabGUID(-1389882543); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_03_Pickup_Destoryed = new PrefabGUID(-1436848966); public static readonly PrefabGUID TM_PlantfiberBushHosta_Gloomrot01_Pickup = new PrefabGUID(8785132); public static readonly PrefabGUID TM_PlantfiberBushHosta_Gloomrot01_Pickup_Destoryed = new PrefabGUID(1975476430); public static readonly PrefabGUID TM_PlantfiberBushHosta_Gloomrot02_Pickup = new PrefabGUID(-73950729); public static readonly PrefabGUID TM_PlantfiberBushHosta_GloomrotToxicPool01_Pickup = new PrefabGUID(1069953243); public static readonly PrefabGUID TM_PlantfiberBushHosta_GloomrotToxicPool01_Pickup_Destoryed = new PrefabGUID(187843907); public static readonly PrefabGUID TM_PlantfiberBushHosta_GloomrotToxicPool02_Pickup = new PrefabGUID(1728679649); public static readonly PrefabGUID TM_PlantfiberBushLarge_01_Pickup = new PrefabGUID(-1062202401); public static readonly PrefabGUID TM_PlantfiberBushLarge_01_Pickup_Destoryed = new PrefabGUID(120665873); public static readonly PrefabGUID TM_PlantfiberBushLarge_02_Pickup = new PrefabGUID(-739933507); public static readonly PrefabGUID TM_PlantfiberBushLarge_Cursed01_Pickup = new PrefabGUID(927211459); public static readonly PrefabGUID TM_PlantfiberBushLarge_Cursed01_Pickup_Destoryed = new PrefabGUID(-225800242); public static readonly PrefabGUID TM_PlantfiberBushLarge_Cursed02_Pickup = new PrefabGUID(-1865635429); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_01_Pickup = new PrefabGUID(1150412978); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_01_Pickup_Destoryed = new PrefabGUID(-2106811353); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_02_Pickup = new PrefabGUID(731289354); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_02_Pickup_Destoryed = new PrefabGUID(1227329928); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_03_Pickup = new PrefabGUID(1159775639); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_03_Pickup_Destoryed = new PrefabGUID(-1793422763); public static readonly PrefabGUID TM_PlantfiberBushLargeSnow_01_Pickup = new PrefabGUID(-1046207300); public static readonly PrefabGUID TM_PlantfiberBushLargeSnow_01_Pickup_Destoryed = new PrefabGUID(1079518260); public static readonly PrefabGUID TM_PlantfiberBushLargeSnow_02_Pickup = new PrefabGUID(-1370102249); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_01_Pickup = new PrefabGUID(-1610801227); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_01_Pickup_Destroyed = new PrefabGUID(568035891); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_02_Pickup = new PrefabGUID(786643340); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_02_Pickup_Destroyed = new PrefabGUID(1362986394); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_03_Pickup = new PrefabGUID(1390667894); public static readonly PrefabGUID TM_PlantfiberBushNeedle_01_Pickup = new PrefabGUID(1419082650); public static readonly PrefabGUID TM_PlantfiberBushNeedle_01_Pickup_Destoryed = new PrefabGUID(-1627215937); public static readonly PrefabGUID TM_PlantfiberBushNeedleRed_01_Pickup = new PrefabGUID(-1922343011); public static readonly PrefabGUID TM_PlantfiberBushNeedleRed_01_Pickup_Destoryed = new PrefabGUID(19874778); public static readonly PrefabGUID TM_PlantfiberBushNeedleSnow_01_Pickup = new PrefabGUID(1717502441); public static readonly PrefabGUID TM_PlantfiberBushNeedleSnow_01_Pickup_Destoryed = new PrefabGUID(-483116429); public static readonly PrefabGUID TM_PlantfiberBushPlain_01_Pickup = new PrefabGUID(1026753638); public static readonly PrefabGUID TM_PlantfiberBushPlain_01_Pickup_Destoryed = new PrefabGUID(1209474083); public static readonly PrefabGUID TM_PlantfiberBushPlainAutumn_01_Pickup = new PrefabGUID(-478682617); public static readonly PrefabGUID TM_PlantfiberBushPlainAutumn_01_Pickup_Destoryed = new PrefabGUID(-557232101); public static readonly PrefabGUID TM_PlantfiberBushPlainAutumn_02_Pickup = new PrefabGUID(-681824567); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_01_Pickup = new PrefabGUID(1481998172); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_01_Pickup_Destoryed = new PrefabGUID(1477824391); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_02_Pickup = new PrefabGUID(651123078); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_02_Pickup_Destoryed = new PrefabGUID(1065641148); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_03_Pickup = new PrefabGUID(1561037477); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_04_Pickup = new PrefabGUID(1346265605); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_01_Pickup = new PrefabGUID(335187853); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_01_Pickup_Destroyed = new PrefabGUID(-1786101279); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_02_Pickup = new PrefabGUID(1774391891); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_03_Pickup = new PrefabGUID(-1338909410); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_04_Pickup = new PrefabGUID(405773650); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_01_Pickup = new PrefabGUID(793127971); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_01_Pickup_Destroyed = new PrefabGUID(858920819); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_02_Pickup = new PrefabGUID(1937301990); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_02_Pickup_Destroyed = new PrefabGUID(50091416); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_03_Pickup = new PrefabGUID(-1167808269); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_03_Pickup_Destroyed = new PrefabGUID(-1217168285); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_04_Pickup = new PrefabGUID(-939303307); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_04_Pickup_Destroyed = new PrefabGUID(1891692522); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_05_Pickup = new PrefabGUID(776121880); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_05_Pickup_Destroyed = new PrefabGUID(-15795495); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_06_Pickup = new PrefabGUID(126070413); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_06_Pickup_Destroyed = new PrefabGUID(-628807704); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_07_Pickup = new PrefabGUID(-1339136839); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_07_Pickup_Destroyed = new PrefabGUID(-678032502); public static readonly PrefabGUID TM_PlantfiberBushyTree_01_Pickup = new PrefabGUID(2037875169); public static readonly PrefabGUID TM_PlantfiberBushyTree_01_Pickup_Destoryed = new PrefabGUID(-267981560); public static readonly PrefabGUID TM_PlantfiberBushyTree_02_Pickup = new PrefabGUID(-864038515); public static readonly PrefabGUID TM_PlantfiberBushyTreeCursed_01_Pickup = new PrefabGUID(1155164240); public static readonly PrefabGUID TM_PlantfiberBushyTreeCursed_01_Pickup_Destoryed = new PrefabGUID(-990308218); public static readonly PrefabGUID TM_PlantfiberBushyTreeCursed_02_Pickup = new PrefabGUID(2098438551); public static readonly PrefabGUID TM_PlantfiberBushyTreeSnow_01_Pickup = new PrefabGUID(1652078016); public static readonly PrefabGUID TM_PlantfiberBushyTreeSnow_01_Pickup_Destoryed = new PrefabGUID(944842053); public static readonly PrefabGUID TM_PlantfiberBushyTreeSnow_02_Pickup = new PrefabGUID(676683861); public static readonly PrefabGUID TM_PlantfiberCorn_01_Pickup = new PrefabGUID(-770663964); public static readonly PrefabGUID TM_PlantfiberCorn_01_Pickup_Destoryed = new PrefabGUID(-1889365333); public static readonly PrefabGUID TM_PlantfiberCorn_02_Pickup = new PrefabGUID(1535171512); public static readonly PrefabGUID TM_PlantfiberCorn_03_Pickup = new PrefabGUID(-948318543); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_01_Pickup = new PrefabGUID(1915961783); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_01_Pickup_Destoryed = new PrefabGUID(922996837); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_02_Pickup = new PrefabGUID(-500643684); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_03_Pickup = new PrefabGUID(-970591487); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_01_Pickup = new PrefabGUID(-1791055675); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_01_Pickup_Destroyed = new PrefabGUID(49492671); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_02_Pickup = new PrefabGUID(331091148); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_02_Pickup_Destroyed = new PrefabGUID(924023406); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_03_Pickup = new PrefabGUID(-1620752362); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_03_Pickup_Destroyed = new PrefabGUID(-2115797969); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_04_Pickup = new PrefabGUID(1051073141); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_04_Pickup_Destroyed = new PrefabGUID(-839809467); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_05_Pickup = new PrefabGUID(-2121214867); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_05_Pickup_Destroyed = new PrefabGUID(1667131244); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_06_Pickup = new PrefabGUID(853746692); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_06_Pickup_Destroyed = new PrefabGUID(-1314166034); public static readonly PrefabGUID TM_PlantfiberGrape_01_Harvested_Pickup = new PrefabGUID(1102326952); public static readonly PrefabGUID TM_PlantfiberGrape_01_Harvested_Pickup_Destroyed = new PrefabGUID(-1481342671); public static readonly PrefabGUID TM_PlantfiberGrape_01_Pickup = new PrefabGUID(201989466); public static readonly PrefabGUID TM_PlantfiberGrape_01_Pickup_Destroyed = new PrefabGUID(-1787197378); public static readonly PrefabGUID TM_PlantfiberGrape_02_Pickup = new PrefabGUID(-1755830376); public static readonly PrefabGUID TM_PlantfiberGrape_02_Pickup_Destroyed = new PrefabGUID(-1580709613); public static readonly PrefabGUID TM_PlantfiberGrape_03_Pickup = new PrefabGUID(-1345653308); public static readonly PrefabGUID TM_PlantfiberGrape_03_Pickup_Destroyed = new PrefabGUID(-174718210); public static readonly PrefabGUID TM_PlantfiberGrape_04_Pickup = new PrefabGUID(156144755); public static readonly PrefabGUID TM_PlantfiberGrape_04_Pickup_Destroyed = new PrefabGUID(-1586206549); public static readonly PrefabGUID TM_PlantfiberHosta_Cursed01_Pickup = new PrefabGUID(-1924490363); public static readonly PrefabGUID TM_PlantfiberHosta_Cursed01_Pickup_Destoryed = new PrefabGUID(-1474028943); public static readonly PrefabGUID TM_PlantfiberHosta_Cursed02_Pickup = new PrefabGUID(1771370071); public static readonly PrefabGUID TM_PlantfiberHosta01_Pickup = new PrefabGUID(-1038476236); public static readonly PrefabGUID TM_PlantfiberHosta01_Pickup_Destoryed = new PrefabGUID(-1977582999); public static readonly PrefabGUID TM_PlantfiberHosta02_Pickup = new PrefabGUID(598696325); public static readonly PrefabGUID TM_PlantfiberJuniper_01_Pickup = new PrefabGUID(1036592827); public static readonly PrefabGUID TM_PlantfiberJuniper_01_Pickup_Destoryed = new PrefabGUID(298213868); public static readonly PrefabGUID TM_PlantfiberJuniper_02_Pickup = new PrefabGUID(-1441984200); public static readonly PrefabGUID TM_PlantfiberJuniper_02_Pickup_Destoryed = new PrefabGUID(1202300220); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_01_Pickup = new PrefabGUID(-404610955); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_01_Pickup_Destoryed = new PrefabGUID(-398620477); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_02_Pickup = new PrefabGUID(185120571); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_02_Pickup_Destoryed = new PrefabGUID(1745350664); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_01_Pickup = new PrefabGUID(752142615); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_01_Pickup_Destroyed = new PrefabGUID(-483071675); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_02_Pickup = new PrefabGUID(1368285791); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_02_Pickup_Destroyed = new PrefabGUID(429570966); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_03_Pickup = new PrefabGUID(-423092821); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_03_Pickup_Destroyed = new PrefabGUID(1898034132); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_01_Pickup = new PrefabGUID(-460694983); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_01_Pickup_Destroyed = new PrefabGUID(1027529180); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_02_Pickup = new PrefabGUID(-1337469679); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_02_Pickup_Destroyed = new PrefabGUID(241390568); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_03_Pickup = new PrefabGUID(-209811776); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_03_Pickup_Destroyed = new PrefabGUID(-468047720); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_04_Pickup = new PrefabGUID(-1775763852); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_04_Pickup_Destroyed = new PrefabGUID(489342702); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_01_Pickup = new PrefabGUID(-161725309); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_01_Pickup_Destroyed = new PrefabGUID(-824948289); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_02_Pickup = new PrefabGUID(-1140768116); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_02_Pickup_Destroyed = new PrefabGUID(-173993019); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_03_Pickup = new PrefabGUID(275756993); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_03_Pickup_Destroyed = new PrefabGUID(-373417388); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_04_Pickup = new PrefabGUID(-1510293212); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_04_Pickup_Destroyed = new PrefabGUID(933043247); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Cursed01_Pickup = new PrefabGUID(-524412959); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Cursed01_Pickup_Destoryed = new PrefabGUID(1209021807); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Cursed02_Pickup = new PrefabGUID(-1466622378); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Gloomrot01_Pickup = new PrefabGUID(324756468); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Gloomrot01_Pickup_Destoryed = new PrefabGUID(1130489193); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Gloomrot02_Pickup = new PrefabGUID(-166818482); public static readonly PrefabGUID TM_PlantfiberSpikyBush_GloomrotHills01_Pickup = new PrefabGUID(-1977219646); public static readonly PrefabGUID TM_PlantfiberSpikyBush_GloomrotHills01_Pickup_Destoryed = new PrefabGUID(692848861); public static readonly PrefabGUID TM_PlantfiberSpikyBush_GloomrotHills02_Pickup = new PrefabGUID(-42619736); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_01_Pickup = new PrefabGUID(-1426443075); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_01_Pickup_Destroyed = new PrefabGUID(224237704); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_02_Pickup = new PrefabGUID(188555007); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_02_Pickup_Destroyed = new PrefabGUID(405001618); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_03_Pickup = new PrefabGUID(-418510906); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_03_Pickup_Destroyed = new PrefabGUID(801995079); public static readonly PrefabGUID TM_PlantfiberSunflower_01_Pickup = new PrefabGUID(-608256184); public static readonly PrefabGUID TM_PlantfiberSunflower_01_Pickup_Destoryed = new PrefabGUID(-114103527); public static readonly PrefabGUID TM_PlantfiberSunflower_02_Pickup = new PrefabGUID(263978365); public static readonly PrefabGUID TM_PlantfiberSunflower_03_Pickup = new PrefabGUID(544420990); public static readonly PrefabGUID TM_PlantfiberWheat_01_Pickup = new PrefabGUID(1071791529); public static readonly PrefabGUID TM_PlantfiberWheat_01_Pickup_Destoryed = new PrefabGUID(-1940243257); public static readonly PrefabGUID TM_PlantfiberWheat_02_Pickup = new PrefabGUID(-1908047631); public static readonly PrefabGUID TM_PlantfiberWheat_03_Pickup = new PrefabGUID(1113438348); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_01_Pickup = new PrefabGUID(770530955); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_01_Pickup_Destoryed = new PrefabGUID(-2088943304); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_02_Pickup = new PrefabGUID(-1276213608); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_03_Pickup = new PrefabGUID(-748110666); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_01_Pickup = new PrefabGUID(-903154463); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_01_Pickup_Destoryed = new PrefabGUID(-732403838); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_02_Pickup = new PrefabGUID(49082623); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_03_Pickup = new PrefabGUID(-974149708); public static readonly PrefabGUID TM_PlayerSpawnPosition = new PrefabGUID(-703069561); public static readonly PrefabGUID TM_PortalOneWayExit = new PrefabGUID(558835178); public static readonly PrefabGUID TM_ProfessorCoil = new PrefabGUID(1179186281); public static readonly PrefabGUID TM_Quartz_01_Rubble = new PrefabGUID(-588721573); public static readonly PrefabGUID TM_Quartz_01_Stage0_Resource = new PrefabGUID(1629620514); public static readonly PrefabGUID TM_Quartz_01_Stage1_Resource = new PrefabGUID(-673609513); public static readonly PrefabGUID TM_Quartz_02_Rubble = new PrefabGUID(-1196878495); public static readonly PrefabGUID TM_Quartz_02_Stage0_Resource = new PrefabGUID(639857833); public static readonly PrefabGUID TM_Quartz_02_Stage1_Resource = new PrefabGUID(1888991589); public static readonly PrefabGUID TM_Quartz_03_Rubble = new PrefabGUID(773547803); public static readonly PrefabGUID TM_Quartz_03_Stage0_Resource = new PrefabGUID(-1143428603); public static readonly PrefabGUID TM_Quartz_03_Stage1_Resource = new PrefabGUID(-1746391101); public static readonly PrefabGUID TM_QuartzMineEntranceGate_01 = new PrefabGUID(-1449219226); public static readonly PrefabGUID TM_RefinementStation_BloodPress_Large = new PrefabGUID(-684391635); public static readonly PrefabGUID TM_RefinementStation_BloodPress_Small = new PrefabGUID(-300823465); public static readonly PrefabGUID TM_RefinementStation_Fabricator = new PrefabGUID(-465055967); public static readonly PrefabGUID TM_RefinementStation_Furnace_Large = new PrefabGUID(-222851985); public static readonly PrefabGUID TM_RefinementStation_Furnace_Small = new PrefabGUID(-1150411622); public static readonly PrefabGUID TM_RefinementStation_GemCutting = new PrefabGUID(-21483617); public static readonly PrefabGUID TM_RefinementStation_Loom_Large = new PrefabGUID(1299929048); public static readonly PrefabGUID TM_RefinementStation_Loom_Small = new PrefabGUID(-16328955); public static readonly PrefabGUID TM_RefinementStation_PaperPress_Small = new PrefabGUID(-1628971842); public static readonly PrefabGUID TM_RefinementStation_Sawmill_Large = new PrefabGUID(-163562336); public static readonly PrefabGUID TM_RefinementStation_Sawmill_Small = new PrefabGUID(1094077710); public static readonly PrefabGUID TM_RefinementStation_StonecuttingTable_Large = new PrefabGUID(-178579946); public static readonly PrefabGUID TM_RefinementStation_StonecuttingTable_Small = new PrefabGUID(-600683642); public static readonly PrefabGUID TM_RefinementStation_Tannery_Large = new PrefabGUID(-1422196107); public static readonly PrefabGUID TM_RefinementStation_Tannery_Small = new PrefabGUID(-635885386); public static readonly PrefabGUID TM_RefinementStation_TeslaLightningRod = new PrefabGUID(1311814093); public static readonly PrefabGUID TM_Relic_SoulShard_Behemoth = new PrefabGUID(-1634027738); public static readonly PrefabGUID TM_Relic_SoulShard_Manticore = new PrefabGUID(4777796); public static readonly PrefabGUID TM_Relic_SoulShard_Monster = new PrefabGUID(-676422497); public static readonly PrefabGUID TM_Relic_SoulShard_Paladin = new PrefabGUID(433842875); public static readonly PrefabGUID TM_ResearchStation_T01 = new PrefabGUID(-495424062); public static readonly PrefabGUID TM_ResearchStation_T02 = new PrefabGUID(-1292809886); public static readonly PrefabGUID TM_ResearchStation_T03 = new PrefabGUID(-1262194203); public static readonly PrefabGUID TM_Respawn_TombCoffin = new PrefabGUID(1398472022); public static readonly PrefabGUID TM_Respawn_WaypointCoffin = new PrefabGUID(2022796115); public static readonly PrefabGUID TM_Respawn_WoodenCoffin = new PrefabGUID(1217011662); public static readonly PrefabGUID TM_Rock_01_Rubble = new PrefabGUID(1998635736); public static readonly PrefabGUID TM_Rock_01_Stage0_Resource = new PrefabGUID(-1362350044); public static readonly PrefabGUID TM_Rock_01_Stage1_Resource = new PrefabGUID(2011800452); public static readonly PrefabGUID TM_Rock_02_Rubble = new PrefabGUID(-29373286); public static readonly PrefabGUID TM_Rock_02_Stage0_Resource = new PrefabGUID(345892935); public static readonly PrefabGUID TM_Rock_02_Stage1_Resource = new PrefabGUID(-1131894009); public static readonly PrefabGUID TM_Rock_03_Rubble = new PrefabGUID(-10972421); public static readonly PrefabGUID TM_Rock_03_Stage0_Resource = new PrefabGUID(58563126); public static readonly PrefabGUID TM_Rock_03_Stage1_Resource = new PrefabGUID(-1238021899); public static readonly PrefabGUID TM_Rock_04_Rubble = new PrefabGUID(-1475311644); public static readonly PrefabGUID TM_Rock_04_Stage0_Resource = new PrefabGUID(1263802335); public static readonly PrefabGUID TM_Rock_04_Stage1_Resource = new PrefabGUID(733441279); public static readonly PrefabGUID TM_RockBig_01_Rubble = new PrefabGUID(-1106052914); public static readonly PrefabGUID TM_RockBig_01_Stage0_Resource = new PrefabGUID(-358477262); public static readonly PrefabGUID TM_RockBig_01_Stage1_Resource = new PrefabGUID(-1124557916); public static readonly PrefabGUID TM_RockFormation_SpiderWeb_01_Original = new PrefabGUID(445376197); public static readonly PrefabGUID TM_RockFormation_SpiderWeb_02_Original = new PrefabGUID(-511172953); public static readonly PrefabGUID TM_RockMedium_01_Rubble = new PrefabGUID(455914244); public static readonly PrefabGUID TM_RockMedium_01_Stage0_Resource = new PrefabGUID(-138368399); public static readonly PrefabGUID TM_RockMedium_01_Stage1_Resource = new PrefabGUID(-1809659248); public static readonly PrefabGUID TM_Ruin_Pillar_01 = new PrefabGUID(1129409161); public static readonly PrefabGUID TM_Ruin_Pillar_02 = new PrefabGUID(1226124644); public static readonly PrefabGUID TM_Ruin_Pillar_03 = new PrefabGUID(-625676207); public static readonly PrefabGUID TM_Ruin_Pillar_04 = new PrefabGUID(-194498839); public static readonly PrefabGUID TM_Ruin_Pillar_05 = new PrefabGUID(2012235719); public static readonly PrefabGUID TM_Ruin_Pillar_06_Noctem = new PrefabGUID(-814001508); public static readonly PrefabGUID TM_Ruin_Pillar_07_Noctem = new PrefabGUID(1293517133); public static readonly PrefabGUID TM_Ruin_Pillar_08_Noctem = new PrefabGUID(2080264432); public static readonly PrefabGUID TM_Ruin_Pillar_09_Noctem = new PrefabGUID(881331638); public static readonly PrefabGUID TM_Ruin_Pillar_10_Noctem = new PrefabGUID(256182240); public static readonly PrefabGUID TM_Ruin_ShortWall_01 = new PrefabGUID(-747342062); public static readonly PrefabGUID TM_Ruin_ShortWall_02 = new PrefabGUID(2035648996); public static readonly PrefabGUID TM_Ruin_ShortWall_03 = new PrefabGUID(1501953846); public static readonly PrefabGUID TM_Ruin_ShortWall_End_01 = new PrefabGUID(-1627901133); public static readonly PrefabGUID TM_RuinCursed_Pillar_01 = new PrefabGUID(1219478305); public static readonly PrefabGUID TM_RuinCursed_Pillar_02 = new PrefabGUID(1698786315); public static readonly PrefabGUID TM_RuinCursed_Pillar_03 = new PrefabGUID(1403031386); public static readonly PrefabGUID TM_RuinCursed_Pillar_04 = new PrefabGUID(1190183318); public static readonly PrefabGUID TM_RuinCursed_Pillar_05 = new PrefabGUID(-1981981144); public static readonly PrefabGUID TM_RuinCursed_ShortWall_01 = new PrefabGUID(1952230723); public static readonly PrefabGUID TM_RuinCursed_ShortWall_02 = new PrefabGUID(-1759685622); public static readonly PrefabGUID TM_RuinCursed_ShortWall_03 = new PrefabGUID(898692955); public static readonly PrefabGUID TM_RuinHouseCursed01_Wall01_Windowed01_Original = new PrefabGUID(1334192010); public static readonly PrefabGUID TM_RuinHouseCursed01_Wall01_Windowed02_Original = new PrefabGUID(446608272); public static readonly PrefabGUID TM_Runestone_fading02_Breakable = new PrefabGUID(1569420558); public static readonly PrefabGUID TM_Rustic_BarCounter01 = new PrefabGUID(-1312915025); public static readonly PrefabGUID TM_Rustic_BarCounter02 = new PrefabGUID(-620831251); public static readonly PrefabGUID TM_Rustic_ShelfThin_01_Empty = new PrefabGUID(-1182147389); public static readonly PrefabGUID TM_Rustic_ShelfThin_01_Full = new PrefabGUID(2129034430); public static readonly PrefabGUID TM_Rustic_ShelfThin_02_Empty = new PrefabGUID(1444984824); public static readonly PrefabGUID TM_Rustic_ShelfThin_02_Full = new PrefabGUID(-1036928429); public static readonly PrefabGUID TM_Rustic_ShelfWide_01_Empty = new PrefabGUID(-538811230); public static readonly PrefabGUID TM_Rustic_ShelfWide_01_Full = new PrefabGUID(1087927594); public static readonly PrefabGUID TM_Rustic_ShelfWide_02_Empty = new PrefabGUID(-1815864709); public static readonly PrefabGUID TM_Rustic_ShelfWide_02_Full = new PrefabGUID(402721628); public static readonly PrefabGUID TM_Rustic_ShelfWide_03_Empty = new PrefabGUID(692731751); public static readonly PrefabGUID TM_Rustic_ShelfWide_03_Full = new PrefabGUID(258550221); public static readonly PrefabGUID TM_Rustic_Table_01 = new PrefabGUID(-714488160); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type0 = new PrefabGUID(1479642074); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type1 = new PrefabGUID(-2130158640); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type10 = new PrefabGUID(-1403529640); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type11 = new PrefabGUID(-1559986473); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type12 = new PrefabGUID(-406385125); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type13 = new PrefabGUID(368276115); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type14 = new PrefabGUID(309391681); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type2 = new PrefabGUID(200113164); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type3 = new PrefabGUID(1707884972); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type4 = new PrefabGUID(-526184786); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type5 = new PrefabGUID(2003966958); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type6 = new PrefabGUID(-2146975260); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type7 = new PrefabGUID(282491312); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type8 = new PrefabGUID(505553235); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type9 = new PrefabGUID(1184901893); public static readonly PrefabGUID TM_SalvageStation_Table = new PrefabGUID(-1719849142); public static readonly PrefabGUID TM_Sarcofag_01_Empty = new PrefabGUID(65999213); public static readonly PrefabGUID TM_Sarcofag_01_Full = new PrefabGUID(-1735799535); public static readonly PrefabGUID TM_ScantyStick_01_Fence = new PrefabGUID(-1779144910); public static readonly PrefabGUID TM_ScantyStick_01_Fence_Broken = new PrefabGUID(-1204997445); public static readonly PrefabGUID TM_ScantyStick_02_Fence = new PrefabGUID(-1244145185); public static readonly PrefabGUID TM_ScantyStick_02_Fence_Broken = new PrefabGUID(-1945442679); public static readonly PrefabGUID TM_ScantyStick_03_Fence = new PrefabGUID(493705661); public static readonly PrefabGUID TM_ScantyStick_03_Fence_Broken = new PrefabGUID(1386466088); public static readonly PrefabGUID TM_ScantyStick_Diagonal_01_Fence = new PrefabGUID(-9669211); public static readonly PrefabGUID TM_ScantyStick_Diagonal_01_Fence_Broken = new PrefabGUID(-401437892); public static readonly PrefabGUID TM_ScantyStick_Diagonal_02_Fence = new PrefabGUID(787903585); public static readonly PrefabGUID TM_ScantyStick_Diagonal_02_Fence_Broken = new PrefabGUID(62726829); public static readonly PrefabGUID TM_ScantyStick_End01 = new PrefabGUID(356711713); public static readonly PrefabGUID TM_ScantyStick_End01_broken = new PrefabGUID(-1122600581); public static readonly PrefabGUID TM_ScarecrowDummy_01 = new PrefabGUID(-435687724); public static readonly PrefabGUID TM_SelectStartGraveyardGate = new PrefabGUID(720396433); public static readonly PrefabGUID TM_Siege_Structure_T02 = new PrefabGUID(2022737514); public static readonly PrefabGUID TM_Sign_Snow_01 = new PrefabGUID(-1858982064); public static readonly PrefabGUID TM_Sign_Snow_02 = new PrefabGUID(-1237628946); public static readonly PrefabGUID TM_Sign_Snow_03 = new PrefabGUID(1750544364); public static readonly PrefabGUID TM_Sign_Snow_04 = new PrefabGUID(919428854); public static readonly PrefabGUID TM_Sign_Snow_05 = new PrefabGUID(-1509662120); public static readonly PrefabGUID TM_Sign01 = new PrefabGUID(314589946); public static readonly PrefabGUID TM_Sign02 = new PrefabGUID(35790096); public static readonly PrefabGUID TM_Sign03 = new PrefabGUID(671162167); public static readonly PrefabGUID TM_Sign04 = new PrefabGUID(-98005625); public static readonly PrefabGUID TM_Sign05 = new PrefabGUID(1664009067); public static readonly PrefabGUID TM_Silver_01_Rubble = new PrefabGUID(-118615585); public static readonly PrefabGUID TM_Silver_01_Stage0_Resource = new PrefabGUID(10453443); public static readonly PrefabGUID TM_Silver_01_Stage1_Resource = new PrefabGUID(675540145); public static readonly PrefabGUID TM_Silver_02_Rubble = new PrefabGUID(-1731023744); public static readonly PrefabGUID TM_Silver_02_Stage0_Resource = new PrefabGUID(376608752); public static readonly PrefabGUID TM_Silver_02_Stage1_Resource = new PrefabGUID(1571197875); public static readonly PrefabGUID TM_Silver_03_Rubble = new PrefabGUID(1576629491); public static readonly PrefabGUID TM_Silver_03_Stage0_Resource = new PrefabGUID(450465441); public static readonly PrefabGUID TM_Silver_03_Stage1_Resource = new PrefabGUID(-2097486830); public static readonly PrefabGUID TM_Silverhills_Banner01 = new PrefabGUID(-1494405293); public static readonly PrefabGUID TM_Silverhills_Banner02 = new PrefabGUID(1032960055); public static readonly PrefabGUID TM_Silverhills_Banner03 = new PrefabGUID(-1689624975); public static readonly PrefabGUID TM_Silverhills_Flowerpot01 = new PrefabGUID(-1009120962); public static readonly PrefabGUID TM_Silverhills_Flowerpot02 = new PrefabGUID(217924763); public static readonly PrefabGUID TM_Silverhills_Flowerpot03 = new PrefabGUID(883821034); public static readonly PrefabGUID TM_Silverhills_Flowerpot04 = new PrefabGUID(-1231067366); public static readonly PrefabGUID TM_Silverhills_Flowerpot04_Original = new PrefabGUID(-879696764); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFish01 = new PrefabGUID(-1078042690); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFish02 = new PrefabGUID(572811620); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishCrab01 = new PrefabGUID(295695189); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishCrab02 = new PrefabGUID(1843224760); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishFlounder01 = new PrefabGUID(-1986293577); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishFlounder02 = new PrefabGUID(1437925960); public static readonly PrefabGUID TM_Silverhills_JettyBarrelNet01 = new PrefabGUID(747749142); public static readonly PrefabGUID TM_Silverhills_JettyBarrelNet02 = new PrefabGUID(-1834273240); public static readonly PrefabGUID TM_Silverhills_JettyCrate01 = new PrefabGUID(-1994020585); public static readonly PrefabGUID TM_Silverhills_JettyCrate02 = new PrefabGUID(-1866443311); public static readonly PrefabGUID TM_Silverhills_JettyCrate03 = new PrefabGUID(1036733580); public static readonly PrefabGUID TM_Silverhills_JettyCrateFish01 = new PrefabGUID(903549312); public static readonly PrefabGUID TM_Silverhills_JettyCrateFish02 = new PrefabGUID(-836592845); public static readonly PrefabGUID TM_Silverhills_JettyCrateFish03 = new PrefabGUID(-824508970); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishCrab01 = new PrefabGUID(-1122978511); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishCrab02 = new PrefabGUID(881970772); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishFlounder01 = new PrefabGUID(-1288053365); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishFlounder02 = new PrefabGUID(1470196342); public static readonly PrefabGUID TM_Silverhills_JettyCrateNet01 = new PrefabGUID(95088641); public static readonly PrefabGUID TM_Silverhills_JettyCrateNet02 = new PrefabGUID(766451284); public static readonly PrefabGUID TM_Silverhills_JettyNetRack01 = new PrefabGUID(67090543); public static readonly PrefabGUID TM_Silverhills_MineBarrel_01 = new PrefabGUID(-1835855398); public static readonly PrefabGUID TM_Silverhills_MineBarrel_02 = new PrefabGUID(1436339891); public static readonly PrefabGUID TM_Silverhills_MineBarrel_03 = new PrefabGUID(-1894401581); public static readonly PrefabGUID TM_Silverhills_MineBarrel_04 = new PrefabGUID(999227645); public static readonly PrefabGUID TM_Silverhills_MineBarrel_05 = new PrefabGUID(1989046951); public static readonly PrefabGUID TM_Silverhills_Sign01 = new PrefabGUID(348848451); public static readonly PrefabGUID TM_Silverhills_Sign02 = new PrefabGUID(1280524146); public static readonly PrefabGUID TM_Silverhills_Sign03 = new PrefabGUID(-952279019); public static readonly PrefabGUID TM_Silverhills_Sign04 = new PrefabGUID(-1121469823); public static readonly PrefabGUID TM_Silverhills_StoneSymbol01 = new PrefabGUID(546349114); public static readonly PrefabGUID TM_Silverhills_StoneSymbol02 = new PrefabGUID(338575660); public static readonly PrefabGUID TM_SilverHills_Windmill_01 = new PrefabGUID(-675012325); public static readonly PrefabGUID TM_SilverHills_Windmill_02 = new PrefabGUID(-1792341199); public static readonly PrefabGUID TM_SilverHills_Windmill_03 = new PrefabGUID(-858080165); public static readonly PrefabGUID TM_SilverMine_StoneBench01 = new PrefabGUID(657810081); public static readonly PrefabGUID TM_SilverMine_StoneBench01_Broken = new PrefabGUID(-461831592); public static readonly PrefabGUID TM_SilverMine_StoneBench02 = new PrefabGUID(-1794580606); public static readonly PrefabGUID TM_SilverMine_StoneBookPedestal01 = new PrefabGUID(-2076590095); public static readonly PrefabGUID TM_SilverMine_StoneBookPedestal01_Broken = new PrefabGUID(-317368372); public static readonly PrefabGUID TM_SilverMine_StoneTable01 = new PrefabGUID(144808549); public static readonly PrefabGUID TM_SilverMine_StoneTable01_Broken = new PrefabGUID(1157103273); public static readonly PrefabGUID TM_SilverMine_StoneTable02 = new PrefabGUID(2023603499); public static readonly PrefabGUID TM_SilverMines_Cage01_Door01 = new PrefabGUID(1352028431); public static readonly PrefabGUID TM_SilverMines_StoneStatue01 = new PrefabGUID(-230393900); public static readonly PrefabGUID TM_SilverMines_StoneStatue02 = new PrefabGUID(1125255288); public static readonly PrefabGUID TM_SilverMines_StoneStatue03 = new PrefabGUID(2072431326); public static readonly PrefabGUID TM_SilverMines_StoneSymbol01 = new PrefabGUID(-557421751); public static readonly PrefabGUID TM_SilverMines_StoneSymbol02 = new PrefabGUID(1598831191); public static readonly PrefabGUID TM_SilverMines_StoneSymbol03 = new PrefabGUID(1808452117); public static readonly PrefabGUID TM_SimpleDrawers_01_Empty = new PrefabGUID(-756293986); public static readonly PrefabGUID TM_SimpleDrawers_01_Full = new PrefabGUID(-561779598); public static readonly PrefabGUID TM_SimpleDrawers_02_Empty = new PrefabGUID(909382130); public static readonly PrefabGUID TM_SimpleDrawers_02_Full = new PrefabGUID(179059918); public static readonly PrefabGUID TM_SimpleDrawers_03_Empty = new PrefabGUID(-1460547533); public static readonly PrefabGUID TM_SimpleDrawers_03_Full = new PrefabGUID(-794696815); public static readonly PrefabGUID TM_SimpleDrawers_04_Empty = new PrefabGUID(-1636356023); public static readonly PrefabGUID TM_SimpleDrawers_04_Full = new PrefabGUID(-1061550254); public static readonly PrefabGUID TM_SimpleWoodenBed_01 = new PrefabGUID(1834649454); public static readonly PrefabGUID TM_SimpleWoodenChair_01 = new PrefabGUID(-756683759); public static readonly PrefabGUID TM_SimpleWoodenChair_02 = new PrefabGUID(1842640453); public static readonly PrefabGUID TM_SimpleWoodenTable_01 = new PrefabGUID(800923716); public static readonly PrefabGUID TM_SimpleWoodenTable_02 = new PrefabGUID(-1764152778); public static readonly PrefabGUID TM_SimpleWoodenTable_03 = new PrefabGUID(2000807520); public static readonly PrefabGUID TM_SimpleWoodenTable_04 = new PrefabGUID(-1157969705); public static readonly PrefabGUID TM_SimpleWoodenTable_05 = new PrefabGUID(510360940); public static readonly PrefabGUID TM_SlumBed_01 = new PrefabGUID(911155058); public static readonly PrefabGUID TM_SlumBedtable_01 = new PrefabGUID(-53016854); public static readonly PrefabGUID TM_SlumChair01 = new PrefabGUID(908135937); public static readonly PrefabGUID TM_SmallTent_01 = new PrefabGUID(1879005950); public static readonly PrefabGUID TM_SmallTent_02 = new PrefabGUID(-330813132); public static readonly PrefabGUID TM_SmallTent_03_Dunley = new PrefabGUID(-1880734295); public static readonly PrefabGUID TM_SmallTent_04_Dunley = new PrefabGUID(1554633500); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_01_Red = new PrefabGUID(109967665); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_02_Blue = new PrefabGUID(940351894); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_03_Green = new PrefabGUID(-992935202); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_04_Purple = new PrefabGUID(1513357066); public static readonly PrefabGUID TM_SpecialStation_ArenaHealthOrb = new PrefabGUID(2145966113); public static readonly PrefabGUID TM_SpecialStation_ArenaShrinkingCircle = new PrefabGUID(-1857667976); public static readonly PrefabGUID TM_SpecialStation_ArenaStation = new PrefabGUID(1418230009); public static readonly PrefabGUID TM_SpecialStation_InventoryRouting = new PrefabGUID(-624818956); public static readonly PrefabGUID TM_SpecialStation_MusicPlayer = new PrefabGUID(1278389141); public static readonly PrefabGUID TM_SpecialStation_PrisonCell = new PrefabGUID(-1253061408); public static readonly PrefabGUID TM_SpecialStation_PrisonCell_StrongbladeDLC = new PrefabGUID(371396732); public static readonly PrefabGUID TM_SpecialStation_ServantCoffin = new PrefabGUID(723455393); public static readonly PrefabGUID TM_SpecialStation_ServantCoffin_StrongbladeDLC = new PrefabGUID(1789222770); public static readonly PrefabGUID TM_SpecialStation_StablePen = new PrefabGUID(-336743839); public static readonly PrefabGUID TM_SpecialStation_StoneCoffin = new PrefabGUID(-1939721641); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinDLC01Variant = new PrefabGUID(-750982654); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinDLC02Variant = new PrefabGUID(-390082555); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinProjectKVariant = new PrefabGUID(-1746633144); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinStrongbladeDLC01Variant = new PrefabGUID(18293671); public static readonly PrefabGUID TM_SpecialStation_WoodenCoffin = new PrefabGUID(1523835471); public static readonly PrefabGUID TM_SpecialStation_WoodenCoffinHalloween01Variant = new PrefabGUID(1567106242); public static readonly PrefabGUID TM_Spider_Cocoon_GameplayBase = new PrefabGUID(929305051); public static readonly PrefabGUID TM_Spider_Cocoon01 = new PrefabGUID(1163200907); public static readonly PrefabGUID TM_Spider_Cocoon02 = new PrefabGUID(-1764380120); public static readonly PrefabGUID TM_Spider_Cocoon03 = new PrefabGUID(-1164935942); public static readonly PrefabGUID TM_Spider_Cocoon04 = new PrefabGUID(1815531484); public static readonly PrefabGUID TM_Spider_Cocoon05 = new PrefabGUID(-228173349); public static readonly PrefabGUID TM_Spider_Cocoon06_MicroPOI = new PrefabGUID(-1947855801); public static readonly PrefabGUID TM_Spider_Cocoon07_MicroPOI = new PrefabGUID(534526461); public static readonly PrefabGUID TM_Spider_Cocoon08_MicroPOI = new PrefabGUID(203176140); public static readonly PrefabGUID TM_Spider_Cocoon09_MicroPOI = new PrefabGUID(1692645533); public static readonly PrefabGUID TM_SpiderWeb_01_Pickup = new PrefabGUID(-1048980037); public static readonly PrefabGUID TM_SpiderWeb_01_PickupVertical = new PrefabGUID(-1107361939); public static readonly PrefabGUID TM_Spruce_Sapling = new PrefabGUID(-90075278); public static readonly PrefabGUID TM_Spruce01_Large = new PrefabGUID(1606524221); public static readonly PrefabGUID TM_Spruce01_Large_Stump = new PrefabGUID(1712573260); public static readonly PrefabGUID TM_Spruce01_Small = new PrefabGUID(-1500762345); public static readonly PrefabGUID TM_Spruce01_Small_Stump = new PrefabGUID(-836317884); public static readonly PrefabGUID TM_Spruce02_Large = new PrefabGUID(734902021); public static readonly PrefabGUID TM_Spruce02_Large_Stump = new PrefabGUID(1556790607); public static readonly PrefabGUID TM_Spruce02_Small = new PrefabGUID(-1082258671); public static readonly PrefabGUID TM_Spruce02_Small_Stump = new PrefabGUID(1095188845); public static readonly PrefabGUID TM_Spruce03_Large = new PrefabGUID(239039673); public static readonly PrefabGUID TM_Spruce03_Large_Stump = new PrefabGUID(-1956027116); public static readonly PrefabGUID TM_Spruce03_Small = new PrefabGUID(-1309046047); public static readonly PrefabGUID TM_Spruce03_Small_Stump = new PrefabGUID(-1174770661); public static readonly PrefabGUID TM_SpruceSnow_Sapling = new PrefabGUID(-17448356); public static readonly PrefabGUID TM_SpruceSnow01_Large = new PrefabGUID(492544600); public static readonly PrefabGUID TM_SpruceSnow01_Large_Stump = new PrefabGUID(1032517852); public static readonly PrefabGUID TM_SpruceSnow01_Small = new PrefabGUID(1514957931); public static readonly PrefabGUID TM_SpruceSnow01_Small_Stump = new PrefabGUID(-371899447); public static readonly PrefabGUID TM_SpruceSnow02_Large = new PrefabGUID(-240849232); public static readonly PrefabGUID TM_SpruceSnow02_Large_Stump = new PrefabGUID(372605538); public static readonly PrefabGUID TM_SpruceSnow02_Sapling = new PrefabGUID(-953102767); public static readonly PrefabGUID TM_SpruceSnow02_Small = new PrefabGUID(870470337); public static readonly PrefabGUID TM_SpruceSnow02_Small_Stump = new PrefabGUID(734607320); public static readonly PrefabGUID TM_SpruceSnow03_Large = new PrefabGUID(-1540200877); public static readonly PrefabGUID TM_SpruceSnow03_Large_Stump = new PrefabGUID(-971336439); public static readonly PrefabGUID TM_SpruceSnow03_Sapling = new PrefabGUID(-1008475564); public static readonly PrefabGUID TM_SpruceSnow03_Small = new PrefabGUID(1221432172); public static readonly PrefabGUID TM_SpruceSnow03_Small_Stump = new PrefabGUID(813038190); public static readonly PrefabGUID TM_Stash_Chest_Rebuilding = new PrefabGUID(-220201461); public static readonly PrefabGUID TM_Stash_Chest_SafetyBox = new PrefabGUID(1842080060); public static readonly PrefabGUID TM_Stash_Chest_Wood_Gems_Test = new PrefabGUID(1460447336); public static readonly PrefabGUID TM_Stash_Chest_Wood_General = new PrefabGUID(-251472465); public static readonly PrefabGUID TM_Stash_Chest_Wood_General_Big = new PrefabGUID(-198459384); public static readonly PrefabGUID TM_Stash_Chest_Wood_General_Halloween01Variant = new PrefabGUID(167900559); public static readonly PrefabGUID TM_Stash_Chest_Wood_General_PLACEHOLDER = new PrefabGUID(279811010); public static readonly PrefabGUID TM_Stash_Chest_Wood_Lumber_Big = new PrefabGUID(-852162858); public static readonly PrefabGUID TM_Stealth_Zone_Area01_Prog_Test = new PrefabGUID(-1275256745); public static readonly PrefabGUID TM_StoneBench_01 = new PrefabGUID(1035317765); public static readonly PrefabGUID TM_StoneBench_01_Broken = new PrefabGUID(1310970184); public static readonly PrefabGUID TM_StoneBench_01_Broken_snow = new PrefabGUID(-799148423); public static readonly PrefabGUID TM_StoneBench_01_snow = new PrefabGUID(864917669); public static readonly PrefabGUID TM_StoneUrn_01 = new PrefabGUID(302487963); public static readonly PrefabGUID TM_StoneUrn_02 = new PrefabGUID(-1202337582); public static readonly PrefabGUID TM_StoneUrn_03 = new PrefabGUID(-1527876841); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_FlowerPress01 = new PrefabGUID(-168691131); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_SeedSack01 = new PrefabGUID(-1708817259); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_SeedSack02 = new PrefabGUID(-1378715738); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_SeedSack03 = new PrefabGUID(-367953849); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big01_Empty = new PrefabGUID(-1995556365); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big01_Full = new PrefabGUID(-377303292); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big02_Empty = new PrefabGUID(-987816623); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big02_Full = new PrefabGUID(-133440860); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small01_Empty = new PrefabGUID(-772470636); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small01_Full = new PrefabGUID(387439893); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small02_Empty = new PrefabGUID(14833534); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small02_Full = new PrefabGUID(-816261407); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small03_Empty = new PrefabGUID(-1303349542); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small03_Full = new PrefabGUID(870983297); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table01 = new PrefabGUID(-1787239906); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table02_Interactable = new PrefabGUID(-175965784); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table03 = new PrefabGUID(1748749697); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table03_Interactable = new PrefabGUID(-426257034); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table04 = new PrefabGUID(2144016414); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table04_Interactable = new PrefabGUID(1424158304); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table05 = new PrefabGUID(668639702); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table06_Interactable = new PrefabGUID(1109700798); public static readonly PrefabGUID TM_Strongblade_Banner01 = new PrefabGUID(104134852); public static readonly PrefabGUID TM_Strongblade_Banner02 = new PrefabGUID(485198883); public static readonly PrefabGUID TM_Strongblade_Banner03 = new PrefabGUID(869051081); public static readonly PrefabGUID TM_Strongblade_Barrel01 = new PrefabGUID(-414963350); public static readonly PrefabGUID TM_Strongblade_Barrel02 = new PrefabGUID(-85300187); public static readonly PrefabGUID TM_Strongblade_Bed01 = new PrefabGUID(-326544875); public static readonly PrefabGUID TM_Strongblade_Bed03 = new PrefabGUID(-390390083); public static readonly PrefabGUID TM_Strongblade_Brazier01 = new PrefabGUID(1629431503); public static readonly PrefabGUID TM_Strongblade_Brazier02 = new PrefabGUID(-425317398); public static readonly PrefabGUID TM_Strongblade_Brazier02_IdleInteraction = new PrefabGUID(-1263494766); public static readonly PrefabGUID TM_Strongblade_Brazier03 = new PrefabGUID(42488152); public static readonly PrefabGUID TM_Strongblade_Brazier03_IdleInteraction = new PrefabGUID(-1021198763); public static readonly PrefabGUID TM_Strongblade_BunkBed01 = new PrefabGUID(506658127); public static readonly PrefabGUID TM_Strongblade_BunkBed02 = new PrefabGUID(1376337350); public static readonly PrefabGUID TM_Strongblade_BunkBed03 = new PrefabGUID(939372173); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench01 = new PrefabGUID(-1253129719); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench02 = new PrefabGUID(918560552); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench03 = new PrefabGUID(662541797); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench03_IdleInteraction = new PrefabGUID(-1272496655); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench04 = new PrefabGUID(1784027157); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench04_IdleInteraction = new PrefabGUID(-349886488); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench05 = new PrefabGUID(-1911605845); public static readonly PrefabGUID TM_Strongblade_Chair01 = new PrefabGUID(-1758652747); public static readonly PrefabGUID TM_Strongblade_Chair01_02 = new PrefabGUID(-981581595); public static readonly PrefabGUID TM_Strongblade_Chair02 = new PrefabGUID(-852107550); public static readonly PrefabGUID TM_Strongblade_Chair03 = new PrefabGUID(-315172854); public static readonly PrefabGUID TM_Strongblade_Chair04 = new PrefabGUID(-1569317452); public static readonly PrefabGUID TM_Strongblade_Crate01 = new PrefabGUID(1654782558); public static readonly PrefabGUID TM_Strongblade_Crate01_Flasks01 = new PrefabGUID(1796441819); public static readonly PrefabGUID TM_Strongblade_Crate01_Flasks02 = new PrefabGUID(1242537570); public static readonly PrefabGUID TM_Strongblade_Crate02 = new PrefabGUID(174168687); public static readonly PrefabGUID TM_Strongblade_Crate03 = new PrefabGUID(1704151301); public static readonly PrefabGUID TM_Strongblade_Crate03_Flasks01 = new PrefabGUID(1007313080); public static readonly PrefabGUID TM_Strongblade_Crate03_Flasks02 = new PrefabGUID(683661043); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack01 = new PrefabGUID(658251798); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack02 = new PrefabGUID(-1076135148); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack03 = new PrefabGUID(-1313422149); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack04 = new PrefabGUID(-700463825); public static readonly PrefabGUID TM_Strongblade_DriedFlowerWorkbench_01 = new PrefabGUID(156083451); public static readonly PrefabGUID TM_Strongblade_DriedFlowerWorkbench_02 = new PrefabGUID(987154002); public static readonly PrefabGUID TM_Strongblade_Emery01_Barrel01 = new PrefabGUID(-69816156); public static readonly PrefabGUID TM_Strongblade_Emery01_Barrel02 = new PrefabGUID(-1943788884); public static readonly PrefabGUID TM_Strongblade_Emery01_Crate01 = new PrefabGUID(1765368268); public static readonly PrefabGUID TM_Strongblade_Emery01_Crate02 = new PrefabGUID(-652163755); public static readonly PrefabGUID TM_Strongblade_Emery01_ToolRack01 = new PrefabGUID(-1166909223); public static readonly PrefabGUID TM_Strongblade_Emery01_Wheelbarrow01 = new PrefabGUID(-1900744904); public static readonly PrefabGUID TM_Strongblade_Mantrap_Cage_Door01 = new PrefabGUID(-1221835924); public static readonly PrefabGUID TM_Strongblade_RockCluster_01_Original = new PrefabGUID(1690480438); public static readonly PrefabGUID TM_Strongblade_RockCluster_02_Original = new PrefabGUID(77019923); public static readonly PrefabGUID TM_Strongblade_RockCluster_03_Original = new PrefabGUID(-621136372); public static readonly PrefabGUID TM_Strongblade_RockCluster_04_Original = new PrefabGUID(-73072993); public static readonly PrefabGUID TM_Strongblade_RockCluster_05_Original = new PrefabGUID(-1599798175); public static readonly PrefabGUID TM_Strongblade_RockCluster_06_Original = new PrefabGUID(-2061406212); public static readonly PrefabGUID TM_Strongblade_RockCluster_07_Original = new PrefabGUID(872118162); public static readonly PrefabGUID TM_Strongblade_RockCluster_08_Original = new PrefabGUID(1827716149); public static readonly PrefabGUID TM_Strongblade_RockCluster_09_Original = new PrefabGUID(489825189); public static readonly PrefabGUID TM_Strongblade_Ruin_Pillar_Destructable01 = new PrefabGUID(-1309591211); public static readonly PrefabGUID TM_Strongblade_Ruin_Pillar_Destructable02 = new PrefabGUID(172586723); public static readonly PrefabGUID TM_Strongblade_Ruin_Pillar_Destructable03 = new PrefabGUID(1982364891); public static readonly PrefabGUID TM_Strongblade_Shelf_Small01_Empty = new PrefabGUID(1393994448); public static readonly PrefabGUID TM_Strongblade_Shelf_Small01_Full = new PrefabGUID(-411013528); public static readonly PrefabGUID TM_Strongblade_Shelf_Small02_Empty = new PrefabGUID(537013872); public static readonly PrefabGUID TM_Strongblade_Shelf_Small02_Full = new PrefabGUID(-1247382112); public static readonly PrefabGUID TM_Strongblade_Table_Carver01 = new PrefabGUID(-592354376); public static readonly PrefabGUID TM_Strongblade_Table_Carver02 = new PrefabGUID(1093289518); public static readonly PrefabGUID TM_Strongblade_Table01 = new PrefabGUID(-1273192346); public static readonly PrefabGUID TM_Strongblade_Table01_02 = new PrefabGUID(1044421954); public static readonly PrefabGUID TM_Strongblade_Table02 = new PrefabGUID(349319940); public static readonly PrefabGUID TM_Strongblade_Table02_02 = new PrefabGUID(1900866398); public static readonly PrefabGUID TM_Strongblade_Table03 = new PrefabGUID(1634427583); public static readonly PrefabGUID TM_Strongblade_Table03_02 = new PrefabGUID(-1445801425); public static readonly PrefabGUID TM_Strongblade_Target01 = new PrefabGUID(-1916029730); public static readonly PrefabGUID TM_Strongblade_Target01_IdleInteraction = new PrefabGUID(295464096); public static readonly PrefabGUID TM_Strongblade_Target02 = new PrefabGUID(-750978662); public static readonly PrefabGUID TM_Strongblade_Target03 = new PrefabGUID(684876555); public static readonly PrefabGUID TM_Strongblade_ToolRack01 = new PrefabGUID(-1527172969); public static readonly PrefabGUID TM_Strongblade_ToolRack02 = new PrefabGUID(824503496); public static readonly PrefabGUID TM_Strongblade_WeaponRack01 = new PrefabGUID(-584978200); public static readonly PrefabGUID TM_Strongblade_WeaponRack02 = new PrefabGUID(723010941); public static readonly PrefabGUID TM_Strongblade_WeaponRack03 = new PrefabGUID(-1441268771); public static readonly PrefabGUID TM_Strongblade_Wheelbarrow01 = new PrefabGUID(-1811274354); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage0 = new PrefabGUID(-574799666); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage0_Stump = new PrefabGUID(-153310246); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage1 = new PrefabGUID(698050402); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage1_Stump = new PrefabGUID(492117234); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage0 = new PrefabGUID(-1417712737); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage0_Stump = new PrefabGUID(-1361172695); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage1 = new PrefabGUID(2092516793); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage1_Stump = new PrefabGUID(-1985930565); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage0 = new PrefabGUID(1387575651); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage0_Stump = new PrefabGUID(1731539731); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage1 = new PrefabGUID(1259900595); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage1_Stump = new PrefabGUID(1359430919); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage0 = new PrefabGUID(1304918334); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage0_Stump = new PrefabGUID(-1889052853); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage1 = new PrefabGUID(-2029742550); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage1_Stump = new PrefabGUID(-325790153); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage0 = new PrefabGUID(1737450614); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage0_Stump = new PrefabGUID(-1138271551); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage1 = new PrefabGUID(1348630284); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage1_Stump = new PrefabGUID(-719439353); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage0 = new PrefabGUID(1300886142); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage0_Stump = new PrefabGUID(-1279909832); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage1 = new PrefabGUID(604252064); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage1_Stump = new PrefabGUID(934471138); public static readonly PrefabGUID TM_StrongBladeBirchTree_Sapling = new PrefabGUID(-1124105029); public static readonly PrefabGUID TM_StrongBladeBirchTree_Sapling1 = new PrefabGUID(-1612669359); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage0 = new PrefabGUID(-33461444); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage0_Stump = new PrefabGUID(1543194120); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage1 = new PrefabGUID(-1378837905); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage1_Stump = new PrefabGUID(1350011629); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage0 = new PrefabGUID(-1068631242); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage0_Stump = new PrefabGUID(-1714411153); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage1 = new PrefabGUID(861604950); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage1_Stump = new PrefabGUID(1712523300); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage0 = new PrefabGUID(1392330784); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage0_Stump = new PrefabGUID(-112593185); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage1 = new PrefabGUID(735695679); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage1_Stump = new PrefabGUID(-1617754692); public static readonly PrefabGUID TM_StrongBladeCorruptTree_Sapling = new PrefabGUID(-649924055); public static readonly PrefabGUID TM_StrongBladeCorruptTree_Sapling1 = new PrefabGUID(1686477373); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage0 = new PrefabGUID(712826309); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage0_Stump = new PrefabGUID(-96041636); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage1 = new PrefabGUID(457552098); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage1_Stump = new PrefabGUID(-1375929779); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage0 = new PrefabGUID(-714904758); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage0_Stump = new PrefabGUID(-2103306998); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage1 = new PrefabGUID(-1817404317); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage1_Stump = new PrefabGUID(1653058473); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage0 = new PrefabGUID(-369327059); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage0_Stump = new PrefabGUID(-1039997356); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage1 = new PrefabGUID(861508982); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage1_Stump = new PrefabGUID(-782106419); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage0 = new PrefabGUID(2080479915); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage0_Stump = new PrefabGUID(-623646235); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage1 = new PrefabGUID(-188863956); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage1_Stump = new PrefabGUID(138574538); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage0 = new PrefabGUID(-1714138537); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage0_Stump = new PrefabGUID(1407051672); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage1 = new PrefabGUID(1218351404); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage1_Stump = new PrefabGUID(-276935854); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_Sapling = new PrefabGUID(-2094458774); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage0 = new PrefabGUID(-1445518388); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage0_Stump = new PrefabGUID(1737579759); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage1 = new PrefabGUID(-93781020); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage1_Stump = new PrefabGUID(541376143); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage0 = new PrefabGUID(1852241978); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage0_Stump = new PrefabGUID(-185722285); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage1 = new PrefabGUID(-877750470); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage1_Stump = new PrefabGUID(1641126016); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage0 = new PrefabGUID(1394703650); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage0_Stump = new PrefabGUID(-40942592); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage1 = new PrefabGUID(1023565406); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage1_Stump = new PrefabGUID(1695236684); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage0 = new PrefabGUID(-783526318); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage0_Stump = new PrefabGUID(-863884849); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage1 = new PrefabGUID(-371041036); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage1_Stump = new PrefabGUID(-1579316119); public static readonly PrefabGUID TM_StrongBladeOakTree_Sapling = new PrefabGUID(1756036681); public static readonly PrefabGUID TM_StrongBladeOakTree_Sapling1 = new PrefabGUID(-852179540); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage0 = new PrefabGUID(1510464384); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage0_Stump = new PrefabGUID(-1210251099); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage1 = new PrefabGUID(421255167); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage1_Stump = new PrefabGUID(2058961355); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage0 = new PrefabGUID(77769378); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage0_Stump = new PrefabGUID(-469676532); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage1 = new PrefabGUID(-2004285078); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage1_Stump = new PrefabGUID(1168027864); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage0 = new PrefabGUID(633595884); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage0_Stump = new PrefabGUID(1160981236); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage1 = new PrefabGUID(-1471701473); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage1_Stump = new PrefabGUID(605664091); public static readonly PrefabGUID TM_Stump_Werewolf_Sapling = new PrefabGUID(297309266); public static readonly PrefabGUID TM_StygianAltar_Passive_T01 = new PrefabGUID(-1938449679); public static readonly PrefabGUID TM_Sulfur_01_Rubble = new PrefabGUID(2046112686); public static readonly PrefabGUID TM_Sulfur_01_Stage0_Resource = new PrefabGUID(-1705789654); public static readonly PrefabGUID TM_Sulfur_01_Stage1_Resource = new PrefabGUID(706641532); public static readonly PrefabGUID TM_Sulfur_02_Rubble = new PrefabGUID(-1199730261); public static readonly PrefabGUID TM_Sulfur_02_Stage0_Resource = new PrefabGUID(-1817810408); public static readonly PrefabGUID TM_Sulfur_02_Stage1_Resource = new PrefabGUID(1097531546); public static readonly PrefabGUID TM_Sulfur_03_Rubble = new PrefabGUID(-2026176350); public static readonly PrefabGUID TM_Sulfur_03_Stage0_Resource = new PrefabGUID(-692469390); public static readonly PrefabGUID TM_Sulfur_03_Stage1_Resource = new PrefabGUID(-1071700724); public static readonly PrefabGUID TM_SulfurBig_01_Rubble = new PrefabGUID(-1605386382); public static readonly PrefabGUID TM_SulfurBig_01_Stage0_Resource = new PrefabGUID(-461965576); public static readonly PrefabGUID TM_SulfurBig_01_Stage1_Resource = new PrefabGUID(-1688724628); public static readonly PrefabGUID TM_SulfurMedium_01_Rubble = new PrefabGUID(1531197700); public static readonly PrefabGUID TM_SulfurMedium_01_Stage0_Resource = new PrefabGUID(-1165450820); public static readonly PrefabGUID TM_SulfurMedium_01_Stage1_Resource = new PrefabGUID(1947286426); public static readonly PrefabGUID TM_SwampTree_01_Stage0 = new PrefabGUID(1043866415); public static readonly PrefabGUID TM_SwampTree_01_Stage0_Stump = new PrefabGUID(1365781183); public static readonly PrefabGUID TM_SwampTree_01_Stage1 = new PrefabGUID(1966219405); public static readonly PrefabGUID TM_SwampTree_01_Stage1_Stump = new PrefabGUID(1754191543); public static readonly PrefabGUID TM_SwampTree_02_Stage0 = new PrefabGUID(1225820666); public static readonly PrefabGUID TM_SwampTree_02_Stage0_Stump = new PrefabGUID(1261231686); public static readonly PrefabGUID TM_SwampTree_02_Stage1 = new PrefabGUID(1691761444); public static readonly PrefabGUID TM_SwampTree_02_Stage1_Stump = new PrefabGUID(472001499); public static readonly PrefabGUID TM_SwampTree_03_Stage0 = new PrefabGUID(1426823230); public static readonly PrefabGUID TM_SwampTree_03_Stage0_Stump = new PrefabGUID(-1954051919); public static readonly PrefabGUID TM_SwampTree_03_Stage1 = new PrefabGUID(2120448218); public static readonly PrefabGUID TM_SwampTree_03_Stage1_Stump = new PrefabGUID(-1682489779); public static readonly PrefabGUID TM_SwampTree_Sapling = new PrefabGUID(-1605588865); public static readonly PrefabGUID TM_TargetDummy_01 = new PrefabGUID(10513858); public static readonly PrefabGUID TM_TargetDummy_01_IdleInteraction = new PrefabGUID(-963995563); public static readonly PrefabGUID TM_TargetDummy_02 = new PrefabGUID(-1574989809); public static readonly PrefabGUID TM_TargetDummy_02_IdleInteraction = new PrefabGUID(962821526); public static readonly PrefabGUID TM_TavernCounter01 = new PrefabGUID(-2076496016); public static readonly PrefabGUID TM_TavernCounter02 = new PrefabGUID(-485046196); public static readonly PrefabGUID TM_Tomb_01 = new PrefabGUID(-781091625); public static readonly PrefabGUID TM_Tomb_01_Broken = new PrefabGUID(1353478230); public static readonly PrefabGUID TM_Tomb_02 = new PrefabGUID(-536867397); public static readonly PrefabGUID TM_Tomb_02_Broken = new PrefabGUID(-759905870); public static readonly PrefabGUID TM_Tomb_03 = new PrefabGUID(-1632864496); public static readonly PrefabGUID TM_Tomb_03_Broken = new PrefabGUID(2038242996); public static readonly PrefabGUID TM_Tomb_04 = new PrefabGUID(-1014470788); public static readonly PrefabGUID TM_Tomb_04_Broken = new PrefabGUID(-400370936); public static readonly PrefabGUID TM_Tomb_05 = new PrefabGUID(-1299610229); public static readonly PrefabGUID TM_Tomb_05_Broken = new PrefabGUID(-1713724503); public static readonly PrefabGUID TM_Tomb_06 = new PrefabGUID(-1957499437); public static readonly PrefabGUID TM_Tomb_06_Broken = new PrefabGUID(-1672076819); public static readonly PrefabGUID TM_Tomb_07 = new PrefabGUID(-1118323244); public static readonly PrefabGUID TM_Tomb_07_Broken = new PrefabGUID(-505856548); public static readonly PrefabGUID TM_Tomb_08 = new PrefabGUID(-2054213794); public static readonly PrefabGUID TM_Tomb_08_Broken = new PrefabGUID(347513227); public static readonly PrefabGUID TM_TombBig_01 = new PrefabGUID(-445223354); public static readonly PrefabGUID TM_TombBig_01_Broken = new PrefabGUID(1602746089); public static readonly PrefabGUID TM_TombBig_02 = new PrefabGUID(-1901034487); public static readonly PrefabGUID TM_TombBig_02_Broken = new PrefabGUID(-1051730023); public static readonly PrefabGUID TM_TombBig_03 = new PrefabGUID(1328472112); public static readonly PrefabGUID TM_TombBig_03_Broken = new PrefabGUID(1125752521); public static readonly PrefabGUID TM_TownHall_Bench01 = new PrefabGUID(-574556190); public static readonly PrefabGUID TM_TreeBridge_01_Original = new PrefabGUID(-1582355091); public static readonly PrefabGUID TM_Undead_ArenaChampion_Flag = new PrefabGUID(2138627343); public static readonly PrefabGUID TM_UnitStation_NetherGate = new PrefabGUID(-218354895); public static readonly PrefabGUID TM_UnitStation_Tomb = new PrefabGUID(1127059420); public static readonly PrefabGUID TM_UnitStation_VerminNest = new PrefabGUID(150776081); public static readonly PrefabGUID TM_Vampire_FineIronFencePole_01 = new PrefabGUID(-1573565699); public static readonly PrefabGUID TM_Vampire_IronFencePole_01 = new PrefabGUID(-696610176); public static readonly PrefabGUID TM_VampireGravestone_Big_01 = new PrefabGUID(1977669640); public static readonly PrefabGUID TM_VampireGravestone_Big_02 = new PrefabGUID(1023956620); public static readonly PrefabGUID TM_VampireGravestone_Big_03 = new PrefabGUID(136715242); public static readonly PrefabGUID TM_VampireGravestone01 = new PrefabGUID(-972340709); public static readonly PrefabGUID TM_VampireGravestone01_Broken = new PrefabGUID(1648976328); public static readonly PrefabGUID TM_VampireGravestone02 = new PrefabGUID(-1953768855); public static readonly PrefabGUID TM_VampireGravestone02_Broken = new PrefabGUID(1170850506); public static readonly PrefabGUID TM_VampireGravestone03 = new PrefabGUID(-353634974); public static readonly PrefabGUID TM_VampireGravestone04 = new PrefabGUID(2005244760); public static readonly PrefabGUID TM_VampireGravestone05 = new PrefabGUID(1969748026); public static readonly PrefabGUID TM_VampireGraveyard_Brazier_01 = new PrefabGUID(113118840); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01 = new PrefabGUID(688150044); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_Cursed = new PrefabGUID(1050968843); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_GloomRot_North = new PrefabGUID(-1325437678); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_GloomRot_South = new PrefabGUID(-171119922); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_SilverLight = new PrefabGUID(215652951); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_Snow = new PrefabGUID(-1524368461); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02 = new PrefabGUID(-305361202); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_Cursed = new PrefabGUID(-51402195); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_GloomRot_North = new PrefabGUID(-1863191105); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_GloomRot_South = new PrefabGUID(-141912084); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_SilverLight = new PrefabGUID(1814632335); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_Snow = new PrefabGUID(923176481); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01 = new PrefabGUID(1161714298); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_Cursed = new PrefabGUID(1677693906); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_GloomRot_North = new PrefabGUID(-86729640); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_GloomRot_South = new PrefabGUID(-797678555); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_SilverLight = new PrefabGUID(1568459160); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_Snow = new PrefabGUID(313131540); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02 = new PrefabGUID(-88458699); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_Cursed = new PrefabGUID(1719325097); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_GloomRot_North = new PrefabGUID(-1782443303); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_GloomRot_South = new PrefabGUID(1499195612); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_SilverLight = new PrefabGUID(145638627); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_Snow = new PrefabGUID(1743237018); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03 = new PrefabGUID(1789449182); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_Cursed = new PrefabGUID(822341680); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_GloomRot_North = new PrefabGUID(-546096808); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_GloomRot_South = new PrefabGUID(410008344); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_SilverLight = new PrefabGUID(566404921); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_Snow = new PrefabGUID(508529338); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04 = new PrefabGUID(442035317); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_Cursed = new PrefabGUID(476106276); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_GloomRot_North = new PrefabGUID(-1425080503); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_GloomRot_South = new PrefabGUID(969234858); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_SilverLight = new PrefabGUID(751496466); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_Snow = new PrefabGUID(1111662646); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01 = new PrefabGUID(-971118107); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_Cursed = new PrefabGUID(-1534250715); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_GloomRot_North = new PrefabGUID(-809884638); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_GloomRot_South = new PrefabGUID(-275672675); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_SilverLight = new PrefabGUID(-1831290552); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_Snow = new PrefabGUID(-268450677); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02 = new PrefabGUID(-99362346); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_Cursed = new PrefabGUID(-1168659743); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_GloomRot_North = new PrefabGUID(-1244058402); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_GloomRot_South = new PrefabGUID(-1228878275); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_SilverLight = new PrefabGUID(-1326834529); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_Snow = new PrefabGUID(2068216176); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01 = new PrefabGUID(-271697795); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_Cursed = new PrefabGUID(-1385430811); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_GloomRot_North = new PrefabGUID(-244925021); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_GloomRot_South = new PrefabGUID(318370210); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_SilverLight = new PrefabGUID(1736715459); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_Snow = new PrefabGUID(-234727224); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02 = new PrefabGUID(1740659623); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_Cursed = new PrefabGUID(1047633667); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_GloomRot_North = new PrefabGUID(-1307584325); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_GloomRot_South = new PrefabGUID(991173594); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_SilverLight = new PrefabGUID(446428791); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_Snow = new PrefabGUID(-1324299918); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03 = new PrefabGUID(-144081241); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_Cursed = new PrefabGUID(1354485886); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_GloomRot_North = new PrefabGUID(403471043); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_GloomRot_South = new PrefabGUID(-833755572); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_SilverLight = new PrefabGUID(-541625509); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_Snow = new PrefabGUID(-931556814); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04 = new PrefabGUID(-708112409); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_Cursed = new PrefabGUID(-387920518); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_GloomRot_North = new PrefabGUID(1821831436); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_GloomRot_South = new PrefabGUID(-77181209); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_SilverLight = new PrefabGUID(-122567072); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_Snow = new PrefabGUID(-1813039823); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05 = new PrefabGUID(-1031293675); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_Cursed = new PrefabGUID(-1662895843); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_GloomRot_North = new PrefabGUID(1173795164); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_GloomRot_South = new PrefabGUID(-2015347375); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_SilverLight = new PrefabGUID(7781803); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_Snow = new PrefabGUID(-196895143); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01 = new PrefabGUID(-975325132); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_Cursed = new PrefabGUID(-943124264); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_GloomRot_North = new PrefabGUID(1860542434); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_GloomRot_South = new PrefabGUID(1474822748); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_Silverhills = new PrefabGUID(1392068087); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_Snow = new PrefabGUID(-382859549); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02 = new PrefabGUID(666832621); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_Cursed = new PrefabGUID(209546675); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_GloomRot_North = new PrefabGUID(1785929000); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_GloomRot_South = new PrefabGUID(1735244355); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_SilverHills = new PrefabGUID(-1424307896); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_Snow = new PrefabGUID(480900297); public static readonly PrefabGUID TM_Village_Candleholder_01 = new PrefabGUID(1214053450); public static readonly PrefabGUID TM_Village_MarketBarrel01 = new PrefabGUID(-1008244526); public static readonly PrefabGUID TM_Village_MarketBarrel02 = new PrefabGUID(1573845574); public static readonly PrefabGUID TM_Village_MarketBarrel03 = new PrefabGUID(1136054115); public static readonly PrefabGUID TM_Village_MarketBarrel04 = new PrefabGUID(1794473520); public static readonly PrefabGUID TM_Village_MarketCrate01 = new PrefabGUID(-1493454990); public static readonly PrefabGUID TM_Village_MarketCrate02 = new PrefabGUID(1128046775); public static readonly PrefabGUID TM_Village_MarketCrate03 = new PrefabGUID(2092161652); public static readonly PrefabGUID TM_Vineyard_BarrelShelf_Broken01 = new PrefabGUID(1698159062); public static readonly PrefabGUID TM_Vineyard_BarrelShelf_Broken02 = new PrefabGUID(-1422893372); public static readonly PrefabGUID TM_Vineyard_BarrelShelf_Broken03 = new PrefabGUID(-502082758); public static readonly PrefabGUID TM_Vineyard_BarrelShelf01 = new PrefabGUID(1467018522); public static readonly PrefabGUID TM_Vineyard_Distillery_breakable01 = new PrefabGUID(-471989262); public static readonly PrefabGUID TM_Vineyard_Table01 = new PrefabGUID(-638508990); public static readonly PrefabGUID TM_Vineyard_Table01_Spills = new PrefabGUID(2064715950); public static readonly PrefabGUID TM_VineyardFence_Diagonal_01 = new PrefabGUID(-692065974); public static readonly PrefabGUID TM_VineyardFence_Diagonal_02 = new PrefabGUID(1889245390); public static readonly PrefabGUID TM_VineyardFence_End01 = new PrefabGUID(209504170); public static readonly PrefabGUID TM_VineyardFence01 = new PrefabGUID(1961488703); public static readonly PrefabGUID TM_VineyardFence02 = new PrefabGUID(-957773857); public static readonly PrefabGUID TM_VineyardFence03 = new PrefabGUID(576352792); public static readonly PrefabGUID TM_WarEvent_GateNode = new PrefabGUID(-906325887); public static readonly PrefabGUID TM_WarEvent_GateObject = new PrefabGUID(1840104771); public static readonly PrefabGUID TM_WarEvent_GateObject_DEBUG_ONLY_REMOVE = new PrefabGUID(-448228984); public static readonly PrefabGUID TM_WarEvent_GateObject_DestroyTrigger = new PrefabGUID(553338966); public static readonly PrefabGUID TM_WarEvent_GateObject_Lesser = new PrefabGUID(191587271); public static readonly PrefabGUID TM_WarEvent_Networked = new PrefabGUID(-1337812210); public static readonly PrefabGUID TM_WarEvent_NetworkedGateObject = new PrefabGUID(477575945); public static readonly PrefabGUID TM_WarEvent_PortalNode = new PrefabGUID(1715183701); public static readonly PrefabGUID TM_WarEvent_PortalObject = new PrefabGUID(1446914133); public static readonly PrefabGUID TM_WarEvent_PortalObject_Lesser = new PrefabGUID(1764881553); public static readonly PrefabGUID TM_Watertower_01 = new PrefabGUID(1589403087); public static readonly PrefabGUID TM_Watertower_02 = new PrefabGUID(-614145839); public static readonly PrefabGUID TM_Weaponrack_01 = new PrefabGUID(246331506); public static readonly PrefabGUID TM_Weaponrack_02 = new PrefabGUID(973389430); public static readonly PrefabGUID TM_WerewolfTree_01_Stage0 = new PrefabGUID(1595277266); public static readonly PrefabGUID TM_WerewolfTree_01_Stage0_Stump = new PrefabGUID(600960145); public static readonly PrefabGUID TM_WerewolfTree_01_Stage1 = new PrefabGUID(1577350498); public static readonly PrefabGUID TM_WerewolfTree_01_Stage1_Stump = new PrefabGUID(587749951); public static readonly PrefabGUID TM_WerewolfTree_02_Stage0 = new PrefabGUID(-1435108122); public static readonly PrefabGUID TM_WerewolfTree_02_Stage0_Stump = new PrefabGUID(1041637758); public static readonly PrefabGUID TM_WerewolfTree_02_Stage1 = new PrefabGUID(967570304); public static readonly PrefabGUID TM_WerewolfTree_02_Stage1_Stump = new PrefabGUID(-866042623); public static readonly PrefabGUID TM_WerewolfTree_03_Stage0 = new PrefabGUID(695837869); public static readonly PrefabGUID TM_WerewolfTree_03_Stage0_Stump = new PrefabGUID(-793756408); public static readonly PrefabGUID TM_WerewolfTree_03_Stage1 = new PrefabGUID(-2047939765); public static readonly PrefabGUID TM_WerewolfTree_03_Stage1_Stump = new PrefabGUID(-2029588177); public static readonly PrefabGUID TM_WerewolfTree_04_Stage0 = new PrefabGUID(-1156705805); public static readonly PrefabGUID TM_WerewolfTree_04_Stage0_Stump = new PrefabGUID(658586646); public static readonly PrefabGUID TM_WerewolfTree_04_Stage1 = new PrefabGUID(-830624556); public static readonly PrefabGUID TM_WerewolfTree_04_Stage1_Stump = new PrefabGUID(-1141717839); public static readonly PrefabGUID TM_WerewolfTree_05_Stage0 = new PrefabGUID(-1832209336); public static readonly PrefabGUID TM_WerewolfTree_05_Stage0_Stump = new PrefabGUID(-443402406); public static readonly PrefabGUID TM_WerewolfTree_05_Stage1 = new PrefabGUID(350368013); public static readonly PrefabGUID TM_WerewolfTree_05_Stage1_Stump = new PrefabGUID(-1748087901); public static readonly PrefabGUID TM_WerewolfTree_06_Stage0 = new PrefabGUID(-1454112198); public static readonly PrefabGUID TM_WerewolfTree_06_Stage0_Stump = new PrefabGUID(-1557661013); public static readonly PrefabGUID TM_WerewolfTree_06_Stage1 = new PrefabGUID(-1238477356); public static readonly PrefabGUID TM_WerewolfTree_06_Stage1_Stump = new PrefabGUID(-836906526); public static readonly PrefabGUID TM_WerewolfTree_Sapling = new PrefabGUID(-1709188084); public static readonly PrefabGUID TM_WerewolfVillage_BigCageDoor01 = new PrefabGUID(145823305); public static readonly PrefabGUID TM_WerewolfVillage_BigCageDoor02 = new PrefabGUID(2070145967); public static readonly PrefabGUID TM_Wilderness_Altar_StoneUrn_01 = new PrefabGUID(-252891120); public static readonly PrefabGUID TM_Wilderness_Altar_StoneUrn_02 = new PrefabGUID(1541975269); public static readonly PrefabGUID TM_Wilderness_Altar_StoneUrn_03 = new PrefabGUID(-82291122); public static readonly PrefabGUID TM_Wilderness_Pyre = new PrefabGUID(-961311808); public static readonly PrefabGUID TM_Wilderness_Pyre_Flag_01 = new PrefabGUID(1660501623); public static readonly PrefabGUID TM_Wilderness_Pyre_Flag_02 = new PrefabGUID(2076047132); public static readonly PrefabGUID TM_Winter_Yeti_Icicle_01 = new PrefabGUID(-629014734); public static readonly PrefabGUID TM_Witch_FrogTree_01 = new PrefabGUID(261547889); public static readonly PrefabGUID TM_Witch_SkullStake_01 = new PrefabGUID(681819350); public static readonly PrefabGUID TM_Witch_SkullStake_02 = new PrefabGUID(-835938875); public static readonly PrefabGUID TM_Witch_SkullStake_03 = new PrefabGUID(1651074756); public static readonly PrefabGUID TM_Witch_Stake_01 = new PrefabGUID(-1958653898); public static readonly PrefabGUID TM_Witch_Stake_02 = new PrefabGUID(-1699890952); public static readonly PrefabGUID TM_Witch_Stake_03 = new PrefabGUID(181892327); public static readonly PrefabGUID TM_Witch_Stake_04 = new PrefabGUID(1957410863); public static readonly PrefabGUID TM_Witch_Stake_04_Candles = new PrefabGUID(-2290697); public static readonly PrefabGUID TM_Witch_Stake_05 = new PrefabGUID(-225108780); public static readonly PrefabGUID TM_Witch_Stake_05_Candles = new PrefabGUID(355337193); public static readonly PrefabGUID TM_Witch_Stake_06 = new PrefabGUID(-1198077291); public static readonly PrefabGUID TM_Witch_Stake_07 = new PrefabGUID(718309611); public static readonly PrefabGUID TM_Witch_Stake_08 = new PrefabGUID(344024497); public static readonly PrefabGUID TM_Witch_Stake_09 = new PrefabGUID(-1850900603); public static readonly PrefabGUID TM_Witch_Stake_10 = new PrefabGUID(1360241760); public static readonly PrefabGUID TM_Witch_Stake_11 = new PrefabGUID(-61131565); public static readonly PrefabGUID TM_Witch_Stake_12 = new PrefabGUID(580613856); public static readonly PrefabGUID TM_Witch_Stake_13 = new PrefabGUID(994612641); public static readonly PrefabGUID TM_Witch_Stump_01 = new PrefabGUID(821955981); public static readonly PrefabGUID TM_Witch_Stump_02 = new PrefabGUID(-200712077); public static readonly PrefabGUID TM_WoodenBarrel_01 = new PrefabGUID(234665441); public static readonly PrefabGUID TM_WoodenBarrel_02 = new PrefabGUID(165108756); public static readonly PrefabGUID TM_WoodenBarrel_03 = new PrefabGUID(-68170349); public static readonly PrefabGUID TM_WoodenBarrel_Cluster_01 = new PrefabGUID(-1694272439); public static readonly PrefabGUID TM_WoodenBarrel_Cluster_02 = new PrefabGUID(1274815388); public static readonly PrefabGUID TM_WoodenBarrel_Snow_01 = new PrefabGUID(1527997584); public static readonly PrefabGUID TM_WoodenBarrel_Snow_02 = new PrefabGUID(-1659500181); public static readonly PrefabGUID TM_WoodenBarrel_Snow_03 = new PrefabGUID(1576981954); public static readonly PrefabGUID TM_WoodenBarrelOak_01 = new PrefabGUID(-111300217); public static readonly PrefabGUID TM_WoodenBarrelOak_02 = new PrefabGUID(807153996); public static readonly PrefabGUID TM_WoodenBarrelOak_03 = new PrefabGUID(-47158938); public static readonly PrefabGUID TM_WoodenBeerBarrel_01 = new PrefabGUID(-1616824780); public static readonly PrefabGUID TM_WoodenBeerBarrel_02 = new PrefabGUID(-2143442994); public static readonly PrefabGUID TM_WoodenBeerBarrel_Snow_01 = new PrefabGUID(895457857); public static readonly PrefabGUID TM_WoodenBeerBarrel_Snow_02 = new PrefabGUID(-846222448); public static readonly PrefabGUID TM_WoodenCageDoor_01 = new PrefabGUID(1101392773); public static readonly PrefabGUID TM_WoodenCageDoor_02 = new PrefabGUID(-1272510512); public static readonly PrefabGUID TM_WoodenCrate_01 = new PrefabGUID(155188369); public static readonly PrefabGUID TM_WoodenCrate_02 = new PrefabGUID(395863147); public static readonly PrefabGUID TM_WoodenCrate_Cluster_01 = new PrefabGUID(1656950553); public static readonly PrefabGUID TM_WoodenCrate_Cluster_02 = new PrefabGUID(-1676958741); public static readonly PrefabGUID TM_WoodenCrate_Snow_01 = new PrefabGUID(-332218743); public static readonly PrefabGUID TM_WoodenCrate_Snow_02 = new PrefabGUID(-1094322381); public static readonly PrefabGUID TM_WoodenCrateLarge_01 = new PrefabGUID(414294709); public static readonly PrefabGUID TM_WoodenCrateLarge_Snow_01 = new PrefabGUID(-2040220910); public static readonly PrefabGUID TM_WoodenCrateOak_01 = new PrefabGUID(1771207980); public static readonly PrefabGUID TM_WoodenCrateOak_02 = new PrefabGUID(-1758451165); public static readonly PrefabGUID TM_WoodenCrateOakLarge_01 = new PrefabGUID(-420826118); public static readonly PrefabGUID TM_WoodenCrateOakLarge_02 = new PrefabGUID(-519152820); public static readonly PrefabGUID TM_WoodenPlanksLow_01_Fence = new PrefabGUID(-633267783); public static readonly PrefabGUID TM_WoodenPlanksLow_01_Fence_Broken = new PrefabGUID(460277224); public static readonly PrefabGUID TM_WoodenPlanksLow_02_Fence = new PrefabGUID(-1095050852); public static readonly PrefabGUID TM_WoodenPlanksLow_02_Fence_Broken = new PrefabGUID(1265003802); public static readonly PrefabGUID TM_WoodenPlanksLow_03_Fence = new PrefabGUID(88569642); public static readonly PrefabGUID TM_WoodenPlanksLow_03_Fence_Broken = new PrefabGUID(1773774761); public static readonly PrefabGUID TM_WoodenPlanksLow_04_Fence = new PrefabGUID(-1840483652); public static readonly PrefabGUID TM_WoodenPlanksLow_04_Fence_Broken = new PrefabGUID(2049766710); public static readonly PrefabGUID TM_WoodenPlanksLow_05_Fence = new PrefabGUID(1400723205); public static readonly PrefabGUID TM_WoodenPlanksLow_05_Fence_Broken = new PrefabGUID(-1380781899); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_01_Fence = new PrefabGUID(1277369491); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_01_Fence_Broken = new PrefabGUID(-327559588); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_02_Fence = new PrefabGUID(1308292916); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_02_Fence_Broken = new PrefabGUID(508580333); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_03_Fence = new PrefabGUID(-606945046); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_03_Fence_Broken = new PrefabGUID(138725142); public static readonly PrefabGUID TM_WoodenPlanksLow_Gate_01_Fence = new PrefabGUID(-1254539746); public static readonly PrefabGUID TM_WoodenPlanksLow_Gate_01_Fence_Broken = new PrefabGUID(426021989); public static readonly PrefabGUID TM_WoodenPlanksLow_GateEntrance_01_Fence = new PrefabGUID(257211343); public static readonly PrefabGUID TM_WoodenPlanksLow_GateEntrance_01_Fence_Broken = new PrefabGUID(222462295); public static readonly PrefabGUID TM_WoodenPlanksTall_01_Fence = new PrefabGUID(2069851350); public static readonly PrefabGUID TM_WoodenPlanksTall_01_Fence_Broken = new PrefabGUID(1033357033); public static readonly PrefabGUID TM_WoodenPlanksTall_02_Fence = new PrefabGUID(1447305832); public static readonly PrefabGUID TM_WoodenPlanksTall_02_Fence_Broken = new PrefabGUID(-1984153716); public static readonly PrefabGUID TM_WoodenPlanksTall_03_Fence = new PrefabGUID(52032733); public static readonly PrefabGUID TM_WoodenPlanksTall_03_Fence_Broken = new PrefabGUID(-567094082); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_01_Fence = new PrefabGUID(-674489498); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_01_Fence_Broken = new PrefabGUID(-1150002999); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_02_Fence = new PrefabGUID(506122059); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_02_Fence_Broken = new PrefabGUID(1606681564); public static readonly PrefabGUID TM_Workstation_Waypoint_Castle = new PrefabGUID(-1348294483); public static readonly PrefabGUID TM_Workstation_Waypoint_Castle_StrongbladeDLC = new PrefabGUID(-1237621022); public static readonly PrefabGUID TM_Workstation_Waypoint_World = new PrefabGUID(2107199037); public static readonly PrefabGUID TM_Workstation_Waypoint_World_Cursed = new PrefabGUID(1552296924); public static readonly PrefabGUID TM_Workstation_Waypoint_World_GloomRot_North = new PrefabGUID(1052636561); public static readonly PrefabGUID TM_Workstation_Waypoint_World_GloomRot_South = new PrefabGUID(-540245540); public static readonly PrefabGUID TM_Workstation_Waypoint_World_SilverHills = new PrefabGUID(1409226104); public static readonly PrefabGUID TM_Workstation_Waypoint_World_Snow = new PrefabGUID(165077432); public static readonly PrefabGUID TM_Workstation_Waypoint_World_Strongblade = new PrefabGUID(-512512749); public static readonly PrefabGUID TM_Workstation_Waypoint_World_UnlockedFromStart = new PrefabGUID(-1340667394); public static readonly PrefabGUID TM_World_Door_SlaveMines_Gate_Standard = new PrefabGUID(-601116315); public static readonly PrefabGUID TM_WorldChest_Epic_01_Empty = new PrefabGUID(-321007732); public static readonly PrefabGUID TM_WorldChest_Epic_01_Full = new PrefabGUID(-1657744516); public static readonly PrefabGUID TM_WorldChest_Iron_01_Empty = new PrefabGUID(-273515249); public static readonly PrefabGUID TM_WorldChest_Iron_01_Full = new PrefabGUID(257686919); public static readonly PrefabGUID TM_WorldChest_Simple_01_Empty = new PrefabGUID(-375592800); public static readonly PrefabGUID TM_WorldChest_Simple_01_Full = new PrefabGUID(240964190); public static readonly PrefabGUID TM_WorldChest_Simple_GloomRot_01_Empty = new PrefabGUID(-241680783); public static readonly PrefabGUID TM_WorldChest_Simple_GloomRot_01_Full = new PrefabGUID(-1576310588); public static readonly PrefabGUID TM_WorldChest_Simple_SludgePools_01_Empty = new PrefabGUID(866003444); public static readonly PrefabGUID TM_WorldChest_Simple_SludgePools_01_Full = new PrefabGUID(-1203166929); public static readonly PrefabGUID TopdownCamera = new PrefabGUID(1544266823); public static readonly PrefabGUID TorchesBuildMenuGroup = new PrefabGUID(1055694726); public static readonly PrefabGUID TransmogSwatch = new PrefabGUID(1816647976); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_Bone01 = new PrefabGUID(-277575299); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_Bone02 = new PrefabGUID(1464602535); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T03 = new PrefabGUID(1164629865); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Brute = new PrefabGUID(-1311909353); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Rogue = new PrefabGUID(-219304453); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Scholar = new PrefabGUID(-538426746); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Warrior = new PrefabGUID(251014143); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T05 = new PrefabGUID(1024201235); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Brute = new PrefabGUID(-603808877); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Rogue = new PrefabGUID(-1106762164); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Scholar = new PrefabGUID(643915900); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Warrior = new PrefabGUID(-603080596); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T07 = new PrefabGUID(272308078); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Brute = new PrefabGUID(1380371899); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Rogue = new PrefabGUID(-1345495885); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Scholar = new PrefabGUID(-1312713409); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Warrior = new PrefabGUID(-555162650); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula = new PrefabGUID(57403359); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Brute = new PrefabGUID(1079066485); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Rogue = new PrefabGUID(1171807232); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Scholar = new PrefabGUID(1814580727); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Warrior = new PrefabGUID(605011768); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T0X_BallGown = new PrefabGUID(1068408746); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T0X_BlackfangSultan = new PrefabGUID(316093213); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T0X_Suit01 = new PrefabGUID(-872343593); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_Gold = new PrefabGUID(1062094538); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_Mixed = new PrefabGUID(-213084728); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_Silver = new PrefabGUID(1557507603); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_SpellSchools = new PrefabGUID(-2030670411); public static readonly PrefabGUID TransmogSwatch_Default_Placeholder = new PrefabGUID(863658021); public static readonly PrefabGUID TransmogSwatch_Monochrome = new PrefabGUID(-1566877804); public static readonly PrefabGUID TransmogSwatch_Placeholder = new PrefabGUID(-1059671382); public static readonly PrefabGUID TreasuryFloorBuildMenuGroup = new PrefabGUID(1788353281); public static readonly PrefabGUID Trees_Apple01_Dynamics = new PrefabGUID(1977652343); public static readonly PrefabGUID Trees_Apple01_Small_Dynamics = new PrefabGUID(-2025750620); public static readonly PrefabGUID Trees_Apple02_Dynamics = new PrefabGUID(905031393); public static readonly PrefabGUID Trees_Apple02_Small_Dynamics = new PrefabGUID(650658732); public static readonly PrefabGUID Trees_Apple03_Dynamics = new PrefabGUID(1615024389); public static readonly PrefabGUID Trees_Apple03_Small_Dynamics = new PrefabGUID(58491784); public static readonly PrefabGUID Trees_AppleCursed01_Dynamics = new PrefabGUID(-240919247); public static readonly PrefabGUID Trees_AppleCursed01_Small_Dynamics = new PrefabGUID(1664102699); public static readonly PrefabGUID Trees_AppleCursed02_Dynamics = new PrefabGUID(1005258416); public static readonly PrefabGUID Trees_AppleCursed02_Small_Dynamics = new PrefabGUID(-1956159861); public static readonly PrefabGUID Trees_AppleCursed03_Dynamics = new PrefabGUID(-1128377428); public static readonly PrefabGUID Trees_AppleCursed03_Small_Dynamics = new PrefabGUID(-96907934); public static readonly PrefabGUID Trees_Aspen01_Dynamics = new PrefabGUID(-1863197148); public static readonly PrefabGUID Trees_Aspen01_Dynamics_Small = new PrefabGUID(418896867); public static readonly PrefabGUID Trees_Aspen01_Dynamics_Smaller = new PrefabGUID(-1291595260); public static readonly PrefabGUID Trees_Aspen02_Dynamics = new PrefabGUID(-935523967); public static readonly PrefabGUID Trees_Aspen02_Dynamics_Small = new PrefabGUID(1818087098); public static readonly PrefabGUID Trees_Aspen03_Dynamics = new PrefabGUID(-1241579503); public static readonly PrefabGUID Trees_Aspen03_Dynamics_Small = new PrefabGUID(-1983891190); public static readonly PrefabGUID Trees_AspenAutumn01_Dynamics = new PrefabGUID(1543147177); public static readonly PrefabGUID Trees_AspenAutumn01_Dynamics_Small = new PrefabGUID(-304556772); public static readonly PrefabGUID Trees_AspenAutumn02_Dynamics = new PrefabGUID(351397692); public static readonly PrefabGUID Trees_AspenAutumn02_Dynamics_Small = new PrefabGUID(-1479573149); public static readonly PrefabGUID Trees_AspenAutumn03_Dynamics = new PrefabGUID(-772603021); public static readonly PrefabGUID Trees_AspenAutumn03_Dynamics_Small = new PrefabGUID(1396888363); public static readonly PrefabGUID Trees_AspenAutumn04_Dynamics = new PrefabGUID(909159597); public static readonly PrefabGUID Trees_AspenAutumn04_Dynamics_Small = new PrefabGUID(-628007493); public static readonly PrefabGUID Trees_AspenAutumn04_Dynamics_Smaller = new PrefabGUID(-230392776); public static readonly PrefabGUID Trees_AspenAutumn05_Dynamics = new PrefabGUID(-2044753767); public static readonly PrefabGUID Trees_AspenAutumn05_Dynamics_Small = new PrefabGUID(-1802836899); public static readonly PrefabGUID Trees_AspenAutumn06_Dynamics = new PrefabGUID(-1721823933); public static readonly PrefabGUID Trees_AspenAutumn06_Dynamics_Small = new PrefabGUID(-124466565); public static readonly PrefabGUID Trees_Beech01_Dynamics = new PrefabGUID(-670954970); public static readonly PrefabGUID Trees_Beech01_Dynamics_Small = new PrefabGUID(411270079); public static readonly PrefabGUID Trees_Beech02_Dynamics = new PrefabGUID(40774993); public static readonly PrefabGUID Trees_Beech02_Dynamics_Small = new PrefabGUID(-1857168409); public static readonly PrefabGUID Trees_Beech03_Dynamics = new PrefabGUID(1384314767); public static readonly PrefabGUID Trees_Beech03_Dynamics_Small = new PrefabGUID(-1605778157); public static readonly PrefabGUID Trees_Birch_Dynamics = new PrefabGUID(-565197712); public static readonly PrefabGUID Trees_Birch01_Dynamics = new PrefabGUID(-413241804); public static readonly PrefabGUID Trees_Birch01_Small_Dynamics = new PrefabGUID(2072093275); public static readonly PrefabGUID Trees_Birch02_Dynamics = new PrefabGUID(2145489175); public static readonly PrefabGUID Trees_Birch02_Small_Dynamics = new PrefabGUID(1243946873); public static readonly PrefabGUID Trees_Birch03_Dynamics = new PrefabGUID(-1016330866); public static readonly PrefabGUID Trees_Birch03_Small_Dynamics = new PrefabGUID(-436007722); public static readonly PrefabGUID Trees_Birch04_Dynamics = new PrefabGUID(-792025823); public static readonly PrefabGUID Trees_Birch04_Small_Dynamics = new PrefabGUID(-157451273); public static readonly PrefabGUID Trees_Birch04_Smaller_Dynamics = new PrefabGUID(-136177113); public static readonly PrefabGUID Trees_BirchAutumn01_Dynamics = new PrefabGUID(1858616844); public static readonly PrefabGUID Trees_BirchAutumn01_Small_Dynamics = new PrefabGUID(1979704820); public static readonly PrefabGUID Trees_BirchAutumn02_Dynamics = new PrefabGUID(-1725296100); public static readonly PrefabGUID Trees_BirchAutumn02_Small_Dynamics = new PrefabGUID(1625742036); public static readonly PrefabGUID Trees_BirchAutumn03_Dynamics = new PrefabGUID(-2102202009); public static readonly PrefabGUID Trees_BirchAutumn03_Small_Dynamics = new PrefabGUID(-1148810198); public static readonly PrefabGUID Trees_BirchAutumn04_Dynamics = new PrefabGUID(-975891108); public static readonly PrefabGUID Trees_BirchAutumn04_Small_Dynamics = new PrefabGUID(408561308); public static readonly PrefabGUID Trees_BirchAutumn05_Dynamics = new PrefabGUID(53870181); public static readonly PrefabGUID Trees_BirchAutumn05_Small_Dynamics = new PrefabGUID(541607367); public static readonly PrefabGUID Trees_BirchAutumn06_Dynamics = new PrefabGUID(-512367377); public static readonly PrefabGUID Trees_BirchAutumn06_Small_Dynamics = new PrefabGUID(655232988); public static readonly PrefabGUID Trees_BirchAutumn07_Dynamics = new PrefabGUID(-1408937899); public static readonly PrefabGUID Trees_BirchAutumn07_Small_Dynamics = new PrefabGUID(-1985960858); public static readonly PrefabGUID Trees_BirchAutumn08_Dynamics = new PrefabGUID(990099000); public static readonly PrefabGUID Trees_BirchAutumn08_Small_Dynamics = new PrefabGUID(2042984805); public static readonly PrefabGUID Trees_BirchAutumn09_Dynamics = new PrefabGUID(379117916); public static readonly PrefabGUID Trees_BirchAutumn09_Small_Dynamics = new PrefabGUID(-1607974076); public static readonly PrefabGUID Trees_BirchAutumn10_Dynamics = new PrefabGUID(-1173331158); public static readonly PrefabGUID Trees_BirchAutumn10_Small_Dynamics = new PrefabGUID(-276728233); public static readonly PrefabGUID Trees_BirchAutumn11_Dynamics = new PrefabGUID(1531157456); public static readonly PrefabGUID Trees_BirchAutumn11_Small_Dynamics = new PrefabGUID(1393822318); public static readonly PrefabGUID Trees_BirchAutumn12_Dynamics = new PrefabGUID(1622407952); public static readonly PrefabGUID Trees_BirchAutumn12_Small_Dynamics = new PrefabGUID(-34155188); public static readonly PrefabGUID Trees_BirchAutumn12_Smaller_Dynamics = new PrefabGUID(1974361501); public static readonly PrefabGUID Trees_BirchRed01_Dynamics = new PrefabGUID(-2005733152); public static readonly PrefabGUID Trees_BirchRed01_Small_Dynamics = new PrefabGUID(-268338792); public static readonly PrefabGUID Trees_BirchRed02_Dynamics = new PrefabGUID(-1242510425); public static readonly PrefabGUID Trees_BirchRed02_Small_Dynamics = new PrefabGUID(-315631001); public static readonly PrefabGUID Trees_BirchRed03_Dynamics = new PrefabGUID(-287391515); public static readonly PrefabGUID Trees_BirchRed03_Small_Dynamics = new PrefabGUID(-1808274858); public static readonly PrefabGUID Trees_BirchRed04_Dynamics = new PrefabGUID(-1500676703); public static readonly PrefabGUID Trees_BirchRed04_Small_Dynamics = new PrefabGUID(-554746562); public static readonly PrefabGUID Trees_BlightbringerTree_01_Dynamics = new PrefabGUID(2093549203); public static readonly PrefabGUID Trees_BlightbringerTree_01_Dynamics_Small = new PrefabGUID(-1524351851); public static readonly PrefabGUID Trees_BlightbringerTree_02_Dynamics = new PrefabGUID(1528044301); public static readonly PrefabGUID Trees_BlightbringerTree_02_Dynamics_Small = new PrefabGUID(-766044200); public static readonly PrefabGUID Trees_BlightbringerTree_07_Dynamics = new PrefabGUID(-295895615); public static readonly PrefabGUID Trees_BlightbringerTree_07_Dynamics_Small = new PrefabGUID(-1681123148); public static readonly PrefabGUID Trees_Cherry01_Dynamics = new PrefabGUID(169484349); public static readonly PrefabGUID Trees_Cherry01_Small_Dynamics = new PrefabGUID(-1117106789); public static readonly PrefabGUID Trees_Cherry01_White_Dynamics = new PrefabGUID(-1066739037); public static readonly PrefabGUID Trees_Cherry01_White_Small_Dynamics = new PrefabGUID(1996084013); public static readonly PrefabGUID Trees_Cherry02_Dynamics = new PrefabGUID(-1237108810); public static readonly PrefabGUID Trees_Cherry02_Small_Dynamics = new PrefabGUID(1092953816); public static readonly PrefabGUID Trees_Cherry02_White_Dynamics = new PrefabGUID(1543070292); public static readonly PrefabGUID Trees_Cherry02_White_Small_Dynamics = new PrefabGUID(475350749); public static readonly PrefabGUID Trees_Cursed01_Dynamics = new PrefabGUID(-978500164); public static readonly PrefabGUID Trees_Cursed01_Small_Dynamics = new PrefabGUID(1987011278); public static readonly PrefabGUID Trees_Cursed04_Dynamics = new PrefabGUID(-881195700); public static readonly PrefabGUID Trees_Cursed04_Small_Dynamics = new PrefabGUID(1803011233); public static readonly PrefabGUID Trees_CursedRotten01_Dynamics = new PrefabGUID(-1238971582); public static readonly PrefabGUID Trees_CursedRotten01_Small_Dynamics = new PrefabGUID(-1611067224); public static readonly PrefabGUID Trees_CursedRotten02_Dynamics = new PrefabGUID(-937280065); public static readonly PrefabGUID Trees_CursedRotten02_Small_Dynamics = new PrefabGUID(1758352540); public static readonly PrefabGUID Trees_CursedRottenStub01_Dynamics = new PrefabGUID(-613409527); public static readonly PrefabGUID Trees_CursedRottenStub01_Small_Dynamics = new PrefabGUID(-1226607594); public static readonly PrefabGUID Trees_CursedRottenStub02_Dynamics = new PrefabGUID(-274588466); public static readonly PrefabGUID Trees_CursedRottenStub02_Small_Dynamics = new PrefabGUID(-86235866); public static readonly PrefabGUID Trees_CursedRottenStub03_Dynamics = new PrefabGUID(-116739102); public static readonly PrefabGUID Trees_CursedRottenStub03_Small_Dynamics = new PrefabGUID(-1290508375); public static readonly PrefabGUID Trees_CursedRottenStub04_Dynamics = new PrefabGUID(1769528902); public static readonly PrefabGUID Trees_CursedRottenStub04_Small_Dynamics = new PrefabGUID(195308734); public static readonly PrefabGUID Trees_CursedRottenStub05_Dynamics = new PrefabGUID(1227441690); public static readonly PrefabGUID Trees_CursedRottenStub05_Small_Dynamics = new PrefabGUID(-510043575); public static readonly PrefabGUID Trees_Cypress01_Dynamics = new PrefabGUID(1630015383); public static readonly PrefabGUID Trees_Cypress01_DynamicsAutum = new PrefabGUID(-918842775); public static readonly PrefabGUID Trees_Cypress01_Small_Dynamics = new PrefabGUID(282531850); public static readonly PrefabGUID Trees_Cypress01_Small_DynamicsAutum = new PrefabGUID(-1369573099); public static readonly PrefabGUID Trees_Cypress02_Dynamics = new PrefabGUID(634556557); public static readonly PrefabGUID Trees_Cypress02_DynamicsAutum = new PrefabGUID(-345556695); public static readonly PrefabGUID Trees_Cypress02_Small_Dynamics = new PrefabGUID(-2040590240); public static readonly PrefabGUID Trees_Cypress02_Small_DynamicsAutum = new PrefabGUID(1095232674); public static readonly PrefabGUID Trees_Cypress03_Dynamics = new PrefabGUID(-1169383345); public static readonly PrefabGUID Trees_Cypress03_DynamicsAutum = new PrefabGUID(1880987809); public static readonly PrefabGUID Trees_Cypress03_Small_Dynamics = new PrefabGUID(-1422571093); public static readonly PrefabGUID Trees_Cypress03_Small_DynamicsAutum = new PrefabGUID(-3846017); public static readonly PrefabGUID Trees_DeadSpooky01_Dynamics = new PrefabGUID(-772868385); public static readonly PrefabGUID Trees_DeadSpooky01_Dynamics_Small = new PrefabGUID(2090075869); public static readonly PrefabGUID Trees_DeadSpooky02_Dynamics = new PrefabGUID(-1948368020); public static readonly PrefabGUID Trees_DeadSpooky02_Dynamics_Small = new PrefabGUID(-1478700435); public static readonly PrefabGUID Trees_DeadSpooky03_Dynamics = new PrefabGUID(-19093121); public static readonly PrefabGUID Trees_DeadSpooky03_Dynamics_Small = new PrefabGUID(-1762289791); public static readonly PrefabGUID Trees_DeadSpooky04_Dynamics = new PrefabGUID(2068297674); public static readonly PrefabGUID Trees_DeadSpooky04_Dynamics_Small = new PrefabGUID(-875600159); public static readonly PrefabGUID Trees_DeadStump01_CursedForest_Dynamics = new PrefabGUID(380019009); public static readonly PrefabGUID Trees_DeadStump01_CursedForest_Dynamics_Small = new PrefabGUID(709280126); public static readonly PrefabGUID Trees_DeadStump01_Dynamics = new PrefabGUID(-938583310); public static readonly PrefabGUID Trees_DeadStump01_Dynamics_Small = new PrefabGUID(1294554295); public static readonly PrefabGUID Trees_DeadStump02_CursedForest_Dynamics = new PrefabGUID(514719088); public static readonly PrefabGUID Trees_DeadStump02_CursedForest_Dynamics_Small = new PrefabGUID(1797622048); public static readonly PrefabGUID Trees_DeadStump02_Dynamics = new PrefabGUID(-197526629); public static readonly PrefabGUID Trees_DeadStump02_Dynamics_Small = new PrefabGUID(-216421858); public static readonly PrefabGUID Trees_DeadStump03_CursedForest_Dynamics = new PrefabGUID(1318620834); public static readonly PrefabGUID Trees_DeadStump03_CursedForest_Dynamics_Small = new PrefabGUID(-282961515); public static readonly PrefabGUID Trees_DeadStump03_Dynamics = new PrefabGUID(-928444794); public static readonly PrefabGUID Trees_DeadStump03_Dynamics_Small = new PrefabGUID(1417631755); public static readonly PrefabGUID Trees_DeadTree_Dynamics = new PrefabGUID(228917101); public static readonly PrefabGUID Trees_DryWood01_Dynamics = new PrefabGUID(-473752727); public static readonly PrefabGUID Trees_DryWood02_Dynamics = new PrefabGUID(860875346); public static readonly PrefabGUID Trees_DryWood03_Dynamics = new PrefabGUID(-2066746254); public static readonly PrefabGUID Trees_Gloomrot_Stub_01_Dynamics = new PrefabGUID(-767274099); public static readonly PrefabGUID Trees_Gloomrot_Stub_01_Small_Dynamics = new PrefabGUID(-968165825); public static readonly PrefabGUID Trees_Gloomrot_Stub_02_Dynamics = new PrefabGUID(-309347675); public static readonly PrefabGUID Trees_Gloomrot_Stub_02_Small_Dynamics = new PrefabGUID(-1719740320); public static readonly PrefabGUID Trees_Gloomrot01_Dynamics = new PrefabGUID(-1463522503); public static readonly PrefabGUID Trees_Gloomrot01_Small_Dynamics = new PrefabGUID(1056400299); public static readonly PrefabGUID Trees_Gloomrot02_Dynamics = new PrefabGUID(-1602145451); public static readonly PrefabGUID Trees_Gloomrot02_Small_Dynamics = new PrefabGUID(1701833740); public static readonly PrefabGUID Trees_Gloomrot03_Dynamics = new PrefabGUID(-504388139); public static readonly PrefabGUID Trees_Gloomrot03_Small_Dynamics = new PrefabGUID(-1574729202); public static readonly PrefabGUID Trees_Gloomrot04_Dynamics = new PrefabGUID(-1063800155); public static readonly PrefabGUID Trees_Gloomrot04_Small_Dynamics = new PrefabGUID(-12946684); public static readonly PrefabGUID Trees_Gloomrot05_Dynamics = new PrefabGUID(-838342484); public static readonly PrefabGUID Trees_Gloomrot05_Small_Dynamics = new PrefabGUID(1245495885); public static readonly PrefabGUID Trees_Gloomrot06_Dynamics = new PrefabGUID(824574309); public static readonly PrefabGUID Trees_Gloomrot06_Small_Dynamics = new PrefabGUID(123822470); public static readonly PrefabGUID Trees_Gloomrot07_Dynamics = new PrefabGUID(1098015542); public static readonly PrefabGUID Trees_Gloomrot07_Small_Dynamics = new PrefabGUID(54416506); public static readonly PrefabGUID Trees_Gloomrot08_Dynamics = new PrefabGUID(-1695932190); public static readonly PrefabGUID Trees_Gloomrot08_Small_Dynamics = new PrefabGUID(-700834638); public static readonly PrefabGUID Trees_GloomrotHills01_Dynamics = new PrefabGUID(-58209013); public static readonly PrefabGUID Trees_GloomrotHills01_Small_Dynamics = new PrefabGUID(1893885001); public static readonly PrefabGUID Trees_GloomrotHills02_Dynamics = new PrefabGUID(-1693147041); public static readonly PrefabGUID Trees_GloomrotHills02_Small_Dynamics = new PrefabGUID(216003376); public static readonly PrefabGUID Trees_GloomrotHills03_Dynamics = new PrefabGUID(1255352907); public static readonly PrefabGUID Trees_GloomrotHills03_Small_Dynamics = new PrefabGUID(1974122259); public static readonly PrefabGUID Trees_GloomrotHills04_Dynamics = new PrefabGUID(-252937560); public static readonly PrefabGUID Trees_GloomrotHills04_Small_Dynamics = new PrefabGUID(-1520124338); public static readonly PrefabGUID Trees_GloomrotHills05_Dynamics = new PrefabGUID(-961400326); public static readonly PrefabGUID Trees_GloomrotHills05_Small_Dynamics = new PrefabGUID(959083640); public static readonly PrefabGUID Trees_GloomrotHills06_Dynamics = new PrefabGUID(-1848098411); public static readonly PrefabGUID Trees_GloomrotHills06_Small_Dynamics = new PrefabGUID(1569665737); public static readonly PrefabGUID Trees_GloomrotHills07_Dynamics = new PrefabGUID(-2107340608); public static readonly PrefabGUID Trees_GloomrotHills07_Small_Dynamics = new PrefabGUID(-1641647358); public static readonly PrefabGUID Trees_GloomrotHillsDead01_Dynamics = new PrefabGUID(1921250845); public static readonly PrefabGUID Trees_GloomrotHillsDead01_Small_Dynamics = new PrefabGUID(-1369207216); public static readonly PrefabGUID Trees_GloomrotHillsDead02_Dynamics = new PrefabGUID(2145971533); public static readonly PrefabGUID Trees_GloomrotHillsDead02_Small_Dynamics = new PrefabGUID(-1983825125); public static readonly PrefabGUID Trees_GloomrotHillsDead03_Dynamics = new PrefabGUID(-430729720); public static readonly PrefabGUID Trees_GloomrotHillsDead03_Small_Dynamics = new PrefabGUID(-470154503); public static readonly PrefabGUID Trees_GloomrotHillsDead04_Dynamics = new PrefabGUID(630908071); public static readonly PrefabGUID Trees_GloomrotHillsDead04_Small_Dynamics = new PrefabGUID(-1316426031); public static readonly PrefabGUID Trees_GloomrotHillsDead05_Dynamics = new PrefabGUID(1567239903); public static readonly PrefabGUID Trees_GloomrotHillsDead05_Small_Dynamics = new PrefabGUID(-1789082044); public static readonly PrefabGUID Trees_LargeMaple01_Dynamics = new PrefabGUID(870547122); public static readonly PrefabGUID Trees_LargeMaple02_Dynamics = new PrefabGUID(-1325381865); public static readonly PrefabGUID Trees_LargeOakAutumn01_Dynamics = new PrefabGUID(-431668272); public static readonly PrefabGUID Trees_LargeOakAutumn02_Dynamics = new PrefabGUID(558891394); public static readonly PrefabGUID Trees_LargeOakAutumn03_Dynamics = new PrefabGUID(731160268); public static readonly PrefabGUID Trees_LargeOakAutumn04_Dynamics = new PrefabGUID(940099523); public static readonly PrefabGUID Trees_LargePine_Old01_Dynamics = new PrefabGUID(-1830887461); public static readonly PrefabGUID Trees_LargePine_Old01_Gloomrot_Dynamics = new PrefabGUID(129715801); public static readonly PrefabGUID Trees_LargePine_Old01_Gloomrot_Small_Dynamics = new PrefabGUID(-801827393); public static readonly PrefabGUID Trees_LargePine_Old01_GloomrotHills_Dynamics = new PrefabGUID(950221242); public static readonly PrefabGUID Trees_LargePine_Old01_GloomrotHills_Small_Dynamics = new PrefabGUID(1363328752); public static readonly PrefabGUID Trees_LargePine_Old01_Small_Dynamics = new PrefabGUID(825036760); public static readonly PrefabGUID Trees_LargePine_Old02_Dynamics = new PrefabGUID(1931675064); public static readonly PrefabGUID Trees_LargePine_Old02_Gloomrot_Dynamics = new PrefabGUID(-98289656); public static readonly PrefabGUID Trees_LargePine_Old02_Gloomrot_Small_Dynamics = new PrefabGUID(-529872904); public static readonly PrefabGUID Trees_LargePine_Old02_GloomrotHills_Dynamics = new PrefabGUID(-358533614); public static readonly PrefabGUID Trees_LargePine_Old02_GloomrotHills_Small_Dynamics = new PrefabGUID(266169013); public static readonly PrefabGUID Trees_LargePine_Old02_Small_Dynamics = new PrefabGUID(-1991031770); public static readonly PrefabGUID Trees_LargePine_Old03_Dynamics = new PrefabGUID(-570546304); public static readonly PrefabGUID Trees_LargePine_Old03_Gloomrot_Dynamics = new PrefabGUID(-1760913376); public static readonly PrefabGUID Trees_LargePine_Old03_Gloomrot_Small_Dynamics = new PrefabGUID(647486836); public static readonly PrefabGUID Trees_LargePine_Old03_GloomrotHills_Dynamics = new PrefabGUID(-1672412202); public static readonly PrefabGUID Trees_LargePine_Old03_GloomrotHills_Small_Dynamics = new PrefabGUID(-1764338992); public static readonly PrefabGUID Trees_LargePine_Old03_Small_Dynamics = new PrefabGUID(-600880015); public static readonly PrefabGUID Trees_LargePine_Old04_GloomrotHills_Dynamics = new PrefabGUID(2000172409); public static readonly PrefabGUID Trees_LargePine_Old04_GloomrotHills_Small_Dynamics = new PrefabGUID(-8352804); public static readonly PrefabGUID Trees_LargePine_Snow01_Dynamics = new PrefabGUID(-1820062966); public static readonly PrefabGUID Trees_LargePine_Snow01_Small_Dynamics = new PrefabGUID(-1782664331); public static readonly PrefabGUID Trees_LargePine_Snow02_Dynamics = new PrefabGUID(-644402262); public static readonly PrefabGUID Trees_LargePine_Snow02_Small_Dynamics = new PrefabGUID(-1703279788); public static readonly PrefabGUID Trees_LargePine_Snow03_Dynamics = new PrefabGUID(-857016940); public static readonly PrefabGUID Trees_LargePine_Snow03_Small_Dynamics = new PrefabGUID(2065098870); public static readonly PrefabGUID Trees_LargePine01_Dynamics = new PrefabGUID(-1883636929); public static readonly PrefabGUID Trees_LargePine01_Small_Dynamics = new PrefabGUID(-1378823465); public static readonly PrefabGUID Trees_LargePine02_Dynamics = new PrefabGUID(-2043880354); public static readonly PrefabGUID Trees_LargePine02_Small_Dynamics = new PrefabGUID(-690048766); public static readonly PrefabGUID Trees_LargePine03_Dynamics = new PrefabGUID(2021946314); public static readonly PrefabGUID Trees_LargePine03_Small_Dynamics = new PrefabGUID(840111269); public static readonly PrefabGUID Trees_LargePineSnow_Old01_Dynamics = new PrefabGUID(276653356); public static readonly PrefabGUID Trees_LargePineSnow_Old01_Small_Dynamics = new PrefabGUID(-1515221639); public static readonly PrefabGUID Trees_LargePineSnow_Old02_Dynamics = new PrefabGUID(121556631); public static readonly PrefabGUID Trees_LargePineSnow_Old02_Small_Dynamics = new PrefabGUID(-785880066); public static readonly PrefabGUID Trees_LargePineSnow_Old03_Dynamics = new PrefabGUID(-61718453); public static readonly PrefabGUID Trees_LargePineSnow_Old03_Small_Dynamics = new PrefabGUID(-906522774); public static readonly PrefabGUID Trees_MountainBirch01_Dynamics = new PrefabGUID(-1059505283); public static readonly PrefabGUID Trees_MountainBirch01_Small_Dynamics = new PrefabGUID(-379271588); public static readonly PrefabGUID Trees_MountainBirch02_Dynamics = new PrefabGUID(-678998384); public static readonly PrefabGUID Trees_MountainBirch02_Small_Dynamics = new PrefabGUID(1431235825); public static readonly PrefabGUID Trees_MountainBirch03_Dynamics = new PrefabGUID(1187314821); public static readonly PrefabGUID Trees_MountainBirch03_Small_Dynamics = new PrefabGUID(-2084014750); public static readonly PrefabGUID Trees_NoctemAspen01_Dynamics = new PrefabGUID(1022693477); public static readonly PrefabGUID Trees_NoctemAspen01_Small_Dynamics = new PrefabGUID(-1009993081); public static readonly PrefabGUID Trees_NoctemAspen02_Dynamics = new PrefabGUID(635348155); public static readonly PrefabGUID Trees_NoctemAspen02_Small_Dynamics = new PrefabGUID(-754291878); public static readonly PrefabGUID Trees_NoctemAspen03_Dynamics = new PrefabGUID(1742412627); public static readonly PrefabGUID Trees_NoctemAspen03_Small_Dynamics = new PrefabGUID(-1022765795); public static readonly PrefabGUID Trees_NoctemNorth01_Dynamics = new PrefabGUID(-1729830726); public static readonly PrefabGUID Trees_NoctemNorth01_Small_Dynamics = new PrefabGUID(-1666597484); public static readonly PrefabGUID Trees_NoctemNorth02_Dynamics = new PrefabGUID(181770135); public static readonly PrefabGUID Trees_NoctemNorth02_Small_Dynamics = new PrefabGUID(-1367480021); public static readonly PrefabGUID Trees_NoctemNorth03_Dynamics = new PrefabGUID(1766616494); public static readonly PrefabGUID Trees_NoctemNorth03_Small_Dynamics = new PrefabGUID(1095985921); public static readonly PrefabGUID Trees_NoctemNorth04_Dynamics = new PrefabGUID(-51896423); public static readonly PrefabGUID Trees_NoctemNorth04_Small_Dynamics = new PrefabGUID(1602798878); public static readonly PrefabGUID Trees_NoctemNorth05_Dynamics = new PrefabGUID(-1714103038); public static readonly PrefabGUID Trees_NoctemNorth05_Small_Dynamics = new PrefabGUID(2090172169); public static readonly PrefabGUID Trees_NoctemNorth06_Dynamics = new PrefabGUID(-1056396591); public static readonly PrefabGUID Trees_NoctemNorth06_Small_Dynamics = new PrefabGUID(-936233156); public static readonly PrefabGUID Trees_NoctemWillow01_Dynamics = new PrefabGUID(-1017892165); public static readonly PrefabGUID Trees_NoctemWillow01_Small_Dynamics = new PrefabGUID(811124755); public static readonly PrefabGUID Trees_NoctemWillow02_Dynamics = new PrefabGUID(1723397112); public static readonly PrefabGUID Trees_NoctemWillow02_Small_Dynamics = new PrefabGUID(-908515485); public static readonly PrefabGUID Trees_Oak01_Large_Dynamics = new PrefabGUID(-275652760); public static readonly PrefabGUID Trees_Oak01_LargeSmaller_Dynamics = new PrefabGUID(216854773); public static readonly PrefabGUID Trees_Oak01_Small_Dynamics = new PrefabGUID(-978563884); public static readonly PrefabGUID Trees_Oak01_Smaller_Dynamics = new PrefabGUID(-205520846); public static readonly PrefabGUID Trees_Oak02_Large_Dynamics = new PrefabGUID(-1961454897); public static readonly PrefabGUID Trees_Oak02_Small_Dynamics = new PrefabGUID(-2011384559); public static readonly PrefabGUID Trees_OakCursed01_Large_Dynamics = new PrefabGUID(204170623); public static readonly PrefabGUID Trees_OakCursed01_Small_Dynamics = new PrefabGUID(-250215791); public static readonly PrefabGUID Trees_OakCursed02_Large_Dynamics = new PrefabGUID(843322234); public static readonly PrefabGUID Trees_OakCursed02_Small_Dynamics = new PrefabGUID(-890680857); public static readonly PrefabGUID Trees_OakSkeleton01_Large_Dynamics = new PrefabGUID(533368403); public static readonly PrefabGUID Trees_OakSkeleton01_Small_Dynamics = new PrefabGUID(2144163927); public static readonly PrefabGUID Trees_OakSkeleton02_Large_Dynamics = new PrefabGUID(-1866630610); public static readonly PrefabGUID Trees_OakSkeleton02_Small_Dynamics = new PrefabGUID(141203687); public static readonly PrefabGUID Trees_Pine_Noctem01_Dynamics = new PrefabGUID(-996045522); public static readonly PrefabGUID Trees_Pine_Noctem01_Dynamics_Small = new PrefabGUID(117311435); public static readonly PrefabGUID Trees_Pine_Noctem02_Dynamics = new PrefabGUID(-1104597669); public static readonly PrefabGUID Trees_Pine_Noctem02_Dynamics_Small = new PrefabGUID(-1202670405); public static readonly PrefabGUID Trees_Pine_Noctem02_LargePine_Dynamics = new PrefabGUID(-56587558); public static readonly PrefabGUID Trees_Pine_Noctem02_LargePine_Dynamics_Small = new PrefabGUID(456649435); public static readonly PrefabGUID Trees_Pine_Noctem03_Dynamics = new PrefabGUID(1440263609); public static readonly PrefabGUID Trees_Pine_Noctem03_Dynamics_Small = new PrefabGUID(-736797142); public static readonly PrefabGUID Trees_Pine_Snow01_Broken_Dynamics = new PrefabGUID(252382965); public static readonly PrefabGUID Trees_Pine_Snow01_BrokenSmall_Dynamics = new PrefabGUID(-231925057); public static readonly PrefabGUID Trees_Pine_Snow02_Broken_Dynamics = new PrefabGUID(-193621560); public static readonly PrefabGUID Trees_Pine_Snow02_BrokenSmall_Dynamics = new PrefabGUID(-938183530); public static readonly PrefabGUID Trees_Pine_Snow03_Broken_Dynamics = new PrefabGUID(625072543); public static readonly PrefabGUID Trees_Pine_Snow03_BrokenSmall_Dynamics = new PrefabGUID(-1652357317); public static readonly PrefabGUID Trees_Pine_Snow04_Broken_Dynamics = new PrefabGUID(1751368535); public static readonly PrefabGUID Trees_Pine_Snow04_BrokenSmall_Dynamics = new PrefabGUID(-1398277997); public static readonly PrefabGUID Trees_Pine_Snow05_Broken_Dynamics = new PrefabGUID(1290181184); public static readonly PrefabGUID Trees_Pine_Snow05_BrokenSmall_Dynamics = new PrefabGUID(-2124252099); public static readonly PrefabGUID Trees_Pine01_Broken = new PrefabGUID(-1062574429); public static readonly PrefabGUID Trees_Pine01_BrokenSmall = new PrefabGUID(-1842666178); public static readonly PrefabGUID Trees_Pine02_Broken = new PrefabGUID(-1712773794); public static readonly PrefabGUID Trees_Pine02_BrokenSmall = new PrefabGUID(-1254795283); public static readonly PrefabGUID Trees_Pine03_Broken = new PrefabGUID(-756456821); public static readonly PrefabGUID Trees_Pine03_BrokenSmall = new PrefabGUID(-1062165167); public static readonly PrefabGUID Trees_Pine04_Broken = new PrefabGUID(-1027072093); public static readonly PrefabGUID Trees_Pine04_BrokenSmall = new PrefabGUID(670077400); public static readonly PrefabGUID Trees_Pine05_Broken = new PrefabGUID(1712314611); public static readonly PrefabGUID Trees_Pine05_BrokenSmall = new PrefabGUID(309439075); public static readonly PrefabGUID Trees_SmallMaple01_Dynamics = new PrefabGUID(-380821487); public static readonly PrefabGUID Trees_SmallMaple02_Dynamics = new PrefabGUID(1053740243); public static readonly PrefabGUID Trees_SmallOakAutumn01_Dynamics = new PrefabGUID(-1043791285); public static readonly PrefabGUID Trees_SmallOakAutumn02_Dynamics = new PrefabGUID(-331804096); public static readonly PrefabGUID Trees_SmallOakAutumn03_Dynamics = new PrefabGUID(-939957171); public static readonly PrefabGUID Trees_SmallOakAutumn04_Dynamics = new PrefabGUID(714593541); public static readonly PrefabGUID Trees_Spruce01_Dynamics = new PrefabGUID(1864979781); public static readonly PrefabGUID Trees_Spruce01_Small_Dynamics = new PrefabGUID(-939012560); public static readonly PrefabGUID Trees_Spruce02_Dynamics = new PrefabGUID(-2110946797); public static readonly PrefabGUID Trees_Spruce02_Small_Dynamics = new PrefabGUID(-221396615); public static readonly PrefabGUID Trees_Spruce03_Dynamics = new PrefabGUID(63394642); public static readonly PrefabGUID Trees_Spruce03_Small_Dynamics = new PrefabGUID(1191142116); public static readonly PrefabGUID Trees_SpruceSnow01_Dynamics = new PrefabGUID(-1657008620); public static readonly PrefabGUID Trees_SpruceSnow01_Small_Dynamics = new PrefabGUID(985716047); public static readonly PrefabGUID Trees_SpruceSnow02_Dynamics = new PrefabGUID(-1303262973); public static readonly PrefabGUID Trees_SpruceSnow02_Small_Dynamics = new PrefabGUID(1620045681); public static readonly PrefabGUID Trees_SpruceSnow03_Dynamics = new PrefabGUID(542716042); public static readonly PrefabGUID Trees_SpruceSnow03_Small_Dynamics = new PrefabGUID(-593551099); public static readonly PrefabGUID Trees_StrongBlade_Birch01_Dynamics = new PrefabGUID(1985568469); public static readonly PrefabGUID Trees_StrongBlade_Birch01_Small_Dynamics = new PrefabGUID(1597765583); public static readonly PrefabGUID Trees_StrongBlade_Birch02_Dynamics = new PrefabGUID(-2108718161); public static readonly PrefabGUID Trees_StrongBlade_Birch02_Small_Dynamics = new PrefabGUID(1732577749); public static readonly PrefabGUID Trees_StrongBlade_Birch03_Dynamics = new PrefabGUID(-1734950869); public static readonly PrefabGUID Trees_StrongBlade_Birch03_Small_Dynamics = new PrefabGUID(-1622792560); public static readonly PrefabGUID Trees_StrongBlade_Birches01_Dynamics = new PrefabGUID(-677680051); public static readonly PrefabGUID Trees_StrongBlade_Birches01_Small_Dynamics = new PrefabGUID(-1435082260); public static readonly PrefabGUID Trees_StrongBlade_Birches02_Dynamics = new PrefabGUID(210002320); public static readonly PrefabGUID Trees_StrongBlade_Birches02_Small_Dynamics = new PrefabGUID(2019330693); public static readonly PrefabGUID Trees_StrongBlade_Birches03_Dynamics = new PrefabGUID(206193059); public static readonly PrefabGUID Trees_StrongBlade_Birches03_Small_Dynamics = new PrefabGUID(-1632892031); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam01_Dynamics = new PrefabGUID(1594737004); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam01_Small_Dynamics = new PrefabGUID(-1027415108); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam02_Dynamics = new PrefabGUID(1626334183); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam02_Small_Dynamics = new PrefabGUID(499468819); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam03_Dynamics = new PrefabGUID(21713629); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam03_Small_Dynamics = new PrefabGUID(-1572126889); public static readonly PrefabGUID Trees_StrongBladeCorruptTree01_Dynamics = new PrefabGUID(-664331355); public static readonly PrefabGUID Trees_StrongBladeCorruptTree01_Small_Dynamics = new PrefabGUID(1990115403); public static readonly PrefabGUID Trees_StrongBladeCorruptTree02_Dynamics = new PrefabGUID(1280235145); public static readonly PrefabGUID Trees_StrongBladeCorruptTree02_Small_Dynamics = new PrefabGUID(1808947888); public static readonly PrefabGUID Trees_StrongBladeCorruptTree03_Dynamics = new PrefabGUID(-2140644035); public static readonly PrefabGUID Trees_StrongBladeCorruptTree03_Small_Dynamics = new PrefabGUID(-389301934); public static readonly PrefabGUID Trees_StrongBladeCorruptTree04_Dynamics = new PrefabGUID(591559452); public static readonly PrefabGUID Trees_StrongBladeCorruptTree04_Small_Dynamics = new PrefabGUID(745333762); public static readonly PrefabGUID Trees_StrongBladeCorruptTree05_Dynamics = new PrefabGUID(-1172272748); public static readonly PrefabGUID Trees_StrongBladeCorruptTree05_Small_Dynamics = new PrefabGUID(-1782950811); public static readonly PrefabGUID Trees_StrongBladeOakTree01_Dynamics = new PrefabGUID(2027478355); public static readonly PrefabGUID Trees_StrongBladeOakTree01_Small_Dynamics = new PrefabGUID(554882995); public static readonly PrefabGUID Trees_StrongBladeOakTree02_Dynamics = new PrefabGUID(124954140); public static readonly PrefabGUID Trees_StrongBladeOakTree02_Small_Dynamics = new PrefabGUID(-69699488); public static readonly PrefabGUID Trees_StrongBladeOakTree03_Dynamics = new PrefabGUID(-1759118568); public static readonly PrefabGUID Trees_StrongBladeOakTree03_Small_Dynamics = new PrefabGUID(-388210170); public static readonly PrefabGUID Trees_StrongBladeOakTree04_Dynamics = new PrefabGUID(1982812361); public static readonly PrefabGUID Trees_StrongBladeOakTree04_Small_Dynamics = new PrefabGUID(2041724402); public static readonly PrefabGUID Trees_Swamp01_Dynamics = new PrefabGUID(-110974891); public static readonly PrefabGUID Trees_Swamp01_Small_Dynamics = new PrefabGUID(2116257347); public static readonly PrefabGUID Trees_Swamp02_Dynamics = new PrefabGUID(685006196); public static readonly PrefabGUID Trees_Swamp02_Small_Dynamics = new PrefabGUID(-51971799); public static readonly PrefabGUID Trees_Swamp03_Dynamics = new PrefabGUID(102683508); public static readonly PrefabGUID Trees_Swamp03_Small_Dynamics = new PrefabGUID(1029939295); public static readonly PrefabGUID Trees_Werewolf01_Dynamics = new PrefabGUID(-154502623); public static readonly PrefabGUID Trees_Werewolf01_Dynamics_Small = new PrefabGUID(-1998637938); public static readonly PrefabGUID Trees_Werewolf02_Dynamics = new PrefabGUID(813910700); public static readonly PrefabGUID Trees_Werewolf02_Dynamics_Small = new PrefabGUID(379206093); public static readonly PrefabGUID Trees_Werewolf03_Dynamics = new PrefabGUID(-1525993551); public static readonly PrefabGUID Trees_Werewolf03_Dynamics_Small = new PrefabGUID(-1033197790); public static readonly PrefabGUID Trees_Werewolf04_Dynamics = new PrefabGUID(-1592199169); public static readonly PrefabGUID Trees_Werewolf04_Dynamics_Small = new PrefabGUID(1758845629); public static readonly PrefabGUID Trees_Werewolf05_Dynamics = new PrefabGUID(1727961940); public static readonly PrefabGUID Trees_Werewolf05_Dynamics_Small = new PrefabGUID(-1115424256); public static readonly PrefabGUID Trees_Werewolf06_Dynamics = new PrefabGUID(1077786014); public static readonly PrefabGUID Trees_Werewolf06_Dynamics_Small = new PrefabGUID(788023561); public static readonly PrefabGUID Trees_WerewolfStump01_Dynamics = new PrefabGUID(-1220566236); public static readonly PrefabGUID Trees_WerewolfStump01_Dynamics_Small = new PrefabGUID(897480717); public static readonly PrefabGUID Trees_WerewolfStump02_Dynamics = new PrefabGUID(-160175549); public static readonly PrefabGUID Trees_WerewolfStump02_Dynamics_Small = new PrefabGUID(552951405); public static readonly PrefabGUID Trees_WerewolfStump03_Dynamics = new PrefabGUID(-905894468); public static readonly PrefabGUID Trees_WerewolfStump03_Dynamics_Small = new PrefabGUID(-1364268108); public static readonly PrefabGUID Trigger_General_Mount_SpawnRider = new PrefabGUID(-1758718128); public static readonly PrefabGUID Trigger_General_Tank_SpawnPilot = new PrefabGUID(1484416767); public static readonly PrefabGUID Trigger_Horseman_SpawnRider = new PrefabGUID(1145925607); public static readonly PrefabGUID Trigger_Tank_Standing_SpawnPilot = new PrefabGUID(197259186); public static readonly PrefabGUID UC_Bandits_CommandPost_Medium = new PrefabGUID(-845530316); public static readonly PrefabGUID UC_Bandits_CommandPost_Small = new PrefabGUID(72462677); public static readonly PrefabGUID UC_Bandits_CopperMine_Guards = new PrefabGUID(-1068842837); public static readonly PrefabGUID UC_Bandits_CopperMine_Large = new PrefabGUID(737395552); public static readonly PrefabGUID UC_Bandits_CopperMine_Medium = new PrefabGUID(-1079572191); public static readonly PrefabGUID UC_Bandits_CopperMine_Miners = new PrefabGUID(251471235); public static readonly PrefabGUID UC_Bandits_CopperMine_Patrol = new PrefabGUID(-1103612367); public static readonly PrefabGUID UC_Bandits_CopperMine_Small = new PrefabGUID(1603866042); public static readonly PrefabGUID UC_Bandits_Encampment_Elite_OLD = new PrefabGUID(-1413980761); public static readonly PrefabGUID UC_Bandits_Encampment_Medium_OLD = new PrefabGUID(1055738758); public static readonly PrefabGUID UC_Bandits_Farbane_Patrol = new PrefabGUID(-1628839015); public static readonly PrefabGUID UC_Bandits_Farmlands_Raid = new PrefabGUID(158811061); public static readonly PrefabGUID UC_Bandits_Forge_Easy = new PrefabGUID(-153046889); public static readonly PrefabGUID UC_Bandits_Forge_Normal = new PrefabGUID(-643082717); public static readonly PrefabGUID UC_Bandits_Fortification_Hard = new PrefabGUID(1865812010); public static readonly PrefabGUID UC_Bandits_Fortification_Medium = new PrefabGUID(-1526553598); public static readonly PrefabGUID UC_Bandits_Fortification_Small = new PrefabGUID(1864955797); public static readonly PrefabGUID UC_Bandits_General_Hard_Double = new PrefabGUID(-818832097); public static readonly PrefabGUID UC_Bandits_General_Hard_Quad = new PrefabGUID(-748802369); public static readonly PrefabGUID UC_Bandits_General_Hard_Single = new PrefabGUID(-1955373512); public static readonly PrefabGUID UC_Bandits_General_Hard_Tripple = new PrefabGUID(879318067); public static readonly PrefabGUID UC_Bandits_General_Normal_Double = new PrefabGUID(1360111581); public static readonly PrefabGUID UC_Bandits_General_Normal_Single = new PrefabGUID(258438642); public static readonly PrefabGUID UC_Bandits_General_Normal_Tripple = new PrefabGUID(839708970); public static readonly PrefabGUID UC_Bandits_General_SuperTrash_Double = new PrefabGUID(-1643375536); public static readonly PrefabGUID UC_Bandits_General_SuperTrash_Single = new PrefabGUID(-2098437895); public static readonly PrefabGUID UC_Bandits_General_Trash_Double = new PrefabGUID(1986447036); public static readonly PrefabGUID UC_Bandits_General_Trash_Hexa = new PrefabGUID(356989664); public static readonly PrefabGUID UC_Bandits_General_Trash_Single = new PrefabGUID(-716321464); public static readonly PrefabGUID UC_Bandits_General_Trash_Tripple = new PrefabGUID(1538065374); public static readonly PrefabGUID UC_Bandits_Hideout_Medium = new PrefabGUID(-1130973344); public static readonly PrefabGUID UC_Bandits_Hideout_Patrol = new PrefabGUID(1777035508); public static readonly PrefabGUID UC_Bandits_Hideout_Single_Trash = new PrefabGUID(1007057368); public static readonly PrefabGUID UC_Bandits_Hideout_Small = new PrefabGUID(2066718689); public static readonly PrefabGUID UC_Bandits_Lumberjack_Medium = new PrefabGUID(-955238947); public static readonly PrefabGUID UC_Bandits_Lumberjack_Small = new PrefabGUID(-1083947406); public static readonly PrefabGUID UC_Bandits_SulfurMine_Duo_Guard = new PrefabGUID(715218025); public static readonly PrefabGUID UC_Bandits_SulfurMine_Trio = new PrefabGUID(1945338497); public static readonly PrefabGUID UC_Bandits_TailorCamp_Guards = new PrefabGUID(1381493163); public static readonly PrefabGUID UC_Bandits_TailorCamp_Medium = new PrefabGUID(-1135657344); public static readonly PrefabGUID UC_Bandits_TailorCamp_Single = new PrefabGUID(2040350952); public static readonly PrefabGUID UC_Bandits_TailorCamp_Small = new PrefabGUID(-1868593403); public static readonly PrefabGUID UC_Bandits_VBlood_Chaosarrow = new PrefabGUID(-913889739); public static readonly PrefabGUID UC_Bandits_VBlood_FrostArrow = new PrefabGUID(238760410); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Duo_Medium = new PrefabGUID(830410426); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Duo_Medium_Guard = new PrefabGUID(1529877133); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Patrol_Trio_PeonCarryingBarrel = new PrefabGUID(-1049194597); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Single_Alchemist = new PrefabGUID(1547151824); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Single_Peon = new PrefabGUID(1591102641); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Single_Trash_AlchemyHouse = new PrefabGUID(163543459); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Alchemist = new PrefabGUID(-279672644); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Medium_Patrol_Melee = new PrefabGUID(1521714170); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Medium_Patrol_Ranged = new PrefabGUID(-1790390091); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Trash_AlchemyHouse = new PrefabGUID(817095334); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Trio_Peon = new PrefabGUID(-410699202); public static readonly PrefabGUID UC_Blackfang_Basion_Duo_Medium = new PrefabGUID(-441272724); public static readonly PrefabGUID UC_Blackfang_Bastion_Duo_Medium_Hard = new PrefabGUID(-1076708449); public static readonly PrefabGUID UC_Blackfang_Bastion_Duo_Sentinel_Hard = new PrefabGUID(-1216836132); public static readonly PrefabGUID UC_Blackfang_Bastion_Quad_Sentinel_Hard = new PrefabGUID(1874162249); public static readonly PrefabGUID UC_Blackfang_Bastion_Single_Medium = new PrefabGUID(1072549020); public static readonly PrefabGUID UC_Blackfang_Bastion_Single_Sentinel = new PrefabGUID(1414864715); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Medium = new PrefabGUID(976746718); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Sentinel_Hard = new PrefabGUID(1890470354); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Sentinel_Medium = new PrefabGUID(-1468919877); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Sentinel_Trash = new PrefabGUID(-278016562); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Duo_Medium = new PrefabGUID(1384826772); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Quad_Hard = new PrefabGUID(165454878); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Quad_Medium = new PrefabGUID(1897700879); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_Medium = new PrefabGUID(1031112161); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_Peon = new PrefabGUID(1206753386); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_PeonWithLog = new PrefabGUID(-1867288442); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_WoodCarver = new PrefabGUID(-853670200); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Trio_Medium = new PrefabGUID(955686985); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Trio_Peon = new PrefabGUID(-1999115092); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Trio_PeonWithLog = new PrefabGUID(-287667359); public static readonly PrefabGUID UC_Blackfang_General_Duo_Medium = new PrefabGUID(1400562114); public static readonly PrefabGUID UC_Blackfang_General_Duo_Medium_Hard = new PrefabGUID(-1547973473); public static readonly PrefabGUID UC_Blackfang_General_Duo_Trash = new PrefabGUID(1279452350); public static readonly PrefabGUID UC_Blackfang_General_Duo_Trash_Day = new PrefabGUID(494869897); public static readonly PrefabGUID UC_Blackfang_General_Duo_Trash_Night = new PrefabGUID(-1119244784); public static readonly PrefabGUID UC_Blackfang_General_Duo_WoodCarver = new PrefabGUID(1592299819); public static readonly PrefabGUID UC_Blackfang_General_Quad_Hard = new PrefabGUID(2110467644); public static readonly PrefabGUID UC_Blackfang_General_Quad_Medium = new PrefabGUID(582081040); public static readonly PrefabGUID UC_Blackfang_General_Single_Medium = new PrefabGUID(2122907035); public static readonly PrefabGUID UC_Blackfang_General_Single_Medium_Melee = new PrefabGUID(-1013004007); public static readonly PrefabGUID UC_Blackfang_General_Single_Medium_Ranged = new PrefabGUID(138363183); public static readonly PrefabGUID UC_Blackfang_General_Single_Peon = new PrefabGUID(-1758671072); public static readonly PrefabGUID UC_Blackfang_General_Single_PeonWithBarrel = new PrefabGUID(-1211271013); public static readonly PrefabGUID UC_Blackfang_General_Single_Trash = new PrefabGUID(208901783); public static readonly PrefabGUID UC_Blackfang_General_Trio_Medium = new PrefabGUID(1383506319); public static readonly PrefabGUID UC_Blackfang_General_Trio_Medium_Melee = new PrefabGUID(-799088053); public static readonly PrefabGUID UC_Blackfang_General_Trio_Medium_Ranged = new PrefabGUID(2119863116); public static readonly PrefabGUID UC_Blackfang_General_Trio_Patrol_PeonCarryingBarrel = new PrefabGUID(223269921); public static readonly PrefabGUID UC_Blackfang_General_Trio_Peon = new PrefabGUID(-1507878040); public static readonly PrefabGUID UC_Blackfang_General_Trio_Trash = new PrefabGUID(-924344322); public static readonly PrefabGUID UC_Blackfang_GlobalPatrol_Mid = new PrefabGUID(2010038342); public static readonly PrefabGUID UC_Blackfang_GlobalPatrol_North = new PrefabGUID(260758549); public static readonly PrefabGUID UC_Blackfang_GlobalPatrol_South = new PrefabGUID(1010053042); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted = new PrefabGUID(-1204547934); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Assault_Alchemy = new PrefabGUID(-671228343); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Assault_Bastion = new PrefabGUID(-1240499113); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Assault_CarverCamp = new PrefabGUID(2124515598); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Frenzy = new PrefabGUID(-286605848); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Patrol_Single_Wolf = new PrefabGUID(1878487361); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Patrol_WolfPack = new PrefabGUID(264712104); public static readonly PrefabGUID UC_Blackfang_Wildlife_Wolfpack = new PrefabGUID(-1410997748); public static readonly PrefabGUID UC_Cemetery_Farbane_Small = new PrefabGUID(1169029232); public static readonly PrefabGUID UC_Cemetery_Forgotten_Duo = new PrefabGUID(-224848181); public static readonly PrefabGUID UC_Cemetery_Forgotten_Horde = new PrefabGUID(105933508); public static readonly PrefabGUID UC_Cemetery_Forgotten_Quad_Trash = new PrefabGUID(-121370716); public static readonly PrefabGUID UC_Cemetery_Forgotten_Skulls = new PrefabGUID(169525792); public static readonly PrefabGUID UC_Cemetery_Forgotten_Trio = new PrefabGUID(624593046); public static readonly PrefabGUID UC_Cemetery_Vampire_Rat_Single = new PrefabGUID(-1570259723); public static readonly PrefabGUID UC_Cemetery_Vampire_RottenGhoul_Single = new PrefabGUID(473094372); public static readonly PrefabGUID UC_Cemetery_Vampire_SkeletonCrossbow_Single = new PrefabGUID(398051345); public static readonly PrefabGUID UC_Cemetery_Vampire_SkeletonWarrior_Single = new PrefabGUID(-1983163876); public static readonly PrefabGUID UC_Cemetery_Vampire_Undeads_Duo = new PrefabGUID(-2078087390); public static readonly PrefabGUID UC_Cemetery_Vampire_Undeads_Single = new PrefabGUID(-1237357079); public static readonly PrefabGUID UC_Cemetery_Vampire_WickedRat = new PrefabGUID(-304096290); public static readonly PrefabGUID UC_Chuch_Noctem_Attack = new PrefabGUID(1515686658); public static readonly PrefabGUID UC_Church_Village_Church = new PrefabGUID(2063048026); public static readonly PrefabGUID UC_Church_Village_Nun_Vblood = new PrefabGUID(-1373222097); public static readonly PrefabGUID UC_Church_Village_Single = new PrefabGUID(797974721); public static readonly PrefabGUID UC_Church_Village_Small = new PrefabGUID(-1757689228); public static readonly PrefabGUID UC_Civilians_Farmers_Day = new PrefabGUID(-1321785047); public static readonly PrefabGUID UC_Civilians_Farmers_Night = new PrefabGUID(1170858109); public static readonly PrefabGUID UC_Civilians_Villagers_Day = new PrefabGUID(-944606522); public static readonly PrefabGUID UC_Civilians_Villagers_Night = new PrefabGUID(-1115039318); public static readonly PrefabGUID UC_Cursed_Forest_GlobalPatrol = new PrefabGUID(670003267); public static readonly PrefabGUID UC_Cursed_Forest_Patrol_Solo = new PrefabGUID(-591014292); public static readonly PrefabGUID UC_Cursed_Swamp_Patrol_Solo = new PrefabGUID(953344614); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Normal_Single = new PrefabGUID(-1678277026); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Normal_Trio = new PrefabGUID(1738529251); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Trash_Duo = new PrefabGUID(-371267802); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Trash_Single = new PrefabGUID(-1839936141); public static readonly PrefabGUID UC_CursedForest_Cultists_Medium = new PrefabGUID(2038582842); public static readonly PrefabGUID UC_CursedForest_Mosquito_Trio = new PrefabGUID(1881899517); public static readonly PrefabGUID UC_CursedForest_NightLurkers_Medium = new PrefabGUID(-2057581460); public static readonly PrefabGUID UC_CursedUndead_Duo = new PrefabGUID(-1089121103); public static readonly PrefabGUID UC_CursedUndead_Medium = new PrefabGUID(1057022288); public static readonly PrefabGUID UC_CursedUndead_Small = new PrefabGUID(534881196); public static readonly PrefabGUID UC_Dunley_Villager_Day = new PrefabGUID(1244247291); public static readonly PrefabGUID UC_Dunley_Villager_General = new PrefabGUID(423040870); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Prayer = new PrefabGUID(-518804536); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Roaming = new PrefabGUID(-1244759033); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Sit = new PrefabGUID(-1808961025); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Sleep = new PrefabGUID(-497365241); public static readonly PrefabGUID UC_Dunley_Villager_Night = new PrefabGUID(1064575121); public static readonly PrefabGUID UC_Farbane_InCorner04_Graveyard_Duo_Normal = new PrefabGUID(-1106091712); public static readonly PrefabGUID UC_Farbane_InCorner04_Graveyard_Single_Normal = new PrefabGUID(2010291410); public static readonly PrefabGUID UC_Farbane_InCorner04_Graveyard_Trio_Trash = new PrefabGUID(1711288084); public static readonly PrefabGUID UC_Farbane_InCorner05_Graveyard_Duo_Normal = new PrefabGUID(-1789240674); public static readonly PrefabGUID UC_Farbane_InCorner05_Graveyard_Single_Normal = new PrefabGUID(1364412189); public static readonly PrefabGUID UC_Farbane_InCorner05_Graveyard_Trio_Trash = new PrefabGUID(813432234); public static readonly PrefabGUID UC_Farbane_RuneStones = new PrefabGUID(-1402392049); public static readonly PrefabGUID UC_Farmlands_Hostile_Farmers_Indoor = new PrefabGUID(-1444744826); public static readonly PrefabGUID UC_Farmlands_Hostile_Farmers_Outdoor = new PrefabGUID(706176529); public static readonly PrefabGUID UC_Farmlands_IronMine_Medium = new PrefabGUID(2072210115); public static readonly PrefabGUID UC_Farmlands_IronMine_Trash = new PrefabGUID(-1051486482); public static readonly PrefabGUID UC_Farmlands_Scarecrow_Night = new PrefabGUID(687903969); public static readonly PrefabGUID UC_Global_Bandits_CarriageTestPatrol = new PrefabGUID(507864428); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Animal = new PrefabGUID(-1437443077); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Copper = new PrefabGUID(-961086385); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Plank = new PrefabGUID(-430056671); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Prisoner = new PrefabGUID(-444627378); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Sulfur = new PrefabGUID(1746583431); public static readonly PrefabGUID UC_Global_Carriage_Blackfang_Bastion = new PrefabGUID(26594244); public static readonly PrefabGUID UC_Global_Carriage_Blackfang_South = new PrefabGUID(-1153896345); public static readonly PrefabGUID UC_Global_Carriage_Chuch_Grape = new PrefabGUID(255893299); public static readonly PrefabGUID UC_Global_Carriage_Chuch_PrisonLegion = new PrefabGUID(-1731097304); public static readonly PrefabGUID UC_Global_Carriage_Chuch_PrisonMutant = new PrefabGUID(1836684534); public static readonly PrefabGUID UC_Global_Carriage_Chuch_Silver = new PrefabGUID(1798271698); public static readonly PrefabGUID UC_Global_Carriage_Militia_Cotton = new PrefabGUID(1933417229); public static readonly PrefabGUID UC_Global_Carriage_Militia_Glass = new PrefabGUID(-1434673194); public static readonly PrefabGUID UC_Global_Carriage_Militia_Iron = new PrefabGUID(-592872765); public static readonly PrefabGUID UC_GlobalPatrol_Dunley_Undead = new PrefabGUID(1068590318); public static readonly PrefabGUID UC_GlobalPatrol_Dunley_Werewolf = new PrefabGUID(-439853413); public static readonly PrefabGUID UC_GlobalPatrol_Legion = new PrefabGUID(884701423); public static readonly PrefabGUID UC_GlobalPatrol_Militia = new PrefabGUID(-1744210400); public static readonly PrefabGUID UC_Gloomrot_Villager_Day = new PrefabGUID(1689710244); public static readonly PrefabGUID UC_Gloomrot_Villager_Night = new PrefabGUID(-592397662); public static readonly PrefabGUID UC_GolemCave_Elementals = new PrefabGUID(-915200094); public static readonly PrefabGUID UC_IronVeins_Golems = new PrefabGUID(-1081114104); public static readonly PrefabGUID UC_Legion_3Special4Trash = new PrefabGUID(1939572648); public static readonly PrefabGUID UC_Legion_4Trash = new PrefabGUID(496621891); public static readonly PrefabGUID UC_Legion_BatSwarm = new PrefabGUID(-760248742); public static readonly PrefabGUID UC_Legion_BloodProphet_Duo = new PrefabGUID(-928543060); public static readonly PrefabGUID UC_Legion_BloodProphet_Trash = new PrefabGUID(1436737486); public static readonly PrefabGUID UC_Legion_Cultist_BloodCrystal = new PrefabGUID(-886526987); public static readonly PrefabGUID UC_Legion_Cultist_Channeling = new PrefabGUID(389905885); public static readonly PrefabGUID UC_Legion_Cultist_Patrolling = new PrefabGUID(-542818642); public static readonly PrefabGUID UC_Legion_Cultist_Praying_ArmsOut = new PrefabGUID(1629399595); public static readonly PrefabGUID UC_Legion_Cultist_Praying_Ground = new PrefabGUID(-1633791438); public static readonly PrefabGUID UC_Legion_Cultist_Whittling = new PrefabGUID(1938887558); public static readonly PrefabGUID UC_Legion_DraculasRuins_NightmadenPatrol = new PrefabGUID(-371090623); public static readonly PrefabGUID UC_Legion_Dreadhorn_Prophet = new PrefabGUID(-782933247); public static readonly PrefabGUID UC_Legion_Dreadhorn_Vargulf = new PrefabGUID(-785684215); public static readonly PrefabGUID UC_Legion_Garden_Normal_Large = new PrefabGUID(748500236); public static readonly PrefabGUID UC_Legion_Garden_Normal_Small = new PrefabGUID(1409450579); public static readonly PrefabGUID UC_Legion_Garden_Trash_Small = new PrefabGUID(488592532); public static readonly PrefabGUID UC_Legion_Gargoyle_4Swarm = new PrefabGUID(-1059074786); public static readonly PrefabGUID UC_Legion_Gargoyle_Duo = new PrefabGUID(1794127582); public static readonly PrefabGUID UC_Legion_Gargoyle_Single = new PrefabGUID(-1939324066); public static readonly PrefabGUID UC_Legion_GlobalPatrol_Lower = new PrefabGUID(713542861); public static readonly PrefabGUID UC_Legion_GlobalPatrol_Upper = new PrefabGUID(-1790709331); public static readonly PrefabGUID UC_Legion_Guard_Duo = new PrefabGUID(1469671253); public static readonly PrefabGUID UC_Legion_HighLord = new PrefabGUID(655419970); public static readonly PrefabGUID UC_Legion_IceRanger = new PrefabGUID(-811471693); public static readonly PrefabGUID UC_Legion_Lesser_3Special4Trash = new PrefabGUID(905187036); public static readonly PrefabGUID UC_Legion_Lesser_BatSwarm = new PrefabGUID(160367434); public static readonly PrefabGUID UC_Legion_Lesser_BloodProphet_Duo = new PrefabGUID(1976488706); public static readonly PrefabGUID UC_Legion_Lesser_BloodProphet_Trash = new PrefabGUID(-1490084873); public static readonly PrefabGUID UC_Legion_Lesser_Dreadhorn_Prophet = new PrefabGUID(698518969); public static readonly PrefabGUID UC_Legion_Lesser_Dreadhorn_Vargulf = new PrefabGUID(-1610762504); public static readonly PrefabGUID UC_Legion_Lesser_Gargoyle_4Swarm = new PrefabGUID(-1439025014); public static readonly PrefabGUID UC_Legion_Lesser_Gargoyle_Duo = new PrefabGUID(-2101970651); public static readonly PrefabGUID UC_Legion_Lesser_Gargoyle_Single = new PrefabGUID(-1127213329); public static readonly PrefabGUID UC_Legion_Lesser_NightMaiden_Trash = new PrefabGUID(-613249303); public static readonly PrefabGUID UC_Legion_Lesser_Nightmaiden_Trio = new PrefabGUID(673553700); public static readonly PrefabGUID UC_Legion_Lesser_Nightmare_Trash = new PrefabGUID(912533703); public static readonly PrefabGUID UC_Legion_Lesser_Specials = new PrefabGUID(213811489); public static readonly PrefabGUID UC_Legion_Lesser_Vargulf_Duo = new PrefabGUID(594818618); public static readonly PrefabGUID UC_Legion_Lesser_Vargulf_Shadowkin = new PrefabGUID(1532100931); public static readonly PrefabGUID UC_Legion_Lower_LocalPatrol = new PrefabGUID(1068949857); public static readonly PrefabGUID UC_Legion_NightMaiden_Trash = new PrefabGUID(864950932); public static readonly PrefabGUID UC_Legion_Nightmaiden_Trio = new PrefabGUID(-1253584399); public static readonly PrefabGUID UC_Legion_Nightmare_Trash = new PrefabGUID(-1033227906); public static readonly PrefabGUID UC_Legion_Ruins_Normal_Large = new PrefabGUID(1527837894); public static readonly PrefabGUID UC_Legion_Ruins_Normal_Small = new PrefabGUID(1425546165); public static readonly PrefabGUID UC_Legion_Ruins_Trash_Small = new PrefabGUID(-1307538304); public static readonly PrefabGUID UC_Legion_Specials = new PrefabGUID(-1751946367); public static readonly PrefabGUID UC_Legion_Upper_LocalPatrol = new PrefabGUID(-608878738); public static readonly PrefabGUID UC_Legion_Vargulf_Duo = new PrefabGUID(-226434356); public static readonly PrefabGUID UC_Legion_Vargulf_Shadowkin = new PrefabGUID(-750501007); public static readonly PrefabGUID UC_LowerGloomrot_Factory_Due_Normal = new PrefabGUID(-1487862830); public static readonly PrefabGUID UC_LowerGloomrot_Factory_Due_Trash = new PrefabGUID(1904788803); public static readonly PrefabGUID UC_LowerGloomrot_Factory_Trio_Technician = new PrefabGUID(1097303240); public static readonly PrefabGUID UC_LowerGloomrot_Factory_TrioQuad_Normal = new PrefabGUID(59669775); public static readonly PrefabGUID UC_LowerGloomrot_RoadPatrol_Medium = new PrefabGUID(-1786662858); public static readonly PrefabGUID UC_LowerGloomrot_Town_Duo_Trash = new PrefabGUID(-1211398494); public static readonly PrefabGUID UC_LowerGloomrot_Town_Medium = new PrefabGUID(-518135371); public static readonly PrefabGUID UC_LowerGloomrot_ToxicPools_Medium = new PrefabGUID(1260898557); public static readonly PrefabGUID UC_LowerGloomrot_ToxicPools_Small = new PrefabGUID(-115846681); public static readonly PrefabGUID UC_LowerGloomrot_ToxicPools_Trash_Duo = new PrefabGUID(-1687944895); public static readonly PrefabGUID UC_MicroPOI_Bandit_Sit = new PrefabGUID(2056297947); public static readonly PrefabGUID UC_MicroPOI_Bandit_Sleep = new PrefabGUID(1012707305); public static readonly PrefabGUID UC_MicroPOI_Bandit_Tinker = new PrefabGUID(-2047534895); public static readonly PrefabGUID UC_MicroPOI_Bear_Eating = new PrefabGUID(1972555860); public static readonly PrefabGUID UC_MicroPOI_GiantCrow_FromAbove = new PrefabGUID(-626083809); public static readonly PrefabGUID UC_MicroPOI_WinterBear_Eating = new PrefabGUID(-1336223438); public static readonly PrefabGUID UC_MicroPOI_Wolf_Eating = new PrefabGUID(1614769441); public static readonly PrefabGUID UC_Militia_Church_Holy_Medium = new PrefabGUID(-297352795); public static readonly PrefabGUID UC_Militia_Church_Holy_Small = new PrefabGUID(160689770); public static readonly PrefabGUID UC_Militia_Church_Medium = new PrefabGUID(-1193571488); public static readonly PrefabGUID UC_Militia_Church_Small = new PrefabGUID(-344881744); public static readonly PrefabGUID UC_Militia_DraculasRuins = new PrefabGUID(-884613312); public static readonly PrefabGUID UC_Militia_DraculasRuins_Trash = new PrefabGUID(-953148017); public static readonly PrefabGUID UC_Militia_Farbane_Patrol_Hard = new PrefabGUID(389309352); public static readonly PrefabGUID UC_Militia_Farbane_Patrol_RandmDifficulty = new PrefabGUID(-229725838); public static readonly PrefabGUID UC_Militia_Farmlands_Indoors = new PrefabGUID(1447338279); public static readonly PrefabGUID UC_Militia_Farmlands_Medium = new PrefabGUID(1666344530); public static readonly PrefabGUID UC_Militia_Fort_Gate = new PrefabGUID(-1328861477); public static readonly PrefabGUID UC_Militia_Fort_Normal = new PrefabGUID(-1380611024); public static readonly PrefabGUID UC_Militia_Fort_Trash = new PrefabGUID(-95026270); public static readonly PrefabGUID UC_Militia_FrostGuard_Patrol_VBlood = new PrefabGUID(1594774445); public static readonly PrefabGUID UC_Militia_IronMine_AttackParty = new PrefabGUID(-1333909851); public static readonly PrefabGUID UC_Militia_IronMine_Medium = new PrefabGUID(1916464339); public static readonly PrefabGUID UC_Militia_IronMine_MilitiaVBlood = new PrefabGUID(-1594381773); public static readonly PrefabGUID UC_Militia_IronMine_Small = new PrefabGUID(586753201); public static readonly PrefabGUID UC_Militia_LumberCamp_Medium = new PrefabGUID(1965741224); public static readonly PrefabGUID UC_Militia_LumberCamp_Patrol = new PrefabGUID(1550814379); public static readonly PrefabGUID UC_Militia_LumberCamp_Woodcutters = new PrefabGUID(-630324966); public static readonly PrefabGUID UC_Militia_Marketplace_Normal = new PrefabGUID(734546471); public static readonly PrefabGUID UC_Militia_MicroPOI_Sit = new PrefabGUID(-362891571); public static readonly PrefabGUID UC_Militia_MicroPOI_Sleep = new PrefabGUID(-586376315); public static readonly PrefabGUID UC_Militia_MilitiaCamp_Medium_TrashOnly = new PrefabGUID(272461174); public static readonly PrefabGUID UC_Militia_MilitiaCamp_Patrol = new PrefabGUID(-2082699617); public static readonly PrefabGUID UC_Militia_MilitiaCamp_Small = new PrefabGUID(374718334); public static readonly PrefabGUID UC_Militia_Noctem_Attack = new PrefabGUID(1461576373); public static readonly PrefabGUID UC_Militia_Noctem_GlobalPatrol = new PrefabGUID(-1649342958); public static readonly PrefabGUID UC_Militia_QuartzQuarry_Normal = new PrefabGUID(2115345913); public static readonly PrefabGUID UC_Militia_QuartzQuarry_Trash = new PrefabGUID(-2133969842); public static readonly PrefabGUID UC_Militia_SisterPatrol = new PrefabGUID(57475820); public static readonly PrefabGUID UC_Militia_Village_Big_Rank02 = new PrefabGUID(128036862); public static readonly PrefabGUID UC_Militia_Village_Indoors = new PrefabGUID(-22534710); public static readonly PrefabGUID UC_Militia_Village_Patrol = new PrefabGUID(-1271484347); public static readonly PrefabGUID UC_Militia_Village_Small_Rank01 = new PrefabGUID(586122826); public static readonly PrefabGUID UC_Militia_Village_Small_Rank02 = new PrefabGUID(1186905442); public static readonly PrefabGUID UC_Mutants_Mix_RareSpawn_FromSide = new PrefabGUID(-151305648); public static readonly PrefabGUID UC_Mutants_Quad_NormalTrash_FromSide = new PrefabGUID(1081019739); public static readonly PrefabGUID UC_Mutants_Single_Rare_FromSide = new PrefabGUID(691873631); public static readonly PrefabGUID UC_Mutants_Trio_Normal_FromSide = new PrefabGUID(165620166); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Bandits_Duo_Normal = new PrefabGUID(-315925743); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Bandits_Duo_Trash = new PrefabGUID(-1146829234); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Bandits_Solo_Normal = new PrefabGUID(2090854880); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Duo_Trash = new PrefabGUID(-984793803); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Followers_Church = new PrefabGUID(-266128533); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Quad_Normal = new PrefabGUID(-2097795966); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Solo_Church = new PrefabGUID(985037506); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Solo_Normal = new PrefabGUID(-2119933034); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Solo_Paladin = new PrefabGUID(1339850625); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Trio_Church = new PrefabGUID(-1620522627); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Trio_Normal = new PrefabGUID(-1690508570); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Trio_Trash = new PrefabGUID(-1806473345); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Militia_Duo_Normal = new PrefabGUID(106715076); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Militia_Duo_Trash = new PrefabGUID(-1009213987); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Militia_Solo_Normal = new PrefabGUID(-1180810891); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Villagers_2to3 = new PrefabGUID(741189306); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Duo_Trash = new PrefabGUID(-1575153250); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Quad_Normal = new PrefabGUID(449100388); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Solo_Normal = new PrefabGUID(-946781253); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Trio_Normal = new PrefabGUID(1142554585); public static readonly PrefabGUID UC_Silverlight_Fortification_Militia_Duo_Normal = new PrefabGUID(617069211); public static readonly PrefabGUID UC_Silverlight_Fortification_Militia_Duo_Trash = new PrefabGUID(-1181554274); public static readonly PrefabGUID UC_Silverlight_Fortification_Militia_Solo_Normal = new PrefabGUID(-286132619); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Super = new PrefabGUID(-1524344047); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Trash = new PrefabGUID(-1312724250); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Trio_BrightHaven = new PrefabGUID(-649984199); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Trio_Normal = new PrefabGUID(423565074); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Duo_Normal = new PrefabGUID(534640823); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Duo_Normal_FromAbove = new PrefabGUID(2023603466); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Duo_Trash = new PrefabGUID(-692649458); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Solo_Normal = new PrefabGUID(1787706987); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Solo_Normal_FromAbove = new PrefabGUID(-531569131); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Solo_Normal_FromSide = new PrefabGUID(569479331); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Trio_Normal_FromAbove = new PrefabGUID(-1937418864); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Trio_Trash = new PrefabGUID(1713489339); public static readonly PrefabGUID UC_Silverlight_Noctem_GlobalPatrol = new PrefabGUID(2136416659); public static readonly PrefabGUID UC_Silverlight_OakveilAttack_Quad_Normal = new PrefabGUID(-119188726); public static readonly PrefabGUID UC_Silverlight_SilverMine_Guards_Duo_Trash = new PrefabGUID(-995191671); public static readonly PrefabGUID UC_Silverlight_SilverMine_Guards_Trio_Trash = new PrefabGUID(-40325839); public static readonly PrefabGUID UC_Silverlight_SilverMine_Militia_Duo_Normal = new PrefabGUID(-333884822); public static readonly PrefabGUID UC_Silverlight_SilverMine_Militia_Duo_Trash = new PrefabGUID(-1182222227); public static readonly PrefabGUID UC_Silverlight_SilverMine_Militia_Solo_Normal = new PrefabGUID(1198392115); public static readonly PrefabGUID UC_Silverlight_SilverMine_SlaveComp_Normal = new PrefabGUID(-1204645915); public static readonly PrefabGUID UC_Silverlight_SilverMine_SlaveMaster_Solo = new PrefabGUID(-736495815); public static readonly PrefabGUID UC_Silverlight_SilverMine_SlavePatrol_Normal = new PrefabGUID(-1093412070); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Prayer = new PrefabGUID(308770937); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Roaming = new PrefabGUID(-48880565); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Sit = new PrefabGUID(1536550713); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Sleep = new PrefabGUID(1443903670); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Duo_Trash = new PrefabGUID(100532191); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Quad_Normal = new PrefabGUID(-909770865); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Solo_Normal = new PrefabGUID(1395438837); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Trio_Normal = new PrefabGUID(1293302348); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Trio_Trash = new PrefabGUID(-1608814553); public static readonly PrefabGUID UC_Silverlight_WineYard_Villagers_2to3 = new PrefabGUID(1011893399); public static readonly PrefabGUID UC_Spiders_AttackPatrol = new PrefabGUID(-1422655284); public static readonly PrefabGUID UC_Spiders_Duo = new PrefabGUID(1107553844); public static readonly PrefabGUID UC_Spiders_Quad = new PrefabGUID(-2008038934); public static readonly PrefabGUID UC_Spiders_Solo_Broodmother = new PrefabGUID(648500792); public static readonly PrefabGUID UC_Spiders_Solo_Normal = new PrefabGUID(1420687813); public static readonly PrefabGUID UC_Spiders_Spiderlings = new PrefabGUID(1772842569); public static readonly PrefabGUID UC_Spiders_Trio = new PrefabGUID(-940457293); public static readonly PrefabGUID UC_Undead_BishopOfDeath_VBlood = new PrefabGUID(101916245); public static readonly PrefabGUID UC_Undead_ChurchOfTheDamned_Duo = new PrefabGUID(1667345206); public static readonly PrefabGUID UC_Undead_ChurchOfTheDamned_Quad = new PrefabGUID(1468816856); public static readonly PrefabGUID UC_Undead_Farbane_Patrol = new PrefabGUID(1396151940); public static readonly PrefabGUID UC_Undead_Farbane_Patrol_Easy = new PrefabGUID(-295869149); public static readonly PrefabGUID UC_UpperGloomrot_General_Duo_Medium = new PrefabGUID(1087496402); public static readonly PrefabGUID UC_UpperGloomrot_General_Duo_Trash = new PrefabGUID(1956735952); public static readonly PrefabGUID UC_UpperGloomrot_General_Solo_Tank = new PrefabGUID(1495318020); public static readonly PrefabGUID UC_UpperGloomrot_GlobalPatrol_Group = new PrefabGUID(-1260008979); public static readonly PrefabGUID UC_UpperGloomrot_Labratory_Duo_Medium = new PrefabGUID(-202065495); public static readonly PrefabGUID UC_UpperGloomrot_Labratory_Duo_Trash = new PrefabGUID(128906022); public static readonly PrefabGUID UC_UpperGloomrot_Labratory_Trio_Medium = new PrefabGUID(717824743); public static readonly PrefabGUID UC_UpperGloomrot_LabratoryOutside_Solo_Tank = new PrefabGUID(1048538286); public static readonly PrefabGUID UC_UpperGloomrot_LabratoryOutside_Trio_Tank = new PrefabGUID(-1081037995); public static readonly PrefabGUID UC_UpperGloomrot_LocalExterminatorPatrol = new PrefabGUID(691787355); public static readonly PrefabGUID UC_UpperGloomrot_Powerplant_Duo_Medium = new PrefabGUID(745500450); public static readonly PrefabGUID UC_UpperGloomrot_Powerplant_Duo_Trash = new PrefabGUID(-313478732); public static readonly PrefabGUID UC_UpperGloomrot_PowerplantOutside_Solo_Tank = new PrefabGUID(-800891487); public static readonly PrefabGUID UC_UpperGloomrot_PowerplantOutside_Trio_Tank = new PrefabGUID(-2102565740); public static readonly PrefabGUID UC_WarEvent_Legion_Bosses_Major = new PrefabGUID(748184886); public static readonly PrefabGUID UC_WarEvent_Legion_Bosses_Minor = new PrefabGUID(-1986233044); public static readonly PrefabGUID UC_WarEvent_Legion_Bosses_Primal = new PrefabGUID(-1264407246); public static readonly PrefabGUID UC_WarEvent_Legion_Smallwaves_Major = new PrefabGUID(309638234); public static readonly PrefabGUID UC_WarEvent_Legion_Smallwaves_Minor = new PrefabGUID(-789054312); public static readonly PrefabGUID UC_WarEvent_Legion_Smallwaves_Primal = new PrefabGUID(1642336478); public static readonly PrefabGUID UC_WarEvent_Legion_Tempowaves = new PrefabGUID(1383252554); public static readonly PrefabGUID UC_WarEvent_Legion_Trash = new PrefabGUID(-261971401); public static readonly PrefabGUID UC_Waygate_WitheredVampire = new PrefabGUID(-291521478); public static readonly PrefabGUID UC_Waygate_WitheredVampireSmall = new PrefabGUID(-1407896188); public static readonly PrefabGUID UC_Wilderness_BuilderChunk_General_Patrol = new PrefabGUID(371798427); public static readonly PrefabGUID UC_Wilderness_CorruptedCrow_FromAbove = new PrefabGUID(-2073865112); public static readonly PrefabGUID UC_Wilderness_CorruptedCrow_Trio_FromAbove = new PrefabGUID(165269252); public static readonly PrefabGUID UC_Wilderness_GiantCrow_FromAbove = new PrefabGUID(796676707); public static readonly PrefabGUID UC_Wilderness_Manticore_FromSide = new PrefabGUID(2111159493); public static readonly PrefabGUID UC_Wilderness_Mantraps = new PrefabGUID(1461267729); public static readonly PrefabGUID UC_Wilderness_NoctemCrow_FromAbove = new PrefabGUID(725846794); public static readonly PrefabGUID UC_Wilderness_RandomFarbane = new PrefabGUID(1760202007); public static readonly PrefabGUID UC_Wilderness_UndeadCrow_FromAbove = new PrefabGUID(1738338363); public static readonly PrefabGUID UC_Wilderness_Wolves_Medium = new PrefabGUID(1828027626); public static readonly PrefabGUID UC_Wilderness_Wolves_Small = new PrefabGUID(-1441886056); public static readonly PrefabGUID UC_WitheredVampire_1to2 = new PrefabGUID(-875289650); public static readonly PrefabGUID UC_WitheredVampire_3 = new PrefabGUID(-1844084184); public static readonly PrefabGUID UC_WitheredVampire_4to5 = new PrefabGUID(1685869681); public static readonly PrefabGUID UISequenceMapping = new PrefabGUID(-1080364537); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Far_Rear = new PrefabGUID(-1133885917); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Far_RearClear = new PrefabGUID(-271805518); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Left = new PrefabGUID(-1116643482); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_LeftClear = new PrefabGUID(1415229498); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Rear = new PrefabGUID(-529019452); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_RearClear = new PrefabGUID(366589782); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Right = new PrefabGUID(837772421); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_RightClear = new PrefabGUID(1657289916); public static readonly PrefabGUID Undead_ArenaChampion_AwakeBuff = new PrefabGUID(-74018337); public static readonly PrefabGUID Undead_ArenaChampion_CenterPoint = new PrefabGUID(-288427482); public static readonly PrefabGUID Undead_ArenaChampion_CorpseBuff = new PrefabGUID(-485230865); public static readonly PrefabGUID Undead_BishopOfDeath_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-60073400); public static readonly PrefabGUID Undead_BishopOfShadows_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-2078867449); public static readonly PrefabGUID Undead_CursedSmith_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1484351866); public static readonly PrefabGUID Undead_Priest_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1613946623); public static readonly PrefabGUID Unholy_Parry_MoveSpeedCurve = new PrefabGUID(-936177266); public static readonly PrefabGUID Unholy_Shared_Minion_DeathKnight_Buff = new PrefabGUID(1352304839); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_LifetimeBuff = new PrefabGUID(-1142502435); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_ShieldBuff = new PrefabGUID(1033104052); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_SpawnBuff = new PrefabGUID(-1243983303); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_SpawnBuff_ExtendedLifeTime = new PrefabGUID(-1475112620); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_VeilOfBones_ExplodeSpawner = new PrefabGUID(-1049101267); public static readonly PrefabGUID Unholy_Vampire_Buff_Agony = new PrefabGUID(1025643444); public static readonly PrefabGUID Unholy_Vampire_Buff_Amplify = new PrefabGUID(1936344180); public static readonly PrefabGUID Unholy_Vampire_Buff_Bane = new PrefabGUID(1688799287); public static readonly PrefabGUID Unholy_Vampire_Buff_Condemn = new PrefabGUID(-325758519); public static readonly PrefabGUID UnholyDashXCurve = new PrefabGUID(-1923578463); public static readonly PrefabGUID UnholyDashXCurve2 = new PrefabGUID(916592701); public static readonly PrefabGUID UnholySpellSchoolAsset = new PrefabGUID(232985690); public static readonly PrefabGUID Unit_StatsSettings_Health_Default = new PrefabGUID(-1724763162); public static readonly PrefabGUID Unit_StatsSettings_Physical_Default = new PrefabGUID(2131874575); public static readonly PrefabGUID Unit_StatsSettings_Resource_Default = new PrefabGUID(1060413001); public static readonly PrefabGUID Unit_StatsSettings_Siege_Default = new PrefabGUID(1476468719); public static readonly PrefabGUID Unit_StatsSettings_Spell_Default = new PrefabGUID(1644963370); public static readonly PrefabGUID UnitSlowDebuffCurve = new PrefabGUID(243528966); public static readonly PrefabGUID UnitTeam = new PrefabGUID(-1434736744); public static readonly PrefabGUID USB_Undead_Skeleton_EarthCrawl = new PrefabGUID(-1500949089); public static readonly PrefabGUID User = new PrefabGUID(1420623103); public static readonly PrefabGUID UserCommandData = new PrefabGUID(1123697976); public static readonly PrefabGUID UserMapZoneState = new PrefabGUID(1781887812); public static readonly PrefabGUID Vampire_FeedAndBiteTravel_Curve = new PrefabGUID(-2143375178); public static readonly PrefabGUID Vampire_FeedOnTarget_Curve = new PrefabGUID(1181622316); public static readonly PrefabGUID Vampire_ShadowDash = new PrefabGUID(-1554194071); public static readonly PrefabGUID Vampire_Sword_Shockwave_InAirTravelStrike = new PrefabGUID(1608120768); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01 = new PrefabGUID(858385739); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01_Damaged = new PrefabGUID(-630032924); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01_Disabled = new PrefabGUID(-1504743076); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01_Phased = new PrefabGUID(-708719462); public static readonly PrefabGUID VampireCastlePalisade01Pillar01 = new PrefabGUID(-1663784884); public static readonly PrefabGUID VampireCastlePalisade01Pillar01_Damaged = new PrefabGUID(-966519832); public static readonly PrefabGUID VampireCastlePalisade01Pillar01_Disabled = new PrefabGUID(-847349700); public static readonly PrefabGUID VampireCastlePalisade01Pillar01_Phased = new PrefabGUID(-925475920); public static readonly PrefabGUID VampireCastlePalisade01Wall01 = new PrefabGUID(-1548170185); public static readonly PrefabGUID VampireCastlePalisade01Wall01_Damaged = new PrefabGUID(-1873366280); public static readonly PrefabGUID VampireCastlePalisade01Wall01_Disabled = new PrefabGUID(1772802474); public static readonly PrefabGUID VampireCastlePalisade01Wall01_Phased = new PrefabGUID(-163928352); public static readonly PrefabGUID VampireCoffin_ScreenEffect_Curve = new PrefabGUID(1720163670); public static readonly PrefabGUID VampireCoffinRespawnCurve = new PrefabGUID(1587252042); public static readonly PrefabGUID VampireCoffinRespawnHeightCurve = new PrefabGUID(-1746195253); public static readonly PrefabGUID VampireCombatPreset_ArenaChampion = new PrefabGUID(714470338); public static readonly PrefabGUID VampireCombatPreset_Dantos = new PrefabGUID(372965508); public static readonly PrefabGUID VampireCombatPreset_Erwin = new PrefabGUID(-1204310398); public static readonly PrefabGUID VampireCombatPreset_Megara_Brutal = new PrefabGUID(-2036758413); public static readonly PrefabGUID VampireCombatPreset_Megara_Normal = new PrefabGUID(2066683398); public static readonly PrefabGUID VampireCombatPreset_ProgTest = new PrefabGUID(-1320537872); public static readonly PrefabGUID VampireCombatPreset_Quincy = new PrefabGUID(238761445); public static readonly PrefabGUID VampireCombatPreset_T05_5_ArenaChampion = new PrefabGUID(690575617); public static readonly PrefabGUID VampireCombatPreset_T05_Fabian = new PrefabGUID(-2110483094); public static readonly PrefabGUID VampireCombatPreset_T06_Iron_Rogue = new PrefabGUID(-1925880109); public static readonly PrefabGUID VampireCombatPreset_T07_BlackfangBosses = new PrefabGUID(531846054); public static readonly PrefabGUID VampireCombatPreset_T07_Blackfangbosses_Brutal = new PrefabGUID(888281538); public static readonly PrefabGUID VampireCombatPreset_T07_Blackfangbosses_Normal = new PrefabGUID(-57104557); public static readonly PrefabGUID VampireCombatPreset_T08_ShardBossReadyHighPower = new PrefabGUID(642543173); public static readonly PrefabGUID VampireCombatPreset_T08_ShardBossReadyLowPower = new PrefabGUID(1551347159); public static readonly PrefabGUID VampireCombatPreset_T08_ShardBossReadyLowPower_ALREADY_EXISTS_2 = new PrefabGUID(1881465201); public static readonly PrefabGUID VampireCombatPreset_T08_Valyr = new PrefabGUID(-1985007569); public static readonly PrefabGUID VampireCombatPreset_T09_Dracua_JeremysSorrow = new PrefabGUID(1997194606); public static readonly PrefabGUID VampireCombatPreset_T09_Dracula = new PrefabGUID(813166544); public static readonly PrefabGUID VampireCombatPreset_T09_Dracula_Brute_Warrior = new PrefabGUID(1098118212); public static readonly PrefabGUID VampireCombatPresetCollection = new PrefabGUID(1093894748); public static readonly PrefabGUID VampireDeathBuff = new PrefabGUID(2064583457); public static readonly PrefabGUID VampireDoor01_Arena01 = new PrefabGUID(-1664673066); public static readonly PrefabGUID VampireDoor01_DefaultSet01 = new PrefabGUID(-182000134); public static readonly PrefabGUID VampireDoor01_DefaultSet01_Damaged = new PrefabGUID(-135329240); public static readonly PrefabGUID VampireDoor01_DefaultSet01_dark = new PrefabGUID(948113200); public static readonly PrefabGUID VampireDoor01_DefaultSet01_Disabled = new PrefabGUID(-1845561276); public static readonly PrefabGUID VampireDoor01_DefaultSet01_grey = new PrefabGUID(1480508823); public static readonly PrefabGUID VampireDoor01_DefaultSet01_light = new PrefabGUID(-2004402091); public static readonly PrefabGUID VampireDoor01_DefaultSet01_Phased = new PrefabGUID(1557418686); public static readonly PrefabGUID VampireDoor01_Gloomrot01 = new PrefabGUID(-1325694430); public static readonly PrefabGUID VampireDoor01_Prison01 = new PrefabGUID(-1399132287); public static readonly PrefabGUID VampireDoor01_ProjectK01 = new PrefabGUID(-624991747); public static readonly PrefabGUID VampireDoor01_ProjectMK01 = new PrefabGUID(1422393122); public static readonly PrefabGUID VampireDoor01_RedStone01 = new PrefabGUID(-1927153092); public static readonly PrefabGUID VampireDoor01_Royal01 = new PrefabGUID(-530490836); public static readonly PrefabGUID VampireDoor01_Royal02 = new PrefabGUID(-1683920408); public static readonly PrefabGUID VampireDoor01_Stable01 = new PrefabGUID(43317295); public static readonly PrefabGUID VampireDoor01_Stable02 = new PrefabGUID(-1840456597); public static readonly PrefabGUID VampireDoor01_StrongbladeDLC01 = new PrefabGUID(-239786081); public static readonly PrefabGUID VampireDoor01_WhiteStone01 = new PrefabGUID(-549027912); public static readonly PrefabGUID VampireDoor01_WhiteWood01 = new PrefabGUID(-1408271808); public static readonly PrefabGUID VampireDoor01_Wood01 = new PrefabGUID(1242387827); public static readonly PrefabGUID VampireFemale_AccessoryCollection = new PrefabGUID(-1735363948); public static readonly PrefabGUID VampireFemale_FaceCollection = new PrefabGUID(908841294); public static readonly PrefabGUID VampireFemale_FeatureCollection = new PrefabGUID(-27981505); public static readonly PrefabGUID VampireFemale_HairCollection = new PrefabGUID(1002422866); public static readonly PrefabGUID VampireFemale_Ragdoll100_Prefab = new PrefabGUID(273893200); public static readonly PrefabGUID VampireFemale_Ragdoll130_Prefab = new PrefabGUID(-1755022845); public static readonly PrefabGUID VampireHunter_Stake_Curve = new PrefabGUID(1143898865); public static readonly PrefabGUID VampireMale_AccessoryCollection = new PrefabGUID(-213827181); public static readonly PrefabGUID VampireMale_CryptKeeper_Ragdoll250_Prefab = new PrefabGUID(1722833435); public static readonly PrefabGUID VampireMale_FaceCollection = new PrefabGUID(1221615766); public static readonly PrefabGUID VampireMale_FeatureCollection = new PrefabGUID(-1329427468); public static readonly PrefabGUID VampireMale_HairCollection = new PrefabGUID(194447506); public static readonly PrefabGUID VampireMale_Ragdoll100_Prefab = new PrefabGUID(1704006817); public static readonly PrefabGUID VampireMale_Ragdoll125_Prefab = new PrefabGUID(1149271738); public static readonly PrefabGUID VampireMale_Ragdoll125_Prefab_ALREADY_EXISTS_2 = new PrefabGUID(1470413468); public static readonly PrefabGUID VampireMale_Ragdoll130_Prefab = new PrefabGUID(-1658877559); public static readonly PrefabGUID VampireMale_Ragdoll140_Prefab = new PrefabGUID(1255678030); public static readonly PrefabGUID VampireMale_Ragdoll150_Prefab = new PrefabGUID(-1102447151); public static readonly PrefabGUID VampirePillar01_ArenaSet01_Clean01 = new PrefabGUID(-973436518); public static readonly PrefabGUID VampirePillar01_CastleStoneSet01 = new PrefabGUID(2080775517); public static readonly PrefabGUID VampirePillar01_CastleStoneSet02 = new PrefabGUID(120012700); public static readonly PrefabGUID VampirePillar01_CastleStoneSet03 = new PrefabGUID(914813267); public static readonly PrefabGUID VampirePillar01_ClassicalSet01_Clean01 = new PrefabGUID(-1500538790); public static readonly PrefabGUID VampirePillar01_ClassicalSet02_Clean01 = new PrefabGUID(346794081); public static readonly PrefabGUID VampirePillar01_ClassicalSet03_Clean01 = new PrefabGUID(-1428395030); public static readonly PrefabGUID VampirePillar01_CordialSet01_Clean = new PrefabGUID(-14649797); public static readonly PrefabGUID VampirePillar01_DefaultSet01 = new PrefabGUID(-611790539); public static readonly PrefabGUID VampirePillar01_DefaultSet01_Damaged = new PrefabGUID(949708339); public static readonly PrefabGUID VampirePillar01_DefaultSet01_Disabled = new PrefabGUID(989004673); public static readonly PrefabGUID VampirePillar01_DefaultSet01_Phased = new PrefabGUID(-1900362364); public static readonly PrefabGUID VampirePillar01_DLCGloomrotSet01 = new PrefabGUID(-1042130541); public static readonly PrefabGUID VampirePillar01_DLCRoyal01 = new PrefabGUID(-2123536347); public static readonly PrefabGUID VampirePillar01_DLCRoyal02 = new PrefabGUID(-1297321647); public static readonly PrefabGUID VampirePillar01_ImperiousSet01_Clean = new PrefabGUID(1532022974); public static readonly PrefabGUID VampirePillar01_PrisonSet01_BedAndBall = new PrefabGUID(-231359674); public static readonly PrefabGUID VampirePillar01_PrisonSet01_Clean = new PrefabGUID(-1939143968); public static readonly PrefabGUID VampirePillar01_PrisonSet01_Restraints = new PrefabGUID(-1236942574); public static readonly PrefabGUID VampirePillar01_ProjectK01 = new PrefabGUID(-2134940579); public static readonly PrefabGUID VampirePillar01_ProjectMK01 = new PrefabGUID(260442587); public static readonly PrefabGUID VampirePillar01_StablePanelSet01_Pillar01 = new PrefabGUID(-1152326744); public static readonly PrefabGUID VampirePillar01_StablePanelSet02_Pillar01 = new PrefabGUID(426104015); public static readonly PrefabGUID VampirePillar01_StrongbladeDLC01_Pillar01 = new PrefabGUID(-472620931); public static readonly PrefabGUID VampirePillar01_VampireWall01_PrisonSet01_Clean = new PrefabGUID(-1903904042); public static readonly PrefabGUID VampirePillar01_WoodPanelSet01_Wood = new PrefabGUID(1491724163); public static readonly PrefabGUID VampirePillar01_WorkshopSet01_Clean = new PrefabGUID(-1218422370); public static readonly PrefabGUID VampirePillar01_WorkshopSet01_ToolStorage = new PrefabGUID(2125723396); public static readonly PrefabGUID VampireWall01_Arena01 = new PrefabGUID(655834680); public static readonly PrefabGUID VampireWall01_Arena02 = new PrefabGUID(1405350384); public static readonly PrefabGUID VampireWall01_Arena03 = new PrefabGUID(-2120946028); public static readonly PrefabGUID VampireWall01_CastleStoneSet01 = new PrefabGUID(1499316381); public static readonly PrefabGUID VampireWall01_CastleStoneSet02 = new PrefabGUID(-1085602042); public static readonly PrefabGUID VampireWall01_CastleStoneSet03 = new PrefabGUID(-1143867394); public static readonly PrefabGUID VampireWall01_ClassicalSet01_Clean01 = new PrefabGUID(2010347868); public static readonly PrefabGUID VampireWall01_ClassicalSet01_Clean02 = new PrefabGUID(1331283909); public static readonly PrefabGUID VampireWall01_ClassicalSet02_Clean01 = new PrefabGUID(-1664696103); public static readonly PrefabGUID VampireWall01_ClassicalSet02_Clean02 = new PrefabGUID(-763940057); public static readonly PrefabGUID VampireWall01_ClassicalSet03_Clean01 = new PrefabGUID(746766420); public static readonly PrefabGUID VampireWall01_ClassicalSet03_Clean02 = new PrefabGUID(285972056); public static readonly PrefabGUID VampireWall01_CordialSet01_Clean = new PrefabGUID(1319160812); public static readonly PrefabGUID VampireWall01_CordialSet01_Flourish = new PrefabGUID(-1508447031); public static readonly PrefabGUID VampireWall01_CordialSet01_Wallpaper = new PrefabGUID(537497917); public static readonly PrefabGUID VampireWall01_DefaultSet01 = new PrefabGUID(293797836); public static readonly PrefabGUID VampireWall01_DefaultSet01_Damaged = new PrefabGUID(345199974); public static readonly PrefabGUID VampireWall01_DefaultSet01_Disabled = new PrefabGUID(590871980); public static readonly PrefabGUID VampireWall01_DefaultSet01_Phased = new PrefabGUID(-1941657071); public static readonly PrefabGUID VampireWall01_DLCGloomRotSet01 = new PrefabGUID(1440351233); public static readonly PrefabGUID VampireWall01_DLCGloomRotSet02 = new PrefabGUID(1356131645); public static readonly PrefabGUID VampireWall01_DLCRoyal01 = new PrefabGUID(-456696376); public static readonly PrefabGUID VampireWall01_DLCRoyal02 = new PrefabGUID(-2045027619); public static readonly PrefabGUID VampireWall01_ImperiousSet01_Clean = new PrefabGUID(-663694947); public static readonly PrefabGUID VampireWall01_ImperiousSet01_FullWallpaper01 = new PrefabGUID(-1601646507); public static readonly PrefabGUID VampireWall01_ImperiousSet01_HalfWallpaper01 = new PrefabGUID(373311331); public static readonly PrefabGUID VampireWall01_PrisonSet01_BedAndBall = new PrefabGUID(-589318900); public static readonly PrefabGUID VampireWall01_PrisonSet01_Clean = new PrefabGUID(-1647994514); public static readonly PrefabGUID VampireWall01_PrisonSet01_Restraints = new PrefabGUID(-2093445556); public static readonly PrefabGUID VampireWall01_ProjectK_Clean = new PrefabGUID(-1480971767); public static readonly PrefabGUID VampireWall01_ProjectK_Corners = new PrefabGUID(1889337971); public static readonly PrefabGUID VampireWall01_ProjectK_Left = new PrefabGUID(-2047577592); public static readonly PrefabGUID VampireWall01_ProjectK_Middle = new PrefabGUID(1323056749); public static readonly PrefabGUID VampireWall01_ProjectK_Right = new PrefabGUID(64517879); public static readonly PrefabGUID VampireWall01_ProjectMK01 = new PrefabGUID(682544750); public static readonly PrefabGUID VampireWall01_StablePanelSet01_Wall01 = new PrefabGUID(995368482); public static readonly PrefabGUID VampireWall01_StablePanelSet01_Wall02 = new PrefabGUID(1625361760); public static readonly PrefabGUID VampireWall01_StablePanelSet02_Wall01 = new PrefabGUID(-1922465722); public static readonly PrefabGUID VampireWall01_StablePanelSet02_Wall02 = new PrefabGUID(-1707075637); public static readonly PrefabGUID VampireWall01_StrongbladeDLC01_Wall01 = new PrefabGUID(2131821852); public static readonly PrefabGUID VampireWall01_StrongbladeDLC01_Wall02 = new PrefabGUID(764548442); public static readonly PrefabGUID VampireWall01_StrongbladeDLC01_Wall03 = new PrefabGUID(-1144861346); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Halloween01 = new PrefabGUID(1033044541); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Halloween02 = new PrefabGUID(-1382341633); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Plaster = new PrefabGUID(603649283); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Wood = new PrefabGUID(-192595870); public static readonly PrefabGUID VampireWall01_WorkshopSet01_Clean = new PrefabGUID(-895869538); public static readonly PrefabGUID VampireWall01_WorkshopSet01_ToolStorage = new PrefabGUID(118705319); public static readonly PrefabGUID VampireWindow01_Arena01 = new PrefabGUID(-547118723); public static readonly PrefabGUID VampireWindow01_CastleStoneSet01 = new PrefabGUID(1831197016); public static readonly PrefabGUID VampireWindow01_CastleStoneSet02 = new PrefabGUID(-272781308); public static readonly PrefabGUID VampireWindow01_CastleStoneSet03 = new PrefabGUID(-960517992); public static readonly PrefabGUID VampireWindow01_ClassicalSet01_Clean01 = new PrefabGUID(472325953); public static readonly PrefabGUID VampireWindow01_ClassicalSet02_Clean01 = new PrefabGUID(1382482552); public static readonly PrefabGUID VampireWindow01_ClassicalSet03_Clean01 = new PrefabGUID(-1599029350); public static readonly PrefabGUID VampireWindow01_CordialSet01_Clean = new PrefabGUID(778925841); public static readonly PrefabGUID VampireWindow01_CordialSet01_Flourish = new PrefabGUID(-1164166222); public static readonly PrefabGUID VampireWindow01_CordialSet01_Wallpaper = new PrefabGUID(1295626721); public static readonly PrefabGUID VampireWindow01_DefaultSet01 = new PrefabGUID(-2065740574); public static readonly PrefabGUID VampireWindow01_DefaultSet01_Damaged = new PrefabGUID(-500804411); public static readonly PrefabGUID VampireWindow01_DefaultSet01_Disabled = new PrefabGUID(-1243659174); public static readonly PrefabGUID VampireWindow01_DefaultSet01_Phased = new PrefabGUID(-1411499442); public static readonly PrefabGUID VampireWindow01_DLCGloomrotSet01 = new PrefabGUID(1298228157); public static readonly PrefabGUID VampireWindow01_DLCGloomrotSet02 = new PrefabGUID(2084577439); public static readonly PrefabGUID VampireWindow01_DLCRoyal01 = new PrefabGUID(-1814897110); public static readonly PrefabGUID VampireWindow01_DLCRoyal02 = new PrefabGUID(541135977); public static readonly PrefabGUID VampireWindow01_ImperiousSet01_Clean = new PrefabGUID(-443620464); public static readonly PrefabGUID VampireWindow01_PrisonSet01_Clean = new PrefabGUID(-1808416110); public static readonly PrefabGUID VampireWindow01_ProjectK_Clean = new PrefabGUID(-1200553064); public static readonly PrefabGUID VampireWindow01_ProjectK_Corners = new PrefabGUID(-1480062004); public static readonly PrefabGUID VampireWindow01_ProjectK_Left = new PrefabGUID(-1213053681); public static readonly PrefabGUID VampireWindow01_ProjectK_Middle = new PrefabGUID(1265992483); public static readonly PrefabGUID VampireWindow01_ProjectK_Right = new PrefabGUID(-1476535572); public static readonly PrefabGUID VampireWindow01_ProjectMK01 = new PrefabGUID(-829389798); public static readonly PrefabGUID VampireWindow01_Stable01 = new PrefabGUID(343121976); public static readonly PrefabGUID VampireWindow01_Stable02 = new PrefabGUID(-762867208); public static readonly PrefabGUID VampireWindow01_StrongbladeDLC01 = new PrefabGUID(-999272779); public static readonly PrefabGUID VampireWindow01_WoodPanelSet01_Wood = new PrefabGUID(-1038864770); public static readonly PrefabGUID VampireWindow01_WorkshopSet01_Clean = new PrefabGUID(936421221); public static readonly PrefabGUID Vermin_DireRat_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1766333927); public static readonly PrefabGUID VFXReplacementSettings = new PrefabGUID(-1644427455); public static readonly PrefabGUID VHunter_Castleman_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1022229288); public static readonly PrefabGUID VHunter_Leader_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1892762278); public static readonly PrefabGUID VIB_AbsorbedDamage = new PrefabGUID(50307623); public static readonly PrefabGUID VIB_Aftershock = new PrefabGUID(841225492); public static readonly PrefabGUID VIB_Aftershock_Intense = new PrefabGUID(39532577); public static readonly PrefabGUID VIB_AftershockCast = new PrefabGUID(1310807762); public static readonly PrefabGUID VIB_ArmyOfTheDeadCast = new PrefabGUID(-303080652); public static readonly PrefabGUID VIB_AxePrimaryAttack = new PrefabGUID(1366223991); public static readonly PrefabGUID VIB_Bear_Dire_AreaAttack = new PrefabGUID(393329485); public static readonly PrefabGUID VIB_BloodBloodFountain_Cast = new PrefabGUID(726321680); public static readonly PrefabGUID VIB_BloodBloodFountain_Cast_ALREADY_EXISTS_2 = new PrefabGUID(442230224); public static readonly PrefabGUID VIB_BloodBloodFountain_Execute = new PrefabGUID(350368292); public static readonly PrefabGUID VIB_BloodBloodFountain_Execute_ALREADY_EXISTS_2 = new PrefabGUID(-911171653); public static readonly PrefabGUID VIB_BloodBloodFountain_GroundImpact = new PrefabGUID(-656198061); public static readonly PrefabGUID VIB_BloodBloodFountain_GroundImpact_ALREADY_EXISTS_2 = new PrefabGUID(1963086248); public static readonly PrefabGUID VIB_BloodBloodRage = new PrefabGUID(-95006034); public static readonly PrefabGUID VIB_BloodBloodRage_ALREADY_EXISTS_2 = new PrefabGUID(-79265133); public static readonly PrefabGUID VIB_BloodBloodRite = new PrefabGUID(-1743223727); public static readonly PrefabGUID VIB_BloodBloodRite_ALREADY_EXISTS_2 = new PrefabGUID(1087088660); public static readonly PrefabGUID VIB_BloodCrimsonBeam = new PrefabGUID(-81259260); public static readonly PrefabGUID VIB_BloodCrimsonBeam_ALREADY_EXISTS_2 = new PrefabGUID(-1571368937); public static readonly PrefabGUID VIB_BloodCrimsonChanneling = new PrefabGUID(1287826588); public static readonly PrefabGUID VIB_BloodCrimsonChanneling_ALREADY_EXISTS_2 = new PrefabGUID(-1504973146); public static readonly PrefabGUID VIB_BloodHeartStrike = new PrefabGUID(-475126065); public static readonly PrefabGUID VIB_BloodHeartStrike_ALREADY_EXISTS_2 = new PrefabGUID(-1478014370); public static readonly PrefabGUID VIB_BloodHeartStrikeCast = new PrefabGUID(-1673917211); public static readonly PrefabGUID VIB_BloodHeartStrikeCast_ALREADY_EXISTS_2 = new PrefabGUID(-1625831245); public static readonly PrefabGUID VIB_BloodHeartStrikePhase = new PrefabGUID(1967208797); public static readonly PrefabGUID VIB_BloodHeartStrikePhase_ALREADY_EXISTS_2 = new PrefabGUID(-1508180817); public static readonly PrefabGUID VIB_BloodShadowBolt = new PrefabGUID(457709150); public static readonly PrefabGUID VIB_BloodShadowBolt_ALREADY_EXISTS_2 = new PrefabGUID(839180761); public static readonly PrefabGUID VIB_Build_Dismantle = new PrefabGUID(1166933674); public static readonly PrefabGUID VIB_Build_Success = new PrefabGUID(-737531618); public static readonly PrefabGUID VIB_BuildFail = new PrefabGUID(-1272435820); public static readonly PrefabGUID VIB_ChaosBarrierCast = new PrefabGUID(-853925526); public static readonly PrefabGUID VIB_ChaosBarrierCast_ALREADY_EXISTS_2 = new PrefabGUID(-1005195532); public static readonly PrefabGUID VIB_Dracula_BloodCurse_Buff = new PrefabGUID(-1422738556); public static readonly PrefabGUID VIB_Feed = new PrefabGUID(450624679); public static readonly PrefabGUID VIB_Feed_VBlood = new PrefabGUID(1482108190); public static readonly PrefabGUID VIB_FeedCancel = new PrefabGUID(-71862135); public static readonly PrefabGUID VIB_FeedComplete = new PrefabGUID(-790413713); public static readonly PrefabGUID VIB_FeedComplete_VBlood = new PrefabGUID(1486426292); public static readonly PrefabGUID VIB_Generic_Buff = new PrefabGUID(-831678517); public static readonly PrefabGUID VIB_Generic_Buff_InstantFeedback = new PrefabGUID(131225857); public static readonly PrefabGUID VIB_Generic_Cast_ExtraLarge = new PrefabGUID(-1791408242); public static readonly PrefabGUID VIB_Generic_Cast_Large = new PrefabGUID(1355042556); public static readonly PrefabGUID VIB_Generic_Cast_Medium = new PrefabGUID(-454702334); public static readonly PrefabGUID VIB_Generic_Cast_Small = new PrefabGUID(1695025556); public static readonly PrefabGUID VIB_Generic_Channel = new PrefabGUID(-1022326766); public static readonly PrefabGUID VIB_Generic_Dash = new PrefabGUID(-236946353); public static readonly PrefabGUID VIB_Generic_Dash_Strong = new PrefabGUID(1375266325); public static readonly PrefabGUID VIB_GreatswordDeathFromAboveCast = new PrefabGUID(-2108480705); public static readonly PrefabGUID VIB_GreatswordDeathFromAboveHit = new PrefabGUID(-305469766); public static readonly PrefabGUID VIB_GreatswordGreatcleaverCast = new PrefabGUID(1007067148); public static readonly PrefabGUID VIB_GreatswordGreatcleaverExecute = new PrefabGUID(1656847560); public static readonly PrefabGUID VIB_GreatswordGreatcleaverHit = new PrefabGUID(1114485057); public static readonly PrefabGUID VIB_HitFeedback_Large = new PrefabGUID(2094699026); public static readonly PrefabGUID VIB_HitFeedback_Large_Counters = new PrefabGUID(-1490582370); public static readonly PrefabGUID VIB_HitFeedback_Medium = new PrefabGUID(310756637); public static readonly PrefabGUID VIB_HitFeedback_Medium_LightningTendrils = new PrefabGUID(381415690); public static readonly PrefabGUID VIB_HitFeedback_Medium_Soft = new PrefabGUID(-1381245347); public static readonly PrefabGUID VIB_HitFeedback_Medium_ThousandStabs = new PrefabGUID(308557231); public static readonly PrefabGUID VIB_HitFeedback_Small = new PrefabGUID(-1928983488); public static readonly PrefabGUID VIB_HitFeedback_Small_Global = new PrefabGUID(1893669721); public static readonly PrefabGUID VIB_HitFeedback_Small_HalfAmp = new PrefabGUID(1166623177); public static readonly PrefabGUID VIB_HowlingReaper = new PrefabGUID(-2048977927); public static readonly PrefabGUID VIB_LightningTyphoon = new PrefabGUID(-1595645716); public static readonly PrefabGUID VIB_LongbowGuidedArrow = new PrefabGUID(2083928003); public static readonly PrefabGUID VIB_LongbowMultishot = new PrefabGUID(-2060931672); public static readonly PrefabGUID VIB_LongbowPrimaryAttack = new PrefabGUID(-1959512215); public static readonly PrefabGUID VIB_MaceCrushingBlow = new PrefabGUID(-32415313); public static readonly PrefabGUID VIB_MacePrimaryAttack = new PrefabGUID(-21382791); public static readonly PrefabGUID VIB_MaceSmack = new PrefabGUID(1156463602); public static readonly PrefabGUID VIB_PlayerAttack_Big_Medium = new PrefabGUID(-310505666); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Medium = new PrefabGUID(-1501107426); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Strong = new PrefabGUID(-1849599800); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak = new PrefabGUID(1695384546); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak_Fast = new PrefabGUID(960496717); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak_HeavyAttacks = new PrefabGUID(-1837310549); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak_NoFollowThrough = new PrefabGUID(-295342306); public static readonly PrefabGUID VIB_Quake_ArticLeap = new PrefabGUID(1473036527); public static readonly PrefabGUID VIB_Quake_Large = new PrefabGUID(-1274893552); public static readonly PrefabGUID VIB_Quake_Large_Local = new PrefabGUID(1713070388); public static readonly PrefabGUID VIB_Quake_Medium = new PrefabGUID(-525427564); public static readonly PrefabGUID VIB_Quake_Medium_Local = new PrefabGUID(1562432613); public static readonly PrefabGUID VIB_Quake_Medium_Short = new PrefabGUID(496289672); public static readonly PrefabGUID VIB_Quake_Small = new PrefabGUID(370045079); public static readonly PrefabGUID VIB_Quake_Small_Local = new PrefabGUID(1306221601); public static readonly PrefabGUID VIB_Quake_Small_Multitrigger = new PrefabGUID(119828308); public static readonly PrefabGUID VIB_Quake_Small_Short = new PrefabGUID(-883322196); public static readonly PrefabGUID VIB_Quake_Small_Short_Local = new PrefabGUID(-659786264); public static readonly PrefabGUID VIB_ReleaseTarget = new PrefabGUID(458616084); public static readonly PrefabGUID VIB_SanguoneCoilCast = new PrefabGUID(1228950823); public static readonly PrefabGUID VIB_SanguoneCoilCast_ALREADY_EXISTS_2 = new PrefabGUID(-521152517); public static readonly PrefabGUID VIB_StormRagingTempestCast = new PrefabGUID(-1201513108); public static readonly PrefabGUID VIB_StormRagingTempestCast_ALREADY_EXISTS_2 = new PrefabGUID(-946366013); public static readonly PrefabGUID VIB_SwordPrimaryHit = new PrefabGUID(-2046525743); public static readonly PrefabGUID VIB_SwordShockwave = new PrefabGUID(1806794761); public static readonly PrefabGUID VIB_SwordWhirlwind = new PrefabGUID(1839282153); public static readonly PrefabGUID VIB_TakeDamageBig = new PrefabGUID(1517806806); public static readonly PrefabGUID VIB_TakeDamageMedium = new PrefabGUID(1421214633); public static readonly PrefabGUID VIB_TakeDamageSmall = new PrefabGUID(-489989865); public static readonly PrefabGUID VIB_TakeSunDamage = new PrefabGUID(1606091480); public static readonly PrefabGUID VIB_VeilOfBloodCast = new PrefabGUID(-1112255503); public static readonly PrefabGUID VIB_VeilOfShadowCast = new PrefabGUID(1012519963); public static readonly PrefabGUID VIB_WhipDashCast = new PrefabGUID(-1501894495); public static readonly PrefabGUID VIB_WhipDashExecute = new PrefabGUID(-1534324920); public static readonly PrefabGUID VIB_WhipEntangleCast = new PrefabGUID(1302471012); public static readonly PrefabGUID VIB_WhipEntangleExecute = new PrefabGUID(364215368); public static readonly PrefabGUID VIB_WhipEntangleHit = new PrefabGUID(1233123826); public static readonly PrefabGUID VIB_WhipPrimaryCast = new PrefabGUID(-1987947128); public static readonly PrefabGUID VIB_WhipPrimaryExecute = new PrefabGUID(-2000538427); public static readonly PrefabGUID VIB_WhipPrimaryHit = new PrefabGUID(-153087556); public static readonly PrefabGUID VIB_WhipPrimaryHit_Heavy = new PrefabGUID(-1252832245); public static readonly PrefabGUID Villager_CursedWanderer_VBlood_Emote_OnAggro = new PrefabGUID(1987604274); public static readonly PrefabGUID Villager_Tailor_VBlood_Emote_OnAggro = new PrefabGUID(422225431); public static readonly PrefabGUID VM_CRAPPY_Human_Female_05_DONT_USE = new PrefabGUID(-1438162738); public static readonly PrefabGUID VM_Critter_Bull = new PrefabGUID(2108135722); public static readonly PrefabGUID VM_Critter_Cow = new PrefabGUID(675809511); public static readonly PrefabGUID VM_Critter_Pig = new PrefabGUID(-543250863); public static readonly PrefabGUID VM_Critter_Pig_Small = new PrefabGUID(36554183); public static readonly PrefabGUID VM_Critter_Ram = new PrefabGUID(1435246759); public static readonly PrefabGUID VM_Critter_Sheep = new PrefabGUID(-1952885669); public static readonly PrefabGUID VM_Gloom_Rot_Mechanical_Walker_Big = new PrefabGUID(-1177921136); public static readonly PrefabGUID VM_Gloom_Rot_Mechanical_Walker_Small = new PrefabGUID(-2127522178); public static readonly PrefabGUID VM_Gloom_Rot_Mutant_Flesh_Golem = new PrefabGUID(787797552); public static readonly PrefabGUID VM_Gloom_Rot_Mutant_Rat_Horror = new PrefabGUID(326783977); public static readonly PrefabGUID VM_Gloom_Rot_Mutant_Spitter = new PrefabGUID(-1345869435); public static readonly PrefabGUID VM_Golem_Spectral = new PrefabGUID(-1741666185); public static readonly PrefabGUID VM_Human_Bellringer_Villager_Male_D = new PrefabGUID(1358996913); public static readonly PrefabGUID VM_Human_Cultist = new PrefabGUID(927473112); public static readonly PrefabGUID VM_Human_Generic_Female_01 = new PrefabGUID(-1905285576); public static readonly PrefabGUID VM_Human_Generic_Female_01_Attack_Chance_Lowered = new PrefabGUID(795744305); public static readonly PrefabGUID VM_Human_Generic_Female_01_Gloomrot_Mask = new PrefabGUID(-1533581306); public static readonly PrefabGUID VM_Human_Generic_Female_01_Helmet_Old = new PrefabGUID(1278045887); public static readonly PrefabGUID VM_Human_Generic_Female_02 = new PrefabGUID(-1480471379); public static readonly PrefabGUID VM_Human_Generic_Female_02_Gloomrot_Mask = new PrefabGUID(2045025762); public static readonly PrefabGUID VM_Human_Generic_Female_02_Helmet_Old = new PrefabGUID(-816919307); public static readonly PrefabGUID VM_Human_Generic_Female_03 = new PrefabGUID(322846758); public static readonly PrefabGUID VM_Human_Generic_Female_03_Gloomrot_Mask = new PrefabGUID(499840120); public static readonly PrefabGUID VM_Human_Generic_Female_03_Helmet_Old = new PrefabGUID(1791830084); public static readonly PrefabGUID VM_Human_Generic_Female_04 = new PrefabGUID(1504562014); public static readonly PrefabGUID VM_Human_Generic_Female_04_Archer_Attack_Chance_Lowered = new PrefabGUID(-969080617); public static readonly PrefabGUID VM_Human_Generic_Female_04_Gloomrot_Mask = new PrefabGUID(632783050); public static readonly PrefabGUID VM_Human_Generic_Female_04_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(-2006512486); public static readonly PrefabGUID VM_Human_Generic_Female_04_Helmet_Old = new PrefabGUID(-1030435318); public static readonly PrefabGUID VM_Human_Generic_Female_05_BAD_DONT_USE = new PrefabGUID(-1258334676); public static readonly PrefabGUID VM_Human_Generic_Female_06 = new PrefabGUID(1241166845); public static readonly PrefabGUID VM_Human_Generic_Female_06_Gloomrot_Mask = new PrefabGUID(-1115600416); public static readonly PrefabGUID VM_Human_Generic_Female_06_Helmet_Old = new PrefabGUID(-690106187); public static readonly PrefabGUID VM_Human_Generic_Female_07 = new PrefabGUID(204186332); public static readonly PrefabGUID VM_Human_Generic_Female_07_Attack_Chance_Lowered = new PrefabGUID(1746608302); public static readonly PrefabGUID VM_Human_Generic_Female_07_Gloomrot_Mask = new PrefabGUID(-1870068034); public static readonly PrefabGUID VM_Human_Generic_Female_07_Helmet_Old = new PrefabGUID(1816825158); public static readonly PrefabGUID VM_Human_Generic_Female_08 = new PrefabGUID(-1115464127); public static readonly PrefabGUID VM_Human_Generic_Female_08_Gloomrot_Mask = new PrefabGUID(2077990534); public static readonly PrefabGUID VM_Human_Generic_Female_08_Helmet_Old = new PrefabGUID(-503648574); public static readonly PrefabGUID VM_Human_Generic_Male_01 = new PrefabGUID(-94664388); public static readonly PrefabGUID VM_Human_Generic_Male_01_Blackfang_Sentinel = new PrefabGUID(1194412455); public static readonly PrefabGUID VM_Human_Generic_Male_01_Gloomrot_Mask = new PrefabGUID(136215547); public static readonly PrefabGUID VM_Human_Generic_Male_01_Helmet_Old = new PrefabGUID(-1656730793); public static readonly PrefabGUID VM_Human_Generic_Male_02 = new PrefabGUID(-608431864); public static readonly PrefabGUID VM_Human_Generic_Male_02_Gloomrot_Mask = new PrefabGUID(2067771777); public static readonly PrefabGUID VM_Human_Generic_Male_02_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(116274260); public static readonly PrefabGUID VM_Human_Generic_Male_02_Helmet_Old = new PrefabGUID(-1720222272); public static readonly PrefabGUID VM_Human_Generic_Male_03 = new PrefabGUID(1878807783); public static readonly PrefabGUID VM_Human_Generic_Male_03_Archer_Attack_Chance_Lowered = new PrefabGUID(-1798392838); public static readonly PrefabGUID VM_Human_Generic_Male_03_Gloomrot_Mask = new PrefabGUID(-1646626059); public static readonly PrefabGUID VM_Human_Generic_Male_03_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(-468465893); public static readonly PrefabGUID VM_Human_Generic_Male_03_Helmet_New_IR = new PrefabGUID(-973762562); public static readonly PrefabGUID VM_Human_Generic_Male_03_Helmet_Old = new PrefabGUID(-63469580); public static readonly PrefabGUID VM_Human_Generic_Male_04 = new PrefabGUID(-14526849); public static readonly PrefabGUID VM_Human_Generic_Male_04_Gloomrot_Mask = new PrefabGUID(-67458269); public static readonly PrefabGUID VM_Human_Generic_Male_04_Helmet_Old = new PrefabGUID(-1306258927); public static readonly PrefabGUID VM_Human_Generic_Male_05 = new PrefabGUID(-661601043); public static readonly PrefabGUID VM_Human_Generic_Male_05_Attack_Chance_Lowered_Dont_Stop_If_Repeating = new PrefabGUID(341743850); public static readonly PrefabGUID VM_Human_Generic_Male_05_Gloomrot_Mask = new PrefabGUID(647080508); public static readonly PrefabGUID VM_Human_Generic_Male_05_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(1720373381); public static readonly PrefabGUID VM_Human_Generic_Male_05_Helmet_Old = new PrefabGUID(880391461); public static readonly PrefabGUID VM_Human_Generic_Male_06 = new PrefabGUID(653745827); public static readonly PrefabGUID VM_Human_Generic_Male_06_Gloomrot_Mask = new PrefabGUID(242592943); public static readonly PrefabGUID VM_Human_Generic_Male_06_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(291983309); public static readonly PrefabGUID VM_Human_Generic_Male_06_Helmet_Old = new PrefabGUID(-860111828); public static readonly PrefabGUID VM_Human_Generic_Male_06_Rifleman_Attack_Chance_Lowered = new PrefabGUID(2111307187); public static readonly PrefabGUID VM_Human_Generic_Male_07 = new PrefabGUID(1522806301); public static readonly PrefabGUID VM_Human_Generic_Male_07_Gloomrot_Mask = new PrefabGUID(83915525); public static readonly PrefabGUID VM_Human_Generic_Male_07_Helmet_Old = new PrefabGUID(2045386359); public static readonly PrefabGUID VM_Human_Generic_Male_08 = new PrefabGUID(-389279778); public static readonly PrefabGUID VM_Human_Generic_Male_08_Gloomrot_Mask = new PrefabGUID(-705287739); public static readonly PrefabGUID VM_Human_Generic_Male_08_Helmet_New_IR = new PrefabGUID(780769229); public static readonly PrefabGUID VM_Human_Generic_Male_08_Helmet_Old = new PrefabGUID(1086286676); public static readonly PrefabGUID VM_Human_Gloom_Villager_Female_A = new PrefabGUID(509736693); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_A = new PrefabGUID(1940656964); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_B = new PrefabGUID(-1315912871); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_C = new PrefabGUID(-1252947292); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_D_DONT_USE_ME_BAD = new PrefabGUID(-143646212); public static readonly PrefabGUID VM_Human_Micke = new PrefabGUID(1415043697); public static readonly PrefabGUID VM_Human_Silverlight_Cleric_Female = new PrefabGUID(1505419659); public static readonly PrefabGUID VM_Human_Silverlight_Priest_Male = new PrefabGUID(-653142637); public static readonly PrefabGUID VM_Human_Slave_Ruffian_A = new PrefabGUID(82857080); public static readonly PrefabGUID VM_Human_Slave_Ruffian_A_OLD_DONT_USE_ME = new PrefabGUID(-798258944); public static readonly PrefabGUID VM_Human_Slave_Ruffian_B = new PrefabGUID(1665275145); public static readonly PrefabGUID VM_Human_Slave_Ruffian_C = new PrefabGUID(-1604801159); public static readonly PrefabGUID VM_Human_Slave_Ruffian_D = new PrefabGUID(-141850185); public static readonly PrefabGUID VM_Human_Slave_Ruffian_E = new PrefabGUID(-346387187); public static readonly PrefabGUID VM_Human_Villager_Female_01_OLD_DONT_USE = new PrefabGUID(1383764767); public static readonly PrefabGUID VM_Human_Villager_Female_A = new PrefabGUID(1491071088); public static readonly PrefabGUID VM_Human_Villager_Female_B = new PrefabGUID(604003400); public static readonly PrefabGUID VM_Human_Villager_Female_C = new PrefabGUID(1485156738); public static readonly PrefabGUID VM_Human_Villager_Female_D = new PrefabGUID(597649896); public static readonly PrefabGUID VM_Human_Villager_Female_E = new PrefabGUID(1561936620); public static readonly PrefabGUID VM_Human_Villager_Male_01_OLD_DONT_USE = new PrefabGUID(1663867561); public static readonly PrefabGUID VM_Human_Villager_Male_A = new PrefabGUID(-393171023); public static readonly PrefabGUID VM_Human_Villager_Male_B = new PrefabGUID(1925079062); public static readonly PrefabGUID VM_Human_Villager_Male_C = new PrefabGUID(-682107159); public static readonly PrefabGUID VM_Human_Villager_Male_D = new PrefabGUID(131325772); public static readonly PrefabGUID VM_Human_Villager_Male_E = new PrefabGUID(-1243446819); public static readonly PrefabGUID VM_Human_Villager_Prisoner_Female_E = new PrefabGUID(-39223776); public static readonly PrefabGUID VM_Human_Villager_Prisoner_Male_A = new PrefabGUID(187341720); public static readonly PrefabGUID VM_Human_Villager_Prisoner_Male_D = new PrefabGUID(-1533654457); public static readonly PrefabGUID VM_Militia_Ink_Crawler = new PrefabGUID(1672636200); public static readonly PrefabGUID VM_Monster_Fallen_Angel = new PrefabGUID(-1221396415); public static readonly PrefabGUID VM_Monster_Harpy_Big = new PrefabGUID(1750457457); public static readonly PrefabGUID VM_Monster_Harpy_Normal = new PrefabGUID(-895836006); public static readonly PrefabGUID VM_Monster_Harpy_Normal_Nether_Demon = new PrefabGUID(558382760); public static readonly PrefabGUID VM_Monster_Harpy_Small = new PrefabGUID(62418921); public static readonly PrefabGUID VM_Monster_Harpy_VBlood = new PrefabGUID(-889459917); public static readonly PrefabGUID VM_Monster_Morgana_Tail = new PrefabGUID(268992033); public static readonly PrefabGUID VM_Monster_MountainBeast = new PrefabGUID(1273574187); public static readonly PrefabGUID VM_Monster_Nightlurker = new PrefabGUID(-770195979); public static readonly PrefabGUID VM_Monster_Scarecrow = new PrefabGUID(-1841434104); public static readonly PrefabGUID VM_Monster_SeaSerpent = new PrefabGUID(858863559); public static readonly PrefabGUID VM_Monster_Werewolf = new PrefabGUID(-1305712666); public static readonly PrefabGUID VM_Monster_Witch = new PrefabGUID(188709646); public static readonly PrefabGUID VM_Monster_Witch_Nether_Demon = new PrefabGUID(-1662141375); public static readonly PrefabGUID VM_Monster_Wormterror = new PrefabGUID(2050321122); public static readonly PrefabGUID VM_Mount_Horse_Gloomrot = new PrefabGUID(1402997640); public static readonly PrefabGUID VM_Mount_Horse_Normal = new PrefabGUID(-1595628282); public static readonly PrefabGUID VM_Mount_Horse_Spectral = new PrefabGUID(-152883584); public static readonly PrefabGUID VM_Noctem_Crow = new PrefabGUID(453764389); public static readonly PrefabGUID VM_Noctem_Legion_Blood_Prophet = new PrefabGUID(1736937334); public static readonly PrefabGUID VM_Noctem_Legion_Dreadhorn = new PrefabGUID(-1517898932); public static readonly PrefabGUID VM_Noctem_Legion_Gargoyle = new PrefabGUID(-485166094); public static readonly PrefabGUID VM_Noctem_Legion_Giant_Bat = new PrefabGUID(1957049786); public static readonly PrefabGUID VM_Noctem_Legion_Night_Maiden = new PrefabGUID(1632819146); public static readonly PrefabGUID VM_Noctem_Legion_Nightmare = new PrefabGUID(575214743); public static readonly PrefabGUID VM_Noctem_Legion_Shadowkin = new PrefabGUID(-1254658425); public static readonly PrefabGUID VM_Noctem_Legion_Vargulf = new PrefabGUID(-842318628); public static readonly PrefabGUID VM_Ocean_Blowfish = new PrefabGUID(-1617695003); public static readonly PrefabGUID VM_Ocean_Piranha = new PrefabGUID(-132090339); public static readonly PrefabGUID VM_Pixie = new PrefabGUID(153067257); public static readonly PrefabGUID VM_Plant_Mantrap = new PrefabGUID(348843686); public static readonly PrefabGUID VM_Plant_Mantrap_Corrupted_Big = new PrefabGUID(-1440887788); public static readonly PrefabGUID VM_Plant_Mantrap_Corrupted_Small = new PrefabGUID(1780067803); public static readonly PrefabGUID VM_Plant_Treant = new PrefabGUID(237578135); public static readonly PrefabGUID VM_Plant_Treant_Nether_Demon = new PrefabGUID(-259738326); public static readonly PrefabGUID VM_Player_New_Female_VoiceMapping = new PrefabGUID(1515837925); public static readonly PrefabGUID VM_Player_New_Male_VoiceMapping = new PrefabGUID(1145294473); public static readonly PrefabGUID VM_Shadow_VBlood_Buckwald = new PrefabGUID(-691432441); public static readonly PrefabGUID VM_Shadow_VBlood_Clive = new PrefabGUID(-1511348415); public static readonly PrefabGUID VM_Shadow_VBlood_Cultist = new PrefabGUID(-415787217); public static readonly PrefabGUID VM_Shadow_VBlood_Cursed_Wanderer = new PrefabGUID(-1352168848); public static readonly PrefabGUID VM_Shadow_VBlood_Dire_Bear = new PrefabGUID(902581176); public static readonly PrefabGUID VM_Shadow_VBlood_Dire_Rat = new PrefabGUID(-977189252); public static readonly PrefabGUID VM_Shadow_VBlood_Goreswine = new PrefabGUID(-1070088187); public static readonly PrefabGUID VM_Shadow_VBlood_Grayson = new PrefabGUID(-494873467); public static readonly PrefabGUID VM_Shadow_VBlood_Infiltrator = new PrefabGUID(-629235655); public static readonly PrefabGUID VM_Shadow_VBlood_Jade = new PrefabGUID(-1346603514); public static readonly PrefabGUID VM_Shadow_VBlood_Keely = new PrefabGUID(1312085721); public static readonly PrefabGUID VM_Shadow_VBlood_Leandra = new PrefabGUID(480286043); public static readonly PrefabGUID VM_Shadow_VBlood_Lidia = new PrefabGUID(542385125); public static readonly PrefabGUID VM_Shadow_VBlood_Nicholaus = new PrefabGUID(110124993); public static readonly PrefabGUID VM_Shadow_VBlood_Octavian = new PrefabGUID(536808104); public static readonly PrefabGUID VM_Shadow_VBlood_Poloma = new PrefabGUID(1645646458); public static readonly PrefabGUID VM_Shadow_VBlood_Raymond = new PrefabGUID(-1639965031); public static readonly PrefabGUID VM_Shadow_VBlood_Spider_Queen = new PrefabGUID(2050781956); public static readonly PrefabGUID VM_Shadow_VBlood_Tailor = new PrefabGUID(-4117372); public static readonly PrefabGUID VM_Shadow_VBlood_The_Purifier = new PrefabGUID(359135545); public static readonly PrefabGUID VM_Shadow_VBlood_Tourok = new PrefabGUID(1975333833); public static readonly PrefabGUID VM_Shadow_VBlood_Undead_General = new PrefabGUID(879253207); public static readonly PrefabGUID VM_Shadow_VBlood_Vadim = new PrefabGUID(603424792); public static readonly PrefabGUID VM_Shadow_VBlood_Vincent = new PrefabGUID(482879096); public static readonly PrefabGUID VM_Shadow_VBlood_Voltage = new PrefabGUID(-2139500463); public static readonly PrefabGUID VM_Shadow_VBlood_Wendigo = new PrefabGUID(1377139505); public static readonly PrefabGUID VM_Shadow_VBlood_Werewolf_Chieftain_Human_UNUSED = new PrefabGUID(-1369489468); public static readonly PrefabGUID VM_Shadow_VBlood_Werewolf_Chieftain_Wolf = new PrefabGUID(-1474278641); public static readonly PrefabGUID VM_Shadow_VBlood_Yeti = new PrefabGUID(-1437235077); public static readonly PrefabGUID VM_Shadow_Wildlife_Spider_Medium = new PrefabGUID(1683581943); public static readonly PrefabGUID VM_Trader_Noctem_Neutral_Vampire_Female = new PrefabGUID(-475789703); public static readonly PrefabGUID VM_Trader_Noctem_Neutral_Vampire_Male = new PrefabGUID(-2086650011); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Female_A_Original = new PrefabGUID(-2105956205); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Female_A_Variation_A = new PrefabGUID(613788510); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Male_A_Original = new PrefabGUID(1965695167); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Male_A_Variation_A = new PrefabGUID(-61352755); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Female_A_Original = new PrefabGUID(-835780298); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Female_A_Variation_A = new PrefabGUID(-452733963); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Male_A_Original = new PrefabGUID(-1160141599); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Male_A_Variation_A = new PrefabGUID(-1221665430); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_A_Original = new PrefabGUID(-1072238534); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_A_Variation_A = new PrefabGUID(94496320); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_B_Original = new PrefabGUID(1904134618); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_B_Variation_A = new PrefabGUID(-1220384472); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Male_A_Original = new PrefabGUID(-1527242830); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Male_A_Variation_A = new PrefabGUID(-76309449); public static readonly PrefabGUID VM_Undead_Banshee_Female = new PrefabGUID(2142293965); public static readonly PrefabGUID VM_Undead_Banshee_Male = new PrefabGUID(-1301651639); public static readonly PrefabGUID VM_Undead_Ghoul = new PrefabGUID(-1998834347); public static readonly PrefabGUID VM_Undead_Necromancer = new PrefabGUID(-1768048336); public static readonly PrefabGUID VM_Undead_Priest_Male = new PrefabGUID(-570662333); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Standard = new PrefabGUID(-713872148); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Medium = new PrefabGUID(195368598); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Small = new PrefabGUID(-1553242014); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Small_Lower_Attack_Chance_Spectral = new PrefabGUID(-1240079969); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Small_Spectral = new PrefabGUID(-86202803); public static readonly PrefabGUID VM_Undead_Skeleton_OLD_UNUSED = new PrefabGUID(-727731680); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Golem = new PrefabGUID(1935647540); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Golem_Nether_Demon = new PrefabGUID(-799945920); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Large = new PrefabGUID(-553861740); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Large_Noctem = new PrefabGUID(-1112520912); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Large_Spectral = new PrefabGUID(-362368839); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Medium = new PrefabGUID(2145678549); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Medium_Noctem = new PrefabGUID(-1219094332); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Medium_Spectral = new PrefabGUID(-1381099250); public static readonly PrefabGUID VM_Undead_Withered_Bat_Minion = new PrefabGUID(921049289); public static readonly PrefabGUID VM_VBlood_AlphaWolf = new PrefabGUID(-1305284010); public static readonly PrefabGUID VM_VBlood_Bandit_Leader = new PrefabGUID(1067696697); public static readonly PrefabGUID VM_VBlood_Bat_Vampire_New_Dracula = new PrefabGUID(-466514072); public static readonly PrefabGUID VM_VBlood_Bat_Vampire_OLD_BUCKWALD = new PrefabGUID(-678695674); public static readonly PrefabGUID VM_VBlood_Behemoth = new PrefabGUID(1711955524); public static readonly PrefabGUID VM_VBlood_Behemoth_Spectral = new PrefabGUID(-354748940); public static readonly PrefabGUID VM_VBlood_Blackfang_Carver_Boss = new PrefabGUID(704011451); public static readonly PrefabGUID VM_VBlood_Blackfang_Livith = new PrefabGUID(-1942607872); public static readonly PrefabGUID VM_VBlood_Blackfang_Livith_Illusion = new PrefabGUID(1192920511); public static readonly PrefabGUID VM_VBlood_Blackfang_Lucie = new PrefabGUID(-713189167); public static readonly PrefabGUID VM_VBlood_Blackfang_Morgana_Human = new PrefabGUID(-1883007261); public static readonly PrefabGUID VM_VBlood_Blackfang_Morgana_Snake = new PrefabGUID(209913271); public static readonly PrefabGUID VM_VBlood_Blackfang_Valyr = new PrefabGUID(21513479); public static readonly PrefabGUID VM_VBlood_Buckwald = new PrefabGUID(-2079842739); public static readonly PrefabGUID VM_VBlood_Cardinal = new PrefabGUID(-2096340184); public static readonly PrefabGUID VM_VBlood_Castleman = new PrefabGUID(658137624); public static readonly PrefabGUID VM_VBlood_Clive = new PrefabGUID(-1462348889); public static readonly PrefabGUID VM_VBlood_Cultist = new PrefabGUID(-431379099); public static readonly PrefabGUID VM_VBlood_Cursed_Smith = new PrefabGUID(565521665); public static readonly PrefabGUID VM_VBlood_Cursed_Wanderer = new PrefabGUID(267826876); public static readonly PrefabGUID VM_VBlood_Dire_Bear = new PrefabGUID(44326508); public static readonly PrefabGUID VM_VBlood_Dire_Rat = new PrefabGUID(425269590); public static readonly PrefabGUID VM_VBlood_Dracula_Boss = new PrefabGUID(1046850283); public static readonly PrefabGUID VM_VBlood_Ezekiel = new PrefabGUID(-1909172876); public static readonly PrefabGUID VM_VBlood_Fisherman = new PrefabGUID(-1166557910); public static readonly PrefabGUID VM_VBlood_Glassblower = new PrefabGUID(-684373010); public static readonly PrefabGUID VM_VBlood_Goreswine = new PrefabGUID(1392861733); public static readonly PrefabGUID VM_VBlood_Grayson = new PrefabGUID(-470931202); public static readonly PrefabGUID VM_VBlood_HarpyMatriarch = new PrefabGUID(-1827283118); public static readonly PrefabGUID VM_VBlood_Infiltrator = new PrefabGUID(-2117925055); public static readonly PrefabGUID VM_VBlood_Infiltrator_After_Image = new PrefabGUID(1935716246); public static readonly PrefabGUID VM_VBlood_Iva = new PrefabGUID(1338931575); public static readonly PrefabGUID VM_VBlood_Jade = new PrefabGUID(588988042); public static readonly PrefabGUID VM_VBlood_Keely = new PrefabGUID(-637867341); public static readonly PrefabGUID VM_VBlood_Kings_Sommelier = new PrefabGUID(1962479200); public static readonly PrefabGUID VM_VBlood_Leandra = new PrefabGUID(893387149); public static readonly PrefabGUID VM_VBlood_Leandra_Shadow_Soldier = new PrefabGUID(-1938715202); public static readonly PrefabGUID VM_VBlood_Lidia = new PrefabGUID(-1107717687); public static readonly PrefabGUID VM_VBlood_Maja_The_Scribe = new PrefabGUID(-673613975); public static readonly PrefabGUID VM_VBlood_Manticore = new PrefabGUID(-114853324); public static readonly PrefabGUID VM_VBlood_Mariwyn_Former_Lightweaver = new PrefabGUID(-1245108019); public static readonly PrefabGUID VM_VBlood_Meredith = new PrefabGUID(87161764); public static readonly PrefabGUID VM_VBlood_Militia_Fabian = new PrefabGUID(102748632); public static readonly PrefabGUID VM_Vblood_Mount_Horse_Fabian_Steed = new PrefabGUID(-912824856); public static readonly PrefabGUID VM_Vblood_Mount_Horse_Fabian_Steed_Minion = new PrefabGUID(1738761601); public static readonly PrefabGUID VM_VBlood_Nicholaus = new PrefabGUID(-1861209455); public static readonly PrefabGUID VM_VBlood_Nun = new PrefabGUID(246220933); public static readonly PrefabGUID VM_VBlood_Octavian = new PrefabGUID(871487167); public static readonly PrefabGUID VM_VBlood_Paladin = new PrefabGUID(828228369); public static readonly PrefabGUID VM_VBlood_Poloma = new PrefabGUID(1432328808); public static readonly PrefabGUID VM_VBlood_Raymond = new PrefabGUID(523131332); public static readonly PrefabGUID VM_VBlood_Sergeant_Railgunner = new PrefabGUID(658911692); public static readonly PrefabGUID VM_VBlood_Sergeant_Railgunner_Minion = new PrefabGUID(456695238); public static readonly PrefabGUID VM_VBlood_Spider_Queen = new PrefabGUID(-2044136956); public static readonly PrefabGUID VM_VBlood_Tailor = new PrefabGUID(-998597185); public static readonly PrefabGUID VM_VBlood_Terah = new PrefabGUID(1091334060); public static readonly PrefabGUID VM_VBlood_The_Monster = new PrefabGUID(-2102428253); public static readonly PrefabGUID VM_VBlood_The_Overseer = new PrefabGUID(1001781566); public static readonly PrefabGUID VM_VBlood_The_Professor = new PrefabGUID(317559839); public static readonly PrefabGUID VM_VBlood_The_Purifier = new PrefabGUID(131708591); public static readonly PrefabGUID VM_VBlood_TheProfessor_OLD_DONT_USE = new PrefabGUID(-757303582); public static readonly PrefabGUID VM_VBlood_ToadKing = new PrefabGUID(-881562841); public static readonly PrefabGUID VM_VBlood_Tourok = new PrefabGUID(504174721); public static readonly PrefabGUID VM_VBlood_Undead_Arena_Champion = new PrefabGUID(-1996146983); public static readonly PrefabGUID VM_VBlood_Undead_General = new PrefabGUID(1636278096); public static readonly PrefabGUID VM_VBlood_Undead_Leader = new PrefabGUID(1248633463); public static readonly PrefabGUID VM_VBlood_Vadim = new PrefabGUID(-1614828446); public static readonly PrefabGUID VM_VBlood_Vampire_Blood_Knight = new PrefabGUID(535400786); public static readonly PrefabGUID VM_VBlood_Vampire_Countess_Ice_Ranger = new PrefabGUID(1264306545); public static readonly PrefabGUID VM_VBlood_Vampire_High_Lord = new PrefabGUID(766321387); public static readonly PrefabGUID VM_VBlood_Vincent = new PrefabGUID(431396351); public static readonly PrefabGUID VM_VBlood_Voltage = new PrefabGUID(1277285297); public static readonly PrefabGUID VM_VBlood_Wendigo = new PrefabGUID(-1445997469); public static readonly PrefabGUID VM_VBlood_Werewolf_Chieftain_Human = new PrefabGUID(797717172); public static readonly PrefabGUID VM_VBlood_Werewolf_Chieftain_Wolf = new PrefabGUID(-2126840739); public static readonly PrefabGUID VM_VBlood_Witch_Curse_Weaver = new PrefabGUID(-609123319); public static readonly PrefabGUID VM_VBlood_Yeti = new PrefabGUID(1555565298); public static readonly PrefabGUID VM_Wildlife_Bear = new PrefabGUID(-1699679192); public static readonly PrefabGUID VM_Wildlife_Bear_Corrupted = new PrefabGUID(882344541); public static readonly PrefabGUID VM_Wildlife_Bear_Mutant = new PrefabGUID(-37270724); public static readonly PrefabGUID VM_Wildlife_Bear_Spectral = new PrefabGUID(-259706207); public static readonly PrefabGUID VM_Wildlife_Colossus = new PrefabGUID(1751937700); public static readonly PrefabGUID VM_Wildlife_Deer = new PrefabGUID(-1911126034); public static readonly PrefabGUID VM_Wildlife_Deer_Corrupted = new PrefabGUID(1651582875); public static readonly PrefabGUID VM_Wildlife_Deer_Mutated = new PrefabGUID(697198402); public static readonly PrefabGUID VM_Wildlife_Hound = new PrefabGUID(-384310073); public static readonly PrefabGUID VM_Wildlife_Moose = new PrefabGUID(-13422453); public static readonly PrefabGUID VM_Wildlife_Moose_Mutated = new PrefabGUID(-925986547); public static readonly PrefabGUID VM_Wildlife_Mosquito = new PrefabGUID(473394882); public static readonly PrefabGUID VM_Wildlife_Rock_Elemental = new PrefabGUID(-1607468731); public static readonly PrefabGUID VM_Wildlife_Rock_Elemental_Nether_Demon = new PrefabGUID(-681735888); public static readonly PrefabGUID VM_Wildlife_Spider_Big_Broodmother = new PrefabGUID(-311227229); public static readonly PrefabGUID VM_Wildlife_Spider_Huge_Queen = new PrefabGUID(-1352779682); public static readonly PrefabGUID VM_Wildlife_Spider_Medium = new PrefabGUID(1347407458); public static readonly PrefabGUID VM_Wildlife_Spider_Small = new PrefabGUID(1510696557); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Geomancer_Main = new PrefabGUID(-446008658); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Geomancer_Minion = new PrefabGUID(1095187455); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Normal = new PrefabGUID(1198697594); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Normal_Nether_Demon = new PrefabGUID(-2123108484); public static readonly PrefabGUID VM_Wildlife_Toad_Minion = new PrefabGUID(-560029685); public static readonly PrefabGUID VM_Wildlife_Treant = new PrefabGUID(1769467552); public static readonly PrefabGUID VM_Wildlife_Vermin_Giantrat = new PrefabGUID(-1527000850); public static readonly PrefabGUID VM_Wildlife_Wolf = new PrefabGUID(1624202113); public static readonly PrefabGUID VM_Wildlife_Wolf_Corrupted = new PrefabGUID(2147043027); public static readonly PrefabGUID VM_Wildlife_Wolf_Mutated = new PrefabGUID(-2136055759); public static readonly PrefabGUID VM_Wildlife_Wolf_Spectral = new PrefabGUID(693143399); public static readonly PrefabGUID VM_Wildlife_Wolf_Spectral_OLD_DONT_USE = new PrefabGUID(1990270780); public static readonly PrefabGUID VulnerableGhostWallCurve = new PrefabGUID(1762775238); public static readonly PrefabGUID WalkingCurve = new PrefabGUID(-1297497701); public static readonly PrefabGUID WallFurnitureBuildMenuGroup = new PrefabGUID(-1147424962); public static readonly PrefabGUID WallHangingFlowersMenuGroup = new PrefabGUID(-520435611); public static readonly PrefabGUID WallHangingMirrorsBuildMenuGroup = new PrefabGUID(1294488483); public static readonly PrefabGUID WallHangingMiscMenuGroup = new PrefabGUID(262148078); public static readonly PrefabGUID WallHangingShelvesBuildMenuGroup = new PrefabGUID(1737280995); public static readonly PrefabGUID WallHangingToolsMenuGroup = new PrefabGUID(-377851389); public static readonly PrefabGUID WallHangingWeaponBuildMenuGroup = new PrefabGUID(2098121822); public static readonly PrefabGUID WardrobeBuildMenuGroup = new PrefabGUID(158933326); public static readonly PrefabGUID WarEvent_UnitKilledProjectile = new PrefabGUID(-1046523292); public static readonly PrefabGUID WarEventDynamicHealthScalingSingleton = new PrefabGUID(-571920625); public static readonly PrefabGUID WarEventSettings = new PrefabGUID(-1217815930); public static readonly PrefabGUID WarEventUIData_Inactive = new PrefabGUID(-1349990434); public static readonly PrefabGUID WarEventUIData_Major = new PrefabGUID(-1227193711); public static readonly PrefabGUID WarEventUIData_Minor = new PrefabGUID(-103636065); public static readonly PrefabGUID WarEventUIData_Primal = new PrefabGUID(1714506876); public static readonly PrefabGUID WarEventUnitSpawningCurve = new PrefabGUID(-72005327); public static readonly PrefabGUID WarEventWaveSpawningCurve = new PrefabGUID(553726549); public static readonly PrefabGUID WaypointMenuGroup = new PrefabGUID(655551236); public static readonly PrefabGUID Weapon_Attribute_Epic_Curve = new PrefabGUID(744090183); public static readonly PrefabGUID Weapon_Attribute_Legendary_Curve = new PrefabGUID(2011003530); public static readonly PrefabGUID Weapon_Attribute_Rare_Curve = new PrefabGUID(1603558828); public static readonly PrefabGUID Weapon_Greatsword_Cyclone_Curve = new PrefabGUID(1109172226); public static readonly PrefabGUID Weapon_Greatsword_JumpAttack_Traverse = new PrefabGUID(1482042175); public static readonly PrefabGUID Weapon_Mace_Attack1_Curve = new PrefabGUID(164668379); public static readonly PrefabGUID Weapon_Mace_Attack1Charged_Curve = new PrefabGUID(1167270723); public static readonly PrefabGUID Weapon_Mace_Attack3_Curve = new PrefabGUID(-1112847329); public static readonly PrefabGUID Weapon_Mace_Attack3_YCurve = new PrefabGUID(291660901); public static readonly PrefabGUID Weapon_Scythe_Attack1_Curve = new PrefabGUID(-660938612); public static readonly PrefabGUID Weapon_Scythe_Attack3_Curve = new PrefabGUID(-1131255679); public static readonly PrefabGUID Weapon_Scythe_ChargedAttack_Curve = new PrefabGUID(1259708262); public static readonly PrefabGUID Weapon_Scythe_Secondary_Curve = new PrefabGUID(-1919866133); public static readonly PrefabGUID Weapon_ShadowDash_Melee_Cast01 = new PrefabGUID(-93687625); public static readonly PrefabGUID Weapon_Slashers_Dash = new PrefabGUID(1849859295); public static readonly PrefabGUID Weapon_Slashers_Dash_Out = new PrefabGUID(-762930876); public static readonly PrefabGUID Weapon_Spear_Attack1_Curve = new PrefabGUID(1810070846); public static readonly PrefabGUID Weapon_Spear_Attack1_Curve_Ilves = new PrefabGUID(-123117441); public static readonly PrefabGUID Weapon_Spear_Attack1_Curve_Ilves_Old = new PrefabGUID(-2061543206); public static readonly PrefabGUID Weapon_Spear_Attack3_Curve_Ilves = new PrefabGUID(291858847); public static readonly PrefabGUID Weapon_Spear_Attack3_Curve_Ilves_Old = new PrefabGUID(-1833504448); public static readonly PrefabGUID Weapon_Spear_Secondary_Curve = new PrefabGUID(-207774647); public static readonly PrefabGUID Weapon_Spear_ShieldSlam_Curve = new PrefabGUID(-593993436); public static readonly PrefabGUID Weapon_Spear_Stab_Curve = new PrefabGUID(643292297); public static readonly PrefabGUID Weapon_Sword_Dash_Traverse = new PrefabGUID(508402848); public static readonly PrefabGUID Weapon_SwordOneHand_Attack1_Curve = new PrefabGUID(-984295867); public static readonly PrefabGUID Weapon_SwordOneHand_Attack1_Curve_Ilves = new PrefabGUID(764098528); public static readonly PrefabGUID Weapon_SwordOneHand_Attack2_Curve = new PrefabGUID(1843150517); public static readonly PrefabGUID Weapon_SwordOneHand_Attack2_Curve_Ilves = new PrefabGUID(-798523354); public static readonly PrefabGUID Weapon_SwordOneHand_Attack3_Curve = new PrefabGUID(-931575487); public static readonly PrefabGUID Weapon_SwordOneHand_Attack3_Curve_Ilves = new PrefabGUID(734096489); public static readonly PrefabGUID Weapon_SwordOneHand_SecondaryAttack = new PrefabGUID(-1605954107); public static readonly PrefabGUID Weapon_SwordOneHand_SecondaryAttack02 = new PrefabGUID(1459081001); public static readonly PrefabGUID Weapon_SwordOneHand_SecondaryAttack03 = new PrefabGUID(1793512547); public static readonly PrefabGUID Weapon_SwordTwoHand_Attack_Curve = new PrefabGUID(-549776925); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Cast_Curve = new PrefabGUID(-828111338); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Cast_Curve_Secondary = new PrefabGUID(-224587273); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Rotation_Curve = new PrefabGUID(1902360004); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Rotation_Curve_Secondary = new PrefabGUID(779760337); public static readonly PrefabGUID Weapon_Unarmed_Attack1_Curve = new PrefabGUID(569646962); public static readonly PrefabGUID Weapon_Unarmed_Attack2_Curve = new PrefabGUID(-1072306035); public static readonly PrefabGUID Weapon_Unarmed_Attack3_Curve = new PrefabGUID(707924069); public static readonly PrefabGUID Weapon_Unarmed_Secondary_Curve = new PrefabGUID(-1274009910); public static readonly PrefabGUID WeaponFadeOut_Curve = new PrefabGUID(1012873345); public static readonly PrefabGUID WeaponSkill1AdaptiveTrigger = new PrefabGUID(2114440516); public static readonly PrefabGUID WeaponSkill2AdaptiveTrigger = new PrefabGUID(-576095815); public static readonly PrefabGUID Wendigo_Emote_OnAggro_Buff = new PrefabGUID(114895810); public static readonly PrefabGUID WerewolfChieftain_Human_Emote_OnAggro_Buff = new PrefabGUID(-110322579); public static readonly PrefabGUID WerewolfCieftain_Werewolf_Emote_OnAggro_Buff = new PrefabGUID(76185835); public static readonly PrefabGUID WhiteCarpetsBuildMenuGroup01 = new PrefabGUID(-752356687); public static readonly PrefabGUID WhiteCarpetsBuildMenuGroup02 = new PrefabGUID(1954686628); public static readonly PrefabGUID Wind_Curve_Branch = new PrefabGUID(-1139995127); public static readonly PrefabGUID Wind_Curve_Edge = new PrefabGUID(-13983891); public static readonly PrefabGUID Winter_Yeti_Icicle_01_Dynamics = new PrefabGUID(416419086); public static readonly PrefabGUID Winter_Yeti_MeleeLunge_Curve = new PrefabGUID(-1811689564); public static readonly PrefabGUID Winter_Yeti_VBlood_Emote_OnAggro = new PrefabGUID(-67573563); public static readonly PrefabGUID Witch_PigTransformation_Buff = new PrefabGUID(1356064917); public static readonly PrefabGUID Witch_RatTransformation_Buff = new PrefabGUID(-1453610507); public static readonly PrefabGUID Witch_SheepTransformation_Buff = new PrefabGUID(-1995148643); public static readonly PrefabGUID Witch_ToadTransformation_Buff = new PrefabGUID(400461302); public static readonly PrefabGUID Wolf_Dash_Curve = new PrefabGUID(1023033569); public static readonly PrefabGUID WolfBoss_Bite_Curve = new PrefabGUID(943114411); public static readonly PrefabGUID WolfLeapCurve = new PrefabGUID(1053425273); public static readonly PrefabGUID WolfLeapEaseInFlatStartCurve = new PrefabGUID(524787442); public static readonly PrefabGUID WoodenCoffinBuildMenuGroup = new PrefabGUID(2049027701); public static readonly PrefabGUID WoodenCoffinRespawnCurve = new PrefabGUID(-965586227); public static readonly PrefabGUID WoodenCoffinRespawnHeightCurve = new PrefabGUID(645449367); public static readonly PrefabGUID WoodPanel01WallpaperBuildMenuGroup = new PrefabGUID(353086150); public static readonly PrefabGUID Workshop01WallpaperBuildMenuGroup = new PrefabGUID(1323608277); public static readonly PrefabGUID WorkshopBuildMenuGroup = new PrefabGUID(239833285); public static readonly PrefabGUID WorkshopFloorBuildMenuGroup = new PrefabGUID(-85451374); public static readonly PrefabGUID Workstation_BloodPress_BuildMenuGroup = new PrefabGUID(693367808); public static readonly PrefabGUID Workstation_Furnace_BuildMenuGroup = new PrefabGUID(-48011651); public static readonly PrefabGUID Workstation_Loom_BuildMenuGroup = new PrefabGUID(1431410886); public static readonly PrefabGUID Workstation_Sawmill_BuildMenuGroup = new PrefabGUID(-1947520933); public static readonly PrefabGUID Workstation_StoneCutting_BuildMenuGroup = new PrefabGUID(-126983534); public static readonly PrefabGUID Workstation_Tannery_BuildMenuGroup = new PrefabGUID(1286740297); public static readonly PrefabGUID Workstation_VerminNest_BuildMenuGroup = new PrefabGUID(931250544); public static readonly PrefabGUID WoundedVampireInitFlash = new PrefabGUID(-359808516); public static readonly PrefabGUID XP_HigherLevel_Factor = new PrefabGUID(-436895998); public static readonly PrefabGUID XP_LowerLevel_Factor = new PrefabGUID(-1316941180); public static readonly PrefabGUID XP_ProgressioLevelToEntityLevel = new PrefabGUID(-1039323471); public static readonly PrefabGUID XP_RequiedXPForLevel = new PrefabGUID(-490693028); public static readonly PrefabGUID XPDefaultCurve = new PrefabGUID(2091460851); public static readonly PrefabGUID XPResourceCurve = new PrefabGUID(2052061906); public static readonly PrefabGUID Zero = new PrefabGUID(866816844); } internal static class PrefabNames { private static readonly Dictionary _localizedNameKeys = new Dictionary { { new PrefabGUID(781586362), "87951d61-02a2-4787-a7f1-1fb02e268d1f" }, { new PrefabGUID(-178249605), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(-318118264), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(-1233207977), "f39a5fe4-9aa7-43da-932e-930c5267f57f" }, { new PrefabGUID(-1873605364), "f39a5fe4-9aa7-43da-932e-930c5267f57f" }, { new PrefabGUID(-1988816037), "92e82ddb-9b3e-4d16-ad2a-979ce9d133fc" }, { new PrefabGUID(-262204844), "78c4b4cd-8984-43f3-85db-eaa3226e4896" }, { new PrefabGUID(-941913536), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-554782766), "215334e1-0dd0-46ff-9955-d1d9e191e143" }, { new PrefabGUID(532033005), "9989143a-4d61-41a9-8f05-42914d732795" }, { new PrefabGUID(-1697520941), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-1913987811), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(-1242910338), "fab35570-026e-4771-8bdb-39959f60f1d5" }, { new PrefabGUID(-441408420), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(-1636801169), "490fa285-080d-4726-a26c-dc1a2ec956a3" }, { new PrefabGUID(1075465533), "53932c04-d589-4945-b773-5740744163cd" }, { new PrefabGUID(-2095610608), "7d50c766-d42d-4776-9710-8db399c6af99" }, { new PrefabGUID(-258808647), "f5657ce4-4bc4-4c3c-a102-36011efe004c" }, { new PrefabGUID(-1359494169), "475e7da5-bd79-4ade-a3af-e9715b34096b" }, { new PrefabGUID(-2128818978), "8fa4faf6-d8c0-404e-8a1b-db035a0f2970" }, { new PrefabGUID(-2049321404), "3912a034-2abe-4863-b6ea-155c1e0ceff2" }, { new PrefabGUID(-309124704), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(800879747), "10727671-022a-47df-b9b8-52b0d752b6c8" }, { new PrefabGUID(759629166), "f10a7639-9181-4ac5-bf4e-f364d7c6861f" }, { new PrefabGUID(-764630320), "f5657ce4-4bc4-4c3c-a102-36011efe004c" }, { new PrefabGUID(1966590385), "343c8db1-ba2e-4717-af24-bacb11eb0f61" }, { new PrefabGUID(-1779269313), "9beff0d6-658e-4d83-aa7d-4c1e7bb9b652" }, { new PrefabGUID(-944716649), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(1646351394), "db0c5557-81bf-45fe-b7b5-6f6a74e3d4d9" }, { new PrefabGUID(930747930), "201f12cc-0def-49b2-8f53-3f617d6f506a" }, { new PrefabGUID(-1634108038), "39b3cbaf-8c58-4542-a53f-2c2af4cc1366" }, { new PrefabGUID(1746537832), "5a7b548e-daf2-45bc-a9c0-9c308c171026" }, { new PrefabGUID(429323760), "f33e7530-1ac3-4c8d-ba31-b5fdc18aeeb8" }, { new PrefabGUID(-655095317), "f33e7530-1ac3-4c8d-ba31-b5fdc18aeeb8" }, { new PrefabGUID(-2036196416), "a9362a1c-ea82-427c-b27f-5aaf6d748c3c" }, { new PrefabGUID(1729390800), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(-473351958), "3a8c04c7-8a01-4fa1-a617-3615e93b0314" }, { new PrefabGUID(-1952374182), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(-2013887729), "8bcc97e7-d39a-48a1-97d1-be1b408ea51d" }, { new PrefabGUID(1686577386), "3df4d93f-282b-409f-901b-2622a8f513e3" }, { new PrefabGUID(961990006), "cd082b7b-9ef7-4cb6-a967-961662337098" }, { new PrefabGUID(1850873910), "649de94d-51f9-4954-9cd5-11bdb914be0b" }, { new PrefabGUID(-1337809256), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(1040125618), "e85a47f8-c349-4f33-8ec7-02ec0b9962c2" }, { new PrefabGUID(-944318126), "2f1d9a90-05fd-43ac-8403-4d4c07d4e1be" }, { new PrefabGUID(-1344118299), "fe62ac2f-0da5-4df2-9346-71cd1312e01b" }, { new PrefabGUID(-77555820), "2a5f68f2-ae3f-4aa2-96b7-04ee176b3c6c" }, { new PrefabGUID(-706178162), "0e4cf14b-aa37-42ff-8ab7-82ecdcb90d0c" }, { new PrefabGUID(-1658630722), "47f993a6-88a9-4526-ab3e-8edfc896294a" }, { new PrefabGUID(-1205777419), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(675187526), "1067d6e4-3842-4c95-8436-a2e89a95d0d9" }, { new PrefabGUID(-1370210913), "c2277fb6-895b-4d28-b828-3167aa1b1e89" }, { new PrefabGUID(1692133021), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(2015299972), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(-483235215), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(301051123), "a3eb482f-4aa7-4b29-89c9-9df83de06334" }, { new PrefabGUID(886814985), "3b34e31f-6da6-48c0-b550-1fd71872ab64" }, { new PrefabGUID(-105026635), "9a9b4c4e-0ebd-41aa-86ce-21b8b54623ff" }, { new PrefabGUID(-1558814807), "47561a8b-63d3-4586-b583-b0e3dac4a65a" }, { new PrefabGUID(1912738568), "d8441cb6-6ad1-48f3-8b05-41596aee2873" }, { new PrefabGUID(1252366498), "55244198-1130-4f99-8141-e7883593941f" }, { new PrefabGUID(1217578824), "bbb7ebe0-86a2-4243-b198-58ee1fa68dc7" }, { new PrefabGUID(-930352575), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(352247730), "490d7218-ea13-4132-bb4d-9d8268cdffec" }, { new PrefabGUID(-15390086), "f06d140b-5ace-4b9c-a045-d75ea739c945" }, { new PrefabGUID(-752418019), "fab35570-026e-4771-8bdb-39959f60f1d5" }, { new PrefabGUID(1809631067), "2d3601b5-ef04-4cee-8b26-ea190d0e65f6" }, { new PrefabGUID(-1993947781), "fe2875b6-aebd-40ca-8747-8b2a4064b2df" }, { new PrefabGUID(714007172), "e696e7a7-69b9-4272-b5eb-7413c2d96053" }, { new PrefabGUID(-1424521314), "063e6062-9996-4a54-8438-8d5285fd0315" }, { new PrefabGUID(-399521517), "dbb8880a-8378-41e3-9827-73d8a3f47712" }, { new PrefabGUID(-1721887666), "2243c416-ada1-4ca8-b8a7-f2be911a4d38" }, { new PrefabGUID(-2100321922), "8f88a8d6-a4f8-410c-9529-10cfaa53903d" }, { new PrefabGUID(417648894), "e9ec4524-1a3f-4dec-af24-ad8794c73fe0" }, { new PrefabGUID(1458279255), "4552e8ae-fe09-48da-9544-7d091ddf83f3" }, { new PrefabGUID(607559019), "33275fb2-40c5-438b-b4bf-112f20781e53" }, { new PrefabGUID(-2073081569), "75045af3-e580-4565-a790-795adad43bce" }, { new PrefabGUID(890484447), "4a8f9a35-a7b7-4cb8-b469-82455a00ef15" }, { new PrefabGUID(-548847761), "4488980a-d324-40e4-9215-7e82d75a3bc9" }, { new PrefabGUID(403967307), "20273954-c7ba-4a29-9f6b-69dd2a74f708" }, { new PrefabGUID(1375804543), "6f7c03d2-efe1-4bf3-9400-e51a1773d4a3" }, { new PrefabGUID(690259405), "e48660ff-5b7a-4682-a2f5-1d5ba9ce4f37" }, { new PrefabGUID(-2020831626), "6ebd3c6d-601e-4dc1-93dc-8c82c095a36a" }, { new PrefabGUID(-1169471531), "3980e72f-1ed3-414c-b096-2faefe9710ee" }, { new PrefabGUID(-2086890414), "83fe9df5-d932-4b42-bfc2-b46bdba1f0c5" }, { new PrefabGUID(679755989), "0f4074c1-c0db-40b3-87c3-3c43426099ec" }, { new PrefabGUID(-2081286944), "8d5be7fa-77d9-4c05-85a5-fc50f20ccafa" }, { new PrefabGUID(213967097), "e7217a92-71b7-4580-916e-00c3aa0b0212" }, { new PrefabGUID(75934448), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(1561531999), "3d88a2d2-2d68-4493-b8d2-a1c35938b303" }, { new PrefabGUID(-2068145306), "15e81313-a6df-4fa6-8462-2c706f2be1bc" }, { new PrefabGUID(1322545846), "a699cdd5-b1f2-4f86-8fa2-94bde9b0b847" }, { new PrefabGUID(38319072), "a2598a7d-df3f-46e2-9da4-130608e1794c" }, { new PrefabGUID(2147390246), "2913004d-a6ad-4e08-9043-c46a3dbdab0e" }, { new PrefabGUID(1395316286), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(350769859), "5427cf2d-3163-4788-8b93-dee624c093ca" }, { new PrefabGUID(-1173681254), "92463350-1d10-4d0b-8615-e8d45465cdb4" }, { new PrefabGUID(835610037), "c281f62c-fd4f-46de-8008-3a6af40f7bc5" }, { new PrefabGUID(1909654697), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(862477668), "37e872e1-4aa1-4f0a-8e2e-a67883b5a645" }, { new PrefabGUID(1040245278), "253b03c7-a054-46b0-8dea-de5dca313b82" }, { new PrefabGUID(-106283194), "3d03613f-3f33-48e8-a1cf-8e83b2120a8b" }, { new PrefabGUID(1906638073), "f16f1d0b-fe0e-4087-85d1-18f9549788e3" }, { new PrefabGUID(2103989354), "9baee9b1-0e14-4b39-8b91-5f88f7436d2b" }, { new PrefabGUID(818069106), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(-570287766), "0f5bac5d-8c5e-474a-ac37-970006cdba08" }, { new PrefabGUID(-1800289670), "aa284620-98bf-4aab-bfe4-8ebecbd7586f" }, { new PrefabGUID(994654794), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(455494178), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(897635802), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(-949672483), "19185f9a-8f95-4c2a-8d0a-0d48ecd1ee88" }, { new PrefabGUID(1957540013), "b99843d7-9d76-463f-b0d2-f20d51665067" }, { new PrefabGUID(1561721357), "9c517103-e50e-4e96-a0ff-20f404ad6216" }, { new PrefabGUID(1863126275), "f2c66c7b-8358-4c72-ad57-110b3c20a56b" }, { new PrefabGUID(-777417289), "998a77e8-de89-42b0-bb8f-f5a089e44794" }, { new PrefabGUID(-1718233147), "863c027a-876a-4d22-ac7c-842cfcc95546" }, { new PrefabGUID(-1750550553), "b4f9fcd3-c477-430f-9590-c104ed0cfafb" }, { new PrefabGUID(791584738), "dd60c13f-9745-4fb7-8237-a7d33996882f" }, { new PrefabGUID(1005440012), "a5873627-5e92-4f06-a1ce-f0845bfa798e" }, { new PrefabGUID(1718353003), "10737e34-1bbf-4fbc-a86e-09d046708db9" }, { new PrefabGUID(-1788912715), "26eb9db5-9521-478e-a423-6f4d4e3ceab6" }, { new PrefabGUID(-946177070), "3ae1a5e3-70f8-46f3-8611-871137c4a71d" }, { new PrefabGUID(1939500376), "b92fdcda-645b-4882-aab6-f4fdf60d0c03" }, { new PrefabGUID(-224716062), "0ae1213b-bdbc-44ea-8bb5-30ad10538c5e" }, { new PrefabGUID(1499979825), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(1474515294), "1acc031d-2b42-481e-b769-b8a82926d35c" }, { new PrefabGUID(-96701352), "6caf065c-4074-4799-96c2-c3db8a2bd8dd" }, { new PrefabGUID(742900616), "12adf0a9-9ac6-48bc-9d90-9271eda2b8df" }, { new PrefabGUID(879103343), "7a60009f-6d1f-4bf4-8986-04682dd941f1" }, { new PrefabGUID(-946597284), "3cd2a79f-bb7d-4758-9ff0-10e5f8f6432d" }, { new PrefabGUID(-1596352033), "f5104b34-6c62-4d19-a181-305de954f463" }, { new PrefabGUID(-491969324), "9231fd1c-9eb9-4911-8b7a-727b9fa2e9a9" }, { new PrefabGUID(937375187), "f51d484f-0f9b-4b2c-a5dc-6188e769d087" }, { new PrefabGUID(1526542305), "21d227ba-e193-48a9-ac0a-40da97bbda16" }, { new PrefabGUID(-977419819), "ca218fea-89e9-4a87-beb0-043ffe73c52c" }, { new PrefabGUID(1942009728), "8864803d-27b2-45c1-a2b1-981dab75ae74" }, { new PrefabGUID(-452767162), "9642332e-5402-42cb-a6e2-7ba9a9bce788" }, { new PrefabGUID(-513865346), "dc08a866-0368-4626-9bf7-cc116746e2a2" }, { new PrefabGUID(-1111771702), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(1204352435), "1859fa37-5901-4d53-96a7-fa3af17fbc66" }, { new PrefabGUID(-1958602686), "9c071152-af39-45b5-a91f-bd8d0eaa8baa" }, { new PrefabGUID(-836889492), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(-1261118965), "7d6b2b76-d157-492f-ba64-def7f02e4d7d" }, { new PrefabGUID(-443169356), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(-1183600395), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1629804427), "7d6d6620-d92b-4c87-96d2-2877d6c9f802" }, { new PrefabGUID(1799289635), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(1691702273), "1d42edac-034c-4c88-b30d-57744842acd7" }, { new PrefabGUID(762038154), "79d60a15-d4cc-47b8-a99b-406415cee51a" }, { new PrefabGUID(140761255), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(-853559619), "47ec25dd-b454-4f50-a5bb-28c1aa4e109f" }, { new PrefabGUID(1553481703), "f8c2c850-b75c-49f4-9806-fa61711ecdc3" }, { new PrefabGUID(1227483037), "75febfe5-0af1-49de-9e72-770b9add0b12" }, { new PrefabGUID(-2099422426), "1937df4e-c37f-4982-9159-03bd43b0386d" }, { new PrefabGUID(1856338018), "cd7dd20d-1777-41f4-9eff-aafff23d25a5" }, { new PrefabGUID(-1444759832), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(-167936394), "a45f2523-4448-40c2-9f96-4f2d43ada733" }, { new PrefabGUID(1413130999), "ab479ac6-9520-4e48-b1e6-e300416c013a" }, { new PrefabGUID(-374243736), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(858598154), "311b5420-e9da-41e4-8756-40d39855c4d3" }, { new PrefabGUID(-1184863500), "6e4ad93f-6c99-43c6-93be-09b01795170a" }, { new PrefabGUID(114259912), "7669d458-b31d-441a-8be1-1a191891f805" }, { new PrefabGUID(2042311455), "95c64973-7138-41ee-852b-1c83e9ff1aa9" }, { new PrefabGUID(-1987586694), "e53d048f-ae64-4104-b6a2-87f599e2524b" }, { new PrefabGUID(538326235), "9d1b74f1-18e8-4a02-b277-8ca2480290b1" }, { new PrefabGUID(786585343), "c8886e52-be6b-4a24-b3bb-4902e819d112" }, { new PrefabGUID(199425997), "f9c04101-5d90-4604-8b30-e10f7248654d" }, { new PrefabGUID(206151993), "06a2a635-3823-432c-a375-c593552fc14b" }, { new PrefabGUID(1811913705), "782d5ee4-fbee-4d5a-96c2-b16cb47cd7d4" }, { new PrefabGUID(649637190), "24d64df6-3497-4c5f-a5c7-ba3601963f3a" }, { new PrefabGUID(1383064284), "135a97e6-f12f-4ac6-9bdd-ec0ff3fbe0af" }, { new PrefabGUID(-1003309553), "c8053c20-62cc-4218-bd97-62657333cde7" }, { new PrefabGUID(828271620), "b1281ab5-cd12-4ff8-be13-9b3e6b900b7a" }, { new PrefabGUID(347441899), "fe2875b6-aebd-40ca-8747-8b2a4064b2df" }, { new PrefabGUID(1067300584), "998a77e8-de89-42b0-bb8f-f5a089e44794" }, { new PrefabGUID(1452779821), "cbe46003-3396-4fe7-ad13-2c2ad402c8f4" }, { new PrefabGUID(933057100), "ecf749fd-99a0-4782-bf0d-4f5923796dfa" }, { new PrefabGUID(-571562864), "19bb2bcc-680b-4226-93c5-342e97b47953" }, { new PrefabGUID(-1321865795), "d8c23f74-8196-41bb-b6e6-7dff3cbf5947" }, { new PrefabGUID(2025615662), "8f88a8d6-a4f8-410c-9529-10cfaa53903d" }, { new PrefabGUID(1271236919), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(1279283644), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(1703128595), "f1937a08-3e92-47c5-821e-47844d6b9a27" }, { new PrefabGUID(248289327), "d1ac188b-529d-4c5b-a3ea-98cbcd681bfd" }, { new PrefabGUID(1427084419), "253c69a6-7a28-475e-8530-bf5f4ac89df8" }, { new PrefabGUID(-1514540144), "6055ea8e-85c2-4f3a-81e0-6f62be45e8d5" }, { new PrefabGUID(1243967840), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(1707139699), "f6d28ea5-69bb-4bd8-9a54-7d01bb3dcccf" }, { new PrefabGUID(870884715), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(-1690985210), "34f5e50c-a078-4806-b59e-4caa9bab7b4c" }, { new PrefabGUID(1954207008), "15e81313-a6df-4fa6-8462-2c706f2be1bc" }, { new PrefabGUID(1332980397), "bb6fb6cd-5125-4225-81bf-10dd69b6f16e" }, { new PrefabGUID(1110550218), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-1562867444), "ac31873a-f4ea-4beb-89c4-98a55b0d3b53" }, { new PrefabGUID(-135435342), "5f3b1386-0989-4c61-919e-b869ac3296b5" }, { new PrefabGUID(-2130812821), "0e4df7f8-cc2a-43cb-9b0e-5aac49237ece" }, { new PrefabGUID(1726420644), "8903e192-d988-43e9-bfac-00d7a67afe44" }, { new PrefabGUID(362941759), "e95ed7b8-3191-4b19-8075-005aa2474866" }, { new PrefabGUID(455638025), "289541ff-bfff-4e65-8793-c13ae329d85e" }, { new PrefabGUID(-164367832), "d7664df2-0081-4874-9ea1-38b5277b981e" }, { new PrefabGUID(-1768698241), "1826b745-07a1-4a03-bb72-95134405bd55" }, { new PrefabGUID(813370507), "ae194664-19e8-44af-aaee-389f0259d956" }, { new PrefabGUID(-1386314668), "fe60d8ec-3c0c-49ec-83c1-80ce86a78d63" }, { new PrefabGUID(1474643910), "ccbfc0e5-5b03-4a31-a2be-7fe6064e27ac" }, { new PrefabGUID(-363718499), "caf886e7-0b32-4e76-ac16-8dca0770580a" }, { new PrefabGUID(-1409142667), "0c6c571f-8005-4fbb-8741-833669d195ee" }, { new PrefabGUID(583764996), "72cdfecc-9f3e-4688-a545-72a711cc64e0" }, { new PrefabGUID(-182923609), "b4e5a6a6-bb70-406e-a9fd-19ace68c3a78" }, { new PrefabGUID(1307976528), "2ca0f200-ef8f-43c8-81bd-1f5feaee9c00" }, { new PrefabGUID(88009216), "f5f0a118-4db5-429f-8dd8-c4590878dc95" }, { new PrefabGUID(-1624411159), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(106516056), "eafdefe1-1a6e-4d19-bb9e-f6cb7f6b53ce" }, { new PrefabGUID(1105981714), "d9f91e96-e927-4d83-8b4c-15dc9eac5e99" }, { new PrefabGUID(-598100816), "9d9e8062-03a3-4104-9cd1-d79dd68525b9" }, { new PrefabGUID(-696770536), "e8d188a3-6c1c-496c-beb4-3513f2b269f8" }, { new PrefabGUID(-102830349), "3a00979d-912d-4c33-beef-f87dec52c085" }, { new PrefabGUID(935392085), "cd7dd20d-1777-41f4-9eff-aafff23d25a5" }, { new PrefabGUID(-1798608844), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(1994084762), "51bba76d-36f8-46fc-ba54-bf69afb140a7" }, { new PrefabGUID(821410795), "a699cdd5-b1f2-4f86-8fa2-94bde9b0b847" }, { new PrefabGUID(-1931117134), "8e39fdff-52d2-47fd-af46-c1d0a395c950" }, { new PrefabGUID(-27238530), "80c1ba60-7d7c-4bf6-808e-de50a7aedea8" }, { new PrefabGUID(152014105), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(362386181), "475e7da5-bd79-4ade-a3af-e9715b34096b" }, { new PrefabGUID(-38051433), "7456e21e-444c-49f1-9e41-9e0e404b55de" }, { new PrefabGUID(201124833), "b3b95a9e-b249-4eca-b1c0-8afd1ebc8808" }, { new PrefabGUID(172410251), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-322544495), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(-1269116849), "39c6261a-b41d-4be2-afd3-66fb9e0d5c85" }, { new PrefabGUID(998259069), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(1540217782), "47d8c72b-1557-4b6f-a4e4-844838dba053" }, { new PrefabGUID(1168555540), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(973763812), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(1083105737), "83b253ab-47ee-43d8-84af-c54d73de7753" }, { new PrefabGUID(189228039), "d5f850ae-492f-4728-bd95-d0388077112e" }, { new PrefabGUID(-1038642372), "e85a47f8-c349-4f33-8ec7-02ec0b9962c2" }, { new PrefabGUID(14297698), "dfb946ae-169a-4d7c-9f0d-401af9ffc9df" }, { new PrefabGUID(-1396190808), "8e39fdff-52d2-47fd-af46-c1d0a395c950" }, { new PrefabGUID(-20041991), "e01c9f9c-1d76-4bcd-9565-0e3540350b45" }, { new PrefabGUID(-112921782), "649de94d-51f9-4954-9cd5-11bdb914be0b" }, { new PrefabGUID(-1401104184), "87951d61-02a2-4787-a7f1-1fb02e268d1f" }, { new PrefabGUID(927039475), "3b0d06aa-66f3-4a99-a166-2a8349b14782" }, { new PrefabGUID(-152150271), "d7819f72-23ed-42cf-87f2-a72569a47630" }, { new PrefabGUID(-703021474), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(-2047402903), "beab1c27-1827-4f15-a6bf-7f3829f2463e" }, { new PrefabGUID(-63123159), "16ab8bc9-e376-4f78-a6aa-1c0c3199eb52" }, { new PrefabGUID(3759455), "1f6446ab-8f09-417d-83b5-9aa2dff92a19" }, { new PrefabGUID(1930526079), "8864803d-27b2-45c1-a2b1-981dab75ae74" }, { new PrefabGUID(-269326085), "f0303c20-d2dd-4b94-b475-c06322c47be6" }, { new PrefabGUID(1241831522), "65ee2a37-fe83-4bc7-8962-9ccdbee9f964" }, { new PrefabGUID(-1021407417), "d8bf027d-8089-4108-a14b-f1aad7909f00" }, { new PrefabGUID(-895015382), "10727671-022a-47df-b9b8-52b0d752b6c8" }, { new PrefabGUID(-1233716303), "c29a7783-4e45-42ec-b8b8-cd03fcc857db" }, { new PrefabGUID(440780337), "2cfa55b9-5bdf-49bd-8ad7-1256dea59575" }, { new PrefabGUID(-1347054873), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(1448686547), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(2023809276), "db832237-02cf-4cb3-8e85-4f592774de73" }, { new PrefabGUID(552409457), "28bd1896-8001-4e19-adf0-06d2f66ab5e8" }, { new PrefabGUID(-106224889), "526ccf3b-12d8-47bc-acca-33eb917db786" }, { new PrefabGUID(444400639), "d836346f-3f6c-4101-83af-5ca4c3e575c1" }, { new PrefabGUID(-364321170), "3fb53e04-3db1-4e7e-a275-1f220d9ac70d" }, { new PrefabGUID(-257494203), "43502d5e-ed48-4dfa-8d94-6113e0a29217" }, { new PrefabGUID(-1161279574), "6f8c94aa-e1eb-4e97-9fc5-c476e7dfaf15" }, { new PrefabGUID(-227965303), "724cec43-c5e2-4373-92ab-fb4973d3dc50" }, { new PrefabGUID(-1461326411), "6951b2d2-bca1-4edc-bcf2-4f4d49e85d2d" }, { new PrefabGUID(207381334), "d1b9db98-5b22-42de-b53d-d0d26e0cd938" }, { new PrefabGUID(-293419350), "5018783f-610a-4beb-8c6a-005d6c87b11e" }, { new PrefabGUID(225530658), "44997ec6-9c82-44a7-9700-544ed3b12817" }, { new PrefabGUID(-2059886133), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(686122001), "e1b1100b-e1b0-47e3-9a92-983f71365421" }, { new PrefabGUID(-684874624), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-82465606), "69f2770d-6db6-46b1-84ff-ec2856a9fa28" }, { new PrefabGUID(685024499), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(-130369231), "41b9b590-b54b-4c1e-8482-861e6128c7bb" }, { new PrefabGUID(-341717525), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-1349059251), "9922c633-fb16-40ed-8f3b-24622dc62523" }, { new PrefabGUID(-710738056), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(-1607893829), "a02b568e-4ca9-4fd9-986d-6d7d2bcc64f3" }, { new PrefabGUID(1613948207), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-77477508), "e6bc05ee-45cd-4f04-bdb3-4c78327f8d1b" }, { new PrefabGUID(460843266), "490d7218-ea13-4132-bb4d-9d8268cdffec" }, { new PrefabGUID(19130904), "24d64df6-3497-4c5f-a5c7-ba3601963f3a" }, { new PrefabGUID(615301463), "a699cdd5-b1f2-4f86-8fa2-94bde9b0b847" }, { new PrefabGUID(-228881628), "2a3f9679-fa40-4175-baac-c6da20611618" }, { new PrefabGUID(-1755568324), "76388169-115c-4326-b834-c14f2dbddfe4" }, { new PrefabGUID(-996201260), "cb7d84d6-1c56-445a-abb7-d554125fcc41" }, { new PrefabGUID(1322254792), "60f85bb4-181c-49f7-a54e-6708e119a9f5" }, { new PrefabGUID(-1885959251), "5f1866da-9932-417d-87a7-1c9da86d67ff" }, { new PrefabGUID(-1674680373), "c8f2db21-c43d-4a5b-93ef-1b48d0e2b0c8" }, { new PrefabGUID(-1361596609), "858b0ef0-ca9d-4dc0-a22d-04c7c4032e82" }, { new PrefabGUID(1033753207), "d016c091-e9a6-470c-9ace-5b79d3efd5c0" }, { new PrefabGUID(820408138), "1c790599-be1a-4926-8b58-c82a64c84809" }, { new PrefabGUID(993033515), "1699788b-277a-444d-abdb-96544b7d76ba" }, { new PrefabGUID(1759077469), "090100a9-eae3-4147-87ec-ffd029dc649e" }, { new PrefabGUID(1428883363), "bba4e6d1-9577-43bf-83f0-b7137ef6924a" }, { new PrefabGUID(-671246832), "0f705077-9433-460e-8e2d-5fea27c1246c" }, { new PrefabGUID(-412448857), "d57885b0-f39a-4773-bfdd-b248889f7363" }, { new PrefabGUID(409678749), "9c25a284-e887-47fc-bd93-ebd4abb0075c" }, { new PrefabGUID(-2100613085), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(-2139183850), "dd60c13f-9745-4fb7-8237-a7d33996882f" }, { new PrefabGUID(-1787563914), "6b950f3a-3a3b-4f79-aee1-8ff23f4ca79a" }, { new PrefabGUID(130269272), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(97169184), "e7b8deca-876a-4d73-9331-1de50c61252f" }, { new PrefabGUID(343217159), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(-651642571), "e1b1100b-e1b0-47e3-9a92-983f71365421" }, { new PrefabGUID(28358550), "a49c6576-c19d-44b6-8903-305d05f98292" }, { new PrefabGUID(-312598876), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(-410008482), "18d80acf-8531-4b3d-9d70-8e5149b54bdc" }, { new PrefabGUID(1128027535), "e1fcf432-0557-4c37-a196-04d199736368" }, { new PrefabGUID(-1302801575), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(1702347530), "adf6aa7f-11a6-49a7-af61-72b8c51a76f5" }, { new PrefabGUID(824237901), "2640a763-4241-4ae1-8ce7-6d9c0bf5bcae" }, { new PrefabGUID(124616797), "c8f2db21-c43d-4a5b-93ef-1b48d0e2b0c8" }, { new PrefabGUID(1915695899), "7c5e6f7a-0300-4e8c-93f0-8d418dedd4a3" }, { new PrefabGUID(-464466648), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(714743556), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(239338934), "1fceb887-408c-4a08-8c1e-9eb4a0e7cd07" }, { new PrefabGUID(-2137364987), "85e3eae8-5c23-4e35-9f41-dfaa300e162d" }, { new PrefabGUID(136740861), "ebef14a8-70da-46ae-9423-f81935351d57" }, { new PrefabGUID(1818351545), "d7cb1a52-0978-4954-a3ba-a1447cd90421" }, { new PrefabGUID(1793042384), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(-898917584), "70f39466-b4e3-4912-a15d-33084f0071bd" }, { new PrefabGUID(-1463158090), "87a2c485-5353-4d63-89c7-f5690e949d86" }, { new PrefabGUID(1851490036), "28ba5d90-52a3-484d-b2fc-5cb0ef69463e" }, { new PrefabGUID(-593608743), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(1307774440), "177619d5-90ea-4290-b0ca-1aaa425ad036" }, { new PrefabGUID(518802008), "4d8508ce-5731-49b4-8eff-1e8c7c347265" }, { new PrefabGUID(-331345186), "0c3211ba-0e89-4582-851f-8710e8e4d387" }, { new PrefabGUID(-1991977825), "6b829f31-2eea-4077-8c2e-054b02ca8353" }, { new PrefabGUID(2069171407), "9952e74b-38b1-4104-a286-d1b429174989" }, { new PrefabGUID(-543524210), "ffdcea98-c8a2-4cd1-91a6-65b62570a1f0" }, { new PrefabGUID(2130810069), "00df7a34-e4e3-43de-ad61-fd60723bc02d" }, { new PrefabGUID(1284160983), "37ecb4e2-8418-4109-846e-bbf51e89d2f5" }, { new PrefabGUID(-2101941878), "9752a383-ef67-449f-b843-62109944ba79" }, { new PrefabGUID(1150376281), "dd1f57ef-db36-46de-85a6-ca645cfcf649" }, { new PrefabGUID(-1674555897), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(271594022), "75c167c9-0101-44bf-976b-d6b142689ece" }, { new PrefabGUID(-536717606), "1641075b-fb8a-403d-9592-7b596de6d981" }, { new PrefabGUID(1566989408), "77c17939-dddf-46a8-b4c3-842d24fdc128" }, { new PrefabGUID(-1531666018), "291c32e8-d894-4ff2-8715-51ed602caa0c" }, { new PrefabGUID(1788016417), "1e3ef569-8fb6-480c-b78f-a7f80c5c408c" }, { new PrefabGUID(880699252), "b9a89e68-963d-4d8b-9c95-bb1e1a2ce0ab" }, { new PrefabGUID(-608131642), "db091b2f-12eb-4134-9818-cbc515cbe6ff" }, { new PrefabGUID(1872733144), "bd56b555-c7c6-425b-9589-70c6fcc27c7c" }, { new PrefabGUID(-1397591435), "d3d856e1-3668-4dc5-bc04-cb1ac8067178" }, { new PrefabGUID(-2043983118), "cf18c7e0-e1bc-42f9-9003-92f9f83fa9a0" }, { new PrefabGUID(-1749304196), "8f9c9cc5-f628-479f-a6f2-b5734e34b148" }, { new PrefabGUID(-305160765), "561d9397-06f0-4d89-9c78-4bd78dcacfcb" }, { new PrefabGUID(2116142390), "7452cad5-56b4-4acb-9690-8cb1199dfcaa" }, { new PrefabGUID(702067317), "dba4a883-1a00-4ccd-94d7-4e857bf8edab" }, { new PrefabGUID(-1527315816), "52ad7e7b-7ff0-44d4-8ba3-3687d2703862" }, { new PrefabGUID(576389135), "c4438986-0e5e-4cd3-be0f-bdae55dc8933" }, { new PrefabGUID(-1645899934), "ad632915-9796-4b77-bad2-2816a485e2c1" }, { new PrefabGUID(-1930402723), "7e656bc3-feef-432a-bf3c-961ea83ed21d" }, { new PrefabGUID(1570363331), "7e656bc3-feef-432a-bf3c-961ea83ed21d" }, { new PrefabGUID(-1123608041), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(-1814109557), "f9163ea5-2828-4e13-8687-5496d0008b24" }, { new PrefabGUID(-117205517), "4552e8ae-fe09-48da-9544-7d091ddf83f3" }, { new PrefabGUID(-431964258), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(567413754), "bc1eab22-617e-4ed6-b9a4-ca162eb14b12" }, { new PrefabGUID(220001518), "9fbe2381-cf57-4a3f-9350-4d4536391d1e" }, { new PrefabGUID(389446538), "6c84e3f4-c8fb-48fa-a047-e788d7d1126c" }, { new PrefabGUID(-926928101), "0b528297-05e6-4664-8f00-f27bc15b740a" }, { new PrefabGUID(-1383718976), "970de4e0-d6aa-48c8-b5d1-55cc42d59137" }, { new PrefabGUID(-1222725729), "c2b45e7d-cacf-4d69-811e-1e8c98ca34ee" }, { new PrefabGUID(1334469825), "691d197a-564d-46d1-a329-ac14630e72e3" }, { new PrefabGUID(-465491217), "b181a58b-8491-42a1-888d-e04246610372" }, { new PrefabGUID(-1455388114), "64ead2e5-c972-4169-ad29-3481d79360c1" }, { new PrefabGUID(-762000259), "5ec0066a-1213-4f0b-b547-03c7859d5c38" }, { new PrefabGUID(-1130238142), "eabf9828-248b-4d0c-862a-7321913e9904" }, { new PrefabGUID(-1458997116), "05773351-6677-48f7-a7e9-e43ea55847c1" }, { new PrefabGUID(-184713893), "44381fce-ece2-4527-9ecb-a955d3ffd37b" }, { new PrefabGUID(-352704566), "3c8fe9ba-bec4-4da2-b8c5-452eb233f9be" }, { new PrefabGUID(-651878258), "1f3d42bb-0189-44dd-a085-da8be631fe17" }, { new PrefabGUID(176401052), "8a1fe020-ef4d-4f69-bc05-6af8326192a2" }, { new PrefabGUID(6711686), "2137733c-02af-41c9-8f80-3226422a5fe5" }, { new PrefabGUID(-313733383), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(633666898), "a2521eee-6420-4a07-b616-fef2c705bddf" }, { new PrefabGUID(-960205578), "50afed52-18c8-477a-84e0-e1f1fa29fc05" }, { new PrefabGUID(-1470260175), "d547666c-cb07-4109-b431-7bdcd9677580" }, { new PrefabGUID(-1402113736), "bee20477-d83f-4209-bfe5-75fc9ff192ab" }, { new PrefabGUID(-1595292245), "abe9c5c1-2361-48d8-84c0-3d6b7ea75330" }, { new PrefabGUID(-814739263), "7a3c71ee-90c6-41be-9160-80d03bc2ba6c" }, { new PrefabGUID(674407758), "90cc90c6-6264-45ce-af78-f9bc4b20f371" }, { new PrefabGUID(-1830162796), "4ba3c58d-75f4-4c7c-bc02-dea811b50d90" }, { new PrefabGUID(423790753), "915ca6cb-f339-4dbe-b3e2-850754da1aea" }, { new PrefabGUID(-211034148), "6a913c23-4a23-447b-80cb-8af8327f6206" }, { new PrefabGUID(-1573584970), "dcd8cf63-4235-435a-a583-8d70e690b82c" }, { new PrefabGUID(991396285), "86a00de5-363a-4b9a-9dde-fca29a7f85fd" }, { new PrefabGUID(1117281334), "ec4506d0-e9d2-45b0-a8a0-a6e431daba84" }, { new PrefabGUID(-1171060793), "a24ad262-d41f-4bef-8999-a7122ba96a1c" }, { new PrefabGUID(-1447213995), "1726158b-cd92-425d-895e-0286b4795d2c" }, { new PrefabGUID(-1740500585), "fa82f5ec-73e6-4d43-a11a-8ee8841ec6ba" }, { new PrefabGUID(-2104396934), "dda63ef0-8e1a-4816-b40b-4fa560ff656a" }, { new PrefabGUID(735880687), "0da25626-1455-4321-8fdf-fd9c717697f8" }, { new PrefabGUID(1302850112), "ea89c977-5e90-4c0b-9a12-d55497052b1a" }, { new PrefabGUID(902426262), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(-24337506), "a4ae5668-66d6-4dac-9eda-159e0a934fbc" }, { new PrefabGUID(-170922187), "49f94711-4c07-4cb3-b99d-4f565532ef99" }, { new PrefabGUID(238268650), "9fcdc307-e5e0-4495-97db-aff20f42055f" }, { new PrefabGUID(-844537086), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(860383634), "0871f942-a155-4118-866f-c8c413dd89b9" }, { new PrefabGUID(-1840162782), "bc06b1d5-95b2-406f-977e-b37b39b30919" }, { new PrefabGUID(1520619383), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(437696083), "c122876a-2b2d-412c-9d7a-49d59b3d028a" }, { new PrefabGUID(-1703746731), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(-2125696865), "f6d737e7-b297-4b7a-8a6d-f397a3352b6a" }, { new PrefabGUID(2053574378), "1cc4751e-012a-4e7a-bc31-336c53de32bb" }, { new PrefabGUID(473545520), "00c78084-4f29-4eaf-a540-cb86c28d4312" }, { new PrefabGUID(-749171183), "991b014e-ea23-41f3-b736-297823615bae" }, { new PrefabGUID(1762839393), "0d52ba2c-0a3c-49a6-af3c-3bca095b6d86" }, { new PrefabGUID(-1289785922), "bf52fe43-9ad4-4d3d-95ca-82a1373d323a" }, { new PrefabGUID(-581757157), "5a5de7cb-b773-474e-bdc9-630d6ba6e08a" }, { new PrefabGUID(506082542), "37203186-39b8-4323-a349-4387e6d58e8c" }, { new PrefabGUID(55473000), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(223899244), "d48ebc77-726a-4c45-9828-d420903a05ea" }, { new PrefabGUID(-1593377811), "88f443ee-d66a-4532-bc64-5a12cfa28adc" }, { new PrefabGUID(-209873380), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(-517906196), "f51d484f-0f9b-4b2c-a5dc-6188e769d087" }, { new PrefabGUID(869276797), "298950b2-7f7b-4ee4-9102-eafec0fc912f" }, { new PrefabGUID(-922125625), "ca218fea-89e9-4a87-beb0-043ffe73c52c" }, { new PrefabGUID(-1276458869), "5e3c8cfa-7d84-45ba-b068-d1371872ab46" }, { new PrefabGUID(-2060572315), "3af959f0-ee14-4bf7-a92d-f288b003f73d" }, { new PrefabGUID(1541522788), "90ce22a1-463d-4c8d-8581-593bb76d937a" }, { new PrefabGUID(750542699), "d6b7893c-6ba9-43ef-8af4-707b09c48446" }, { new PrefabGUID(-1242947472), "2d5590f1-43fc-4ca7-9fa1-9f57e2c550ff" }, { new PrefabGUID(2020764183), "16e0e8dc-9f5e-4f06-aaf5-21042d30aa9c" }, { new PrefabGUID(-2051574178), "85637060-9909-4f28-8d93-259321751c29" }, { new PrefabGUID(1613130430), "9707b792-9f4b-4b3d-8e55-569d26d6b49c" }, { new PrefabGUID(-222860772), "a7e02b2f-4171-4257-9148-32387cbff763" }, { new PrefabGUID(-449615886), "ad7c77bc-ba33-4ec3-9050-31711e7dbc63" }, { new PrefabGUID(-1033721040), "f33e7530-1ac3-4c8d-ba31-b5fdc18aeeb8" }, { new PrefabGUID(-796306296), "74c12753-36d5-4da9-a974-9747654c341d" }, { new PrefabGUID(-1998017941), "cc23b63d-dd8e-496e-9923-93a15c0fb609" }, { new PrefabGUID(1963988265), "94ee38ce-166e-4a0e-8448-3189bd94e8c3" }, { new PrefabGUID(560446510), "9d88b6a4-efbd-4571-9c7e-12de69a9243b" }, { new PrefabGUID(2055058719), "f404363e-1046-440c-9e8e-905b59d7982c" }, { new PrefabGUID(-930514044), "13f5e1d9-b282-4966-9790-54eab06ba973" }, { new PrefabGUID(-1555051415), "4f9789b2-db0d-4282-9ad2-746ee2c33505" }, { new PrefabGUID(-435501075), "253c69a6-7a28-475e-8530-bf5f4ac89df8" }, { new PrefabGUID(198951695), "f5104b34-6c62-4d19-a181-305de954f463" }, { new PrefabGUID(1778128946), "ca218fea-89e9-4a87-beb0-043ffe73c52c" }, { new PrefabGUID(-276593802), "21d227ba-e193-48a9-ac0a-40da97bbda16" }, { new PrefabGUID(-425306671), "47f993a6-88a9-4526-ab3e-8edfc896294a" }, { new PrefabGUID(429052660), "bd3a763c-e43c-4f45-955e-f065653bd16f" }, { new PrefabGUID(1063517722), "8a272545-6718-406f-89d5-ab5c7d715395" }, { new PrefabGUID(177536500), "7bf886fd-d8e3-4fc8-9b3d-b08d07ec5d5e" }, { new PrefabGUID(-1043479168), "0b8eb8c3-e272-4ddb-8d0c-8876ad78868c" }, { new PrefabGUID(1785926321), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-383004511), "febbf9cc-c0d3-4b9a-b5c6-bd141d7a5df7" }, { new PrefabGUID(-849449432), "b6b1502a-7f57-4195-975c-2d9449d6a2fc" }, { new PrefabGUID(1014370193), "6beba5e2-f25a-49ef-8f0e-c186a80a2d04" }, { new PrefabGUID(1364444719), "1398ff59-dd05-4f94-9b15-300fde60a9f7" }, { new PrefabGUID(-1952560879), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(2114304481), "492071d4-4e4b-4e53-a7c5-841c5d61f709" }, { new PrefabGUID(1556544548), "f0303c20-d2dd-4b94-b475-c06322c47be6" }, { new PrefabGUID(492964298), "d1ac188b-529d-4c5b-a3ea-98cbcd681bfd" }, { new PrefabGUID(-996999913), "cd81705c-0140-491d-9feb-f2c0e2e47cc6" }, { new PrefabGUID(756555009), "7456e21e-444c-49f1-9e41-9e0e404b55de" }, { new PrefabGUID(978074988), "9cc1f937-ebf3-4ec6-b654-e71bfaa255f0" }, { new PrefabGUID(1479677538), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-1233700610), "2af28421-0c44-45c3-abf8-3c8a6e5fbfc5" }, { new PrefabGUID(-137886670), "91c155f6-c866-4e31-9131-f6f1f97cd56f" }, { new PrefabGUID(-1542642288), "88f72d17-e1cf-4bb6-88e0-9df5d52c8f7b" }, { new PrefabGUID(-1913800363), "ba0eb19c-23a3-4227-8be6-720fbe0aa53a" }, { new PrefabGUID(-1221174479), "ba78a518-b999-480f-bdcc-5542cc5491bc" }, { new PrefabGUID(-1205373095), "cffa2a58-6ada-4102-9de3-8b908ffe09c4" }, { new PrefabGUID(2094602185), "6dd05203-d10b-48e0-9a91-cf1999b63e4c" }, { new PrefabGUID(317317590), "496c941c-69cb-44a1-b3a1-89e2e8324613" }, { new PrefabGUID(-869864524), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(660670410), "9231fd1c-9eb9-4911-8b7a-727b9fa2e9a9" }, { new PrefabGUID(626083889), "c4f26f2b-f017-452c-a418-541fdb6a6086" }, { new PrefabGUID(-1003381140), "7e1a0d3c-e0eb-41fe-85f5-a426e9fabd49" }, { new PrefabGUID(-1455124124), "00e8b0c7-1553-4e9b-92ba-59b18b776ec3" }, { new PrefabGUID(1350548439), "9a9b4c4e-0ebd-41aa-86ce-21b8b54623ff" }, { new PrefabGUID(1035334240), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(320961855), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(-2141642225), "4b785bd6-c907-4380-a897-6b2b9ded24fb" }, { new PrefabGUID(1340494453), "80a22c4b-c4bd-4115-857c-f87a6ecdd7ee" }, { new PrefabGUID(1823379076), "2fe2ff47-6cad-4dea-b454-65bc87975cc5" }, { new PrefabGUID(948466634), "25c57d28-2a87-4671-b937-f71cbaab0309" }, { new PrefabGUID(1594270493), "5685442e-258e-40af-ae72-20083e801e83" }, { new PrefabGUID(-1042299347), "5db5a635-0691-4ce0-928a-de4a43d880eb" }, { new PrefabGUID(-1522497513), "41a8f63c-edb7-4418-bda7-62793419af17" }, { new PrefabGUID(-1390536751), "1f6446ab-8f09-417d-83b5-9aa2dff92a19" }, { new PrefabGUID(1271087499), "1f6446ab-8f09-417d-83b5-9aa2dff92a19" }, { new PrefabGUID(213736942), "ab9c0d10-3287-4aa4-8dcf-c5fa938de06f" }, { new PrefabGUID(886819019), "157d25b3-9ca1-47d6-a639-98046893b799" }, { new PrefabGUID(-826325611), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(-1844141622), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(1533847605), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(2106567892), "9fbe2381-cf57-4a3f-9350-4d4536391d1e" }, { new PrefabGUID(-774462329), "53932c04-d589-4945-b773-5740744163cd" }, { new PrefabGUID(-651841188), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(-204051056), "5bee13d4-cfd1-458c-ab66-38799284fefc" }, { new PrefabGUID(970650569), "492071d4-4e4b-4e53-a7c5-841c5d61f709" }, { new PrefabGUID(806031638), "739cd0e7-7805-4db7-bfc6-630ae9f58771" }, { new PrefabGUID(-2137054310), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(-2147445292), "b2d1d3fe-ba17-4619-a3a3-2296f61f9300" }, { new PrefabGUID(1259464735), "f5104b34-6c62-4d19-a181-305de954f463" }, { new PrefabGUID(526090146), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(1310923765), "cbfbbf33-a706-415c-8449-e01431457610" }, { new PrefabGUID(-1012087769), "27b27ac4-c2b1-41b7-a0c6-74541b51ae60" }, { new PrefabGUID(-1397287045), "cc3ce453-48c5-40c8-8209-3030742ffa37" }, { new PrefabGUID(-2133879652), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-1578565561), "826ebdba-e5f7-4303-b172-5b6a85a042c4" }, { new PrefabGUID(1719144622), "37b5ce1c-9a39-44a1-925f-e117981a0a78" }, { new PrefabGUID(-1061940339), "f8e3d576-6448-4b75-a4a6-1ee55a08d1ce" }, { new PrefabGUID(1908312304), "0a5c5f9b-5209-4938-b2dc-11109fa0eb3f" }, { new PrefabGUID(2134082866), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(1030854657), "dc3962d8-61da-474b-a54f-6e97df442bd1" }, { new PrefabGUID(-1199531707), "6b24d813-7df2-46c6-acfb-a45f1b6141ea" }, { new PrefabGUID(-1257026088), "7584a7df-b33f-4b10-a481-7486f65e2bee" }, { new PrefabGUID(-1236809045), "ab62970d-b20f-437a-bf05-92f18e3b4ca3" }, { new PrefabGUID(-1289010178), "a9a23cdb-0232-469b-8676-751ce68e29cf" }, { new PrefabGUID(1953885108), "23424121-c0fa-46f4-8c22-1dfdf196dd20" }, { new PrefabGUID(-1190647720), "20cb3942-7604-4b0f-9107-f348fa0e4ced" }, { new PrefabGUID(519281449), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(1392314162), "f029ce8b-531a-468a-bb58-2efff454c610" }, { new PrefabGUID(157004582), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(968796494), "028bbfd2-2fbe-4f49-9308-4aff74de6d44" }, { new PrefabGUID(205207385), "ffeedf28-0c6d-4b85-b451-2adfd8ad3f10" }, { new PrefabGUID(-958936382), "3eda5a97-6c9a-415c-a0b9-5e31878d2f05" }, { new PrefabGUID(272647158), "39c6261a-b41d-4be2-afd3-66fb9e0d5c85" }, { new PrefabGUID(-744023422), "2ba9299d-73d0-4385-bc8b-93ba8f413a9b" }, { new PrefabGUID(-242277891), "bcb2a261-4f42-443a-87a1-b4ec2f1f84a1" }, { new PrefabGUID(660533034), "da64cbed-8ef1-4ab7-b6a0-c0cae0dc6fec" }, { new PrefabGUID(-2085919458), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(-1929817673), "700d9931-a6c3-4aec-a684-38e23f2d1e14" }, { new PrefabGUID(1884115881), "4e304669-1f2a-4df6-a528-b3b71631b38a" }, { new PrefabGUID(608397239), "2bd93034-7020-4066-ac5f-97d00042fe3a" }, { new PrefabGUID(-1619308732), "6029af38-711d-4550-b572-64075b574feb" }, { new PrefabGUID(977816262), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(1630030026), "090100a9-eae3-4147-87ec-ffd029dc649e" }, { new PrefabGUID(-1837769884), "ebf34147-b6c2-4b31-a19b-fb010c207e28" }, { new PrefabGUID(-406808302), "5dec48d9-12fc-427e-b13b-c698b3d63006" }, { new PrefabGUID(-604941435), "a40237e8-4590-490a-9829-794a86c7c10a" }, { new PrefabGUID(12127911), "bbb7ebe0-86a2-4243-b198-58ee1fa68dc7" }, { new PrefabGUID(-567468235), "51bba76d-36f8-46fc-ba54-bf69afb140a7" }, { new PrefabGUID(-903587404), "3a2d7c41-1e20-453c-aa56-f48aa5b5518a" }, { new PrefabGUID(-1579575933), "7a3f0ce5-b407-4e71-bb06-c49e17bb690b" }, { new PrefabGUID(-1714012261), "357dfd3d-16a8-4f1f-b6f5-3e8abdb45c4e" }, { new PrefabGUID(1853029976), "e8c3895f-ed2b-4d14-9907-98f8444edf05" }, { new PrefabGUID(-768054337), "216f2d12-8d66-4e0c-b7a7-d0308d39dda9" }, { new PrefabGUID(606339127), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-314614708), "7aab8ec7-4782-47e8-b1cd-d58df9b538fc" }, { new PrefabGUID(-67943596), "f3102f4a-091a-4677-a12b-3e873ba96996" }, { new PrefabGUID(-847062445), "9996d0b3-1211-45eb-b6ce-03a288945274" }, { new PrefabGUID(-1333849822), "73919a4b-6467-4e63-8cc5-9366aa87d76a" }, { new PrefabGUID(-511360389), "4ba1d63d-33cc-4461-ad0b-cd24a34a9465" }, { new PrefabGUID(-1122389049), "f27aabb6-fb89-4264-b40f-773fbc027f6e" }, { new PrefabGUID(836066667), "2f5c2b73-3a14-405f-8433-e5329cb15bcd" }, { new PrefabGUID(769603740), "5a6b3971-013a-4ef5-bb00-1b6f4c817df2" }, { new PrefabGUID(-94650344), "5f7d2182-d9e3-452b-b490-4d9ed659e891" }, { new PrefabGUID(-1993708658), "8d2b6d93-9fe7-4a78-8b01-fe2a8a702fc2" }, { new PrefabGUID(1296724931), "8f484084-be8f-4eb3-b2ef-7ebf50ba8cf0" }, { new PrefabGUID(34841965), "df47bc51-1d42-4ade-83b7-c469f21b0c88" }, { new PrefabGUID(-650855520), "d607f8d2-0c0e-4eb7-aca0-810c11e52059" }, { new PrefabGUID(-261654929), "ef2db74a-9328-48c2-84f7-19abf7ddea5b" }, { new PrefabGUID(1275572025), "4bdd29b4-551b-42d8-b9bd-25eb68623432" }, { new PrefabGUID(960030104), "9024056e-bc99-4713-ba52-f2c6874acafd" }, { new PrefabGUID(-793913499), "ae3e3f14-b4cd-4002-8bee-a3ab49581faf" }, { new PrefabGUID(150621304), "7db17793-2a6d-4290-a865-96b20a990c2e" }, { new PrefabGUID(-1046748791), "0ae1213b-bdbc-44ea-8bb5-30ad10538c5e" }, { new PrefabGUID(2100090213), "2d3bc87c-e394-44f2-9968-f24f5e50416f" }, { new PrefabGUID(131015492), "e50f4966-2e1a-4202-8a4d-b616fe95c03b" }, { new PrefabGUID(2019195024), "ad330dd2-1c52-49db-91ac-81a808347b8e" }, { new PrefabGUID(-16130732), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(-46006079), "59450c92-cb16-4d7c-831e-4d50e393b9cd" }, { new PrefabGUID(988417522), "2a4a5aa7-dd13-462f-81bd-1838ecd060fa" }, { new PrefabGUID(-1838793646), "9cf16903-e726-43c8-b237-10b7e9f4567b" }, { new PrefabGUID(834864259), "b3e66c75-1f29-4835-829b-cab41bec8fd8" }, { new PrefabGUID(-1583485601), "32e3bcee-8c19-4ffd-9998-5441c1faf888" }, { new PrefabGUID(-1324340002), "3edbb990-fcf8-4ed9-a4bb-57493c19dc87" }, { new PrefabGUID(-562511117), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-1564741377), "90ad9c60-8628-498c-a562-6580ca397057" }, { new PrefabGUID(1947940084), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-560146452), "2977ba91-8cf4-459c-908c-5e2634d129e1" }, { new PrefabGUID(662891042), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(502133568), "b9c1e67e-94fa-430e-ac47-1c4dfcc8c347" }, { new PrefabGUID(-1921018689), "0e4cf14b-aa37-42ff-8ab7-82ecdcb90d0c" }, { new PrefabGUID(-1752332712), "532e6391-a851-439c-a13d-febde43a6c20" }, { new PrefabGUID(-2044057823), "3a00979d-912d-4c33-beef-f87dec52c085" }, { new PrefabGUID(-126076280), "51bba76d-36f8-46fc-ba54-bf69afb140a7" }, { new PrefabGUID(-850142339), "8e39fdff-52d2-47fd-af46-c1d0a395c950" }, { new PrefabGUID(147836723), "92463350-1d10-4d0b-8615-e8d45465cdb4" }, { new PrefabGUID(-2053917766), "9a9b4c4e-0ebd-41aa-86ce-21b8b54623ff" }, { new PrefabGUID(-1777908217), "80c1ba60-7d7c-4bf6-808e-de50a7aedea8" }, { new PrefabGUID(-625033436), "a40237e8-4590-490a-9829-794a86c7c10a" }, { new PrefabGUID(-297349982), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(1389040540), "cd7dd20d-1777-41f4-9eff-aafff23d25a5" }, { new PrefabGUID(1071656850), "2f1d9a90-05fd-43ac-8403-4d4c07d4e1be" }, { new PrefabGUID(1860352606), "e841ae68-7d42-4a52-a2c6-2b8b7544bbd5" }, { new PrefabGUID(-1023762087), "e4063fce-8fee-4625-ba4e-d07ff5dc6f83" }, { new PrefabGUID(998240678), "16e0e8dc-9f5e-4f06-aaf5-21042d30aa9c" }, { new PrefabGUID(1738392650), "40a9c9bf-a3ed-49c5-bc8b-5dfbd8457556" }, { new PrefabGUID(1469185034), "9c071152-af39-45b5-a91f-bd8d0eaa8baa" }, { new PrefabGUID(-14368032), "8b23b059-fe4c-4c89-bd77-a9a9dcf57ca3" }, { new PrefabGUID(1508214166), "da42a6c9-e746-4ea7-8be5-194016c6b694" }, { new PrefabGUID(1395895315), "79dd4549-a321-469c-8a95-80fa17a89673" }, { new PrefabGUID(-1296203752), "6cf2ce06-1561-4a26-86a2-341a16b94228" }, { new PrefabGUID(551949280), "1d8b5053-9840-4e04-a609-7f77cb7ffeea" }, { new PrefabGUID(-1024379681), "cd81705c-0140-491d-9feb-f2c0e2e47cc6" }, { new PrefabGUID(2085163661), "12e91175-864b-4653-8b6b-6eb094f1bcb4" }, { new PrefabGUID(1252507075), "645eb41f-f454-40a3-880d-48941b5bd2e4" }, { new PrefabGUID(-2029933415), "3a72479b-4ddc-4413-9423-46e5fcc28a8b" }, { new PrefabGUID(-595456862), "283b0102-b216-4193-bc4a-a0d7ccc96672" }, { new PrefabGUID(-950839771), "96601a2f-2edd-441a-a0c6-2b7bac150ef0" }, { new PrefabGUID(-1803818846), "d2dfed12-2e9b-4541-b163-2fbaa3e8163f" }, { new PrefabGUID(-1166627007), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(-840839363), "0484b02e-8ca9-4f80-8dad-e0c4c470622f" }, { new PrefabGUID(1913822231), "752549aa-06f5-4836-aab3-62f6e3b59a5f" }, { new PrefabGUID(926722036), "ba0da94d-60a8-4f1e-a58b-a3fe3af97c99" }, { new PrefabGUID(820932258), "ee79e1ce-ee9c-4140-a79e-b2d28a8153f3" }, { new PrefabGUID(1887724512), "05598bf6-7769-444a-8905-177546804fff" }, { new PrefabGUID(1200302278), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(-1932461974), "5e3efd44-c838-4e52-9542-ad03dca531ad" }, { new PrefabGUID(-1219959051), "00e8b0c7-1553-4e9b-92ba-59b18b776ec3" }, { new PrefabGUID(-534142437), "e4063fce-8fee-4625-ba4e-d07ff5dc6f83" }, { new PrefabGUID(343324920), "7e1a0d3c-e0eb-41fe-85f5-a426e9fabd49" }, { new PrefabGUID(763326246), "b6b1502a-7f57-4195-975c-2d9449d6a2fc" }, { new PrefabGUID(-999518496), "b3ea436a-fc5c-4cb4-b530-29790ddbb01a" }, { new PrefabGUID(-90702575), "1398ff59-dd05-4f94-9b15-300fde60a9f7" }, { new PrefabGUID(181112381), "6beba5e2-f25a-49ef-8f0e-c186a80a2d04" }, { new PrefabGUID(1101206623), "febbf9cc-c0d3-4b9a-b5c6-bd141d7a5df7" }, { new PrefabGUID(-1819786494), "fd9c9790-96f3-4b74-b305-62bd1c5ed7fc" }, { new PrefabGUID(711062517), "2b524815-ce53-4f5e-8e1e-3d5bf18c62ee" }, { new PrefabGUID(1588258447), "a5b0f9c3-430d-4c90-8704-251202778bbf" }, { new PrefabGUID(2038011836), "c4d250f2-437a-43e5-b93e-217e30587822" }, { new PrefabGUID(1244180446), "e9323c78-9ec6-4c58-b0c8-2e6e7e0e45e1" }, { new PrefabGUID(-745793193), "0b230626-a70b-4128-bc71-5b0c428bfd05" }, { new PrefabGUID(-1017402979), "3719afd2-979c-4881-9917-d079a701443c" }, { new PrefabGUID(-589858836), "994efb5d-29e4-4652-94d2-1ead98220c9e" }, { new PrefabGUID(-1805325497), "37f33a05-a18e-4445-947c-a9ccb192e984" }, { new PrefabGUID(-1907572080), "cb5cb21e-c3d1-4f5e-a7b1-2f34f2efc319" }, { new PrefabGUID(-810738866), "4248133f-011d-4c83-b2b4-0768113cdcef" }, { new PrefabGUID(1821405450), "ab479ac6-9520-4e48-b1e6-e300416c013a" }, { new PrefabGUID(1123463900), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(780044299), "950446a9-072a-4863-b7c1-aacb34d2ccf6" }, { new PrefabGUID(-958110636), "387bc0ae-2710-40e5-b731-f1b1f1d6c035" }, { new PrefabGUID(-2091288477), "6b3abeed-4775-476f-929c-f8011018ef97" }, { new PrefabGUID(-1566269773), "3a933056-c2c4-4596-958e-5bdeb171711d" }, { new PrefabGUID(-196284663), "6cf2ce06-1561-4a26-86a2-341a16b94228" }, { new PrefabGUID(1128262258), "22e0bf5b-545f-4031-885e-230edb8010a0" }, { new PrefabGUID(805157024), "33b09f26-749b-4435-a7c8-195230aacc77" }, { new PrefabGUID(-1797796642), "a109fcac-2ab3-4192-92f6-3708ac786a07" }, { new PrefabGUID(-700774739), "3b77d47e-592c-4932-bee9-e485fbb839f9" }, { new PrefabGUID(-1150810012), "d67e26d1-37f4-46c9-add2-e4790529b8e5" }, { new PrefabGUID(-219760992), "654e1b00-7140-497d-a68d-7597c6c39894" }, { new PrefabGUID(1249076837), "9a4b122c-993b-4cef-b011-05abde5fc8b4" }, { new PrefabGUID(828432508), "faf99a30-bc16-47ba-aae1-8a0e5db8ae17" }, { new PrefabGUID(574313564), "3af959f0-ee14-4bf7-a92d-f288b003f73d" }, { new PrefabGUID(1370998844), "dfb946ae-169a-4d7c-9f0d-401af9ffc9df" }, { new PrefabGUID(-353076115), "78f43368-bc7c-41e5-bbf1-f0cbc4e14ced" }, { new PrefabGUID(1283345494), "563d2334-ea8d-4701-af21-0cb4a6fb5898" }, { new PrefabGUID(357608868), "7c8129e4-a804-4e01-8c62-a9dc5c531836" }, { new PrefabGUID(689272399), "4c4aa21c-43b3-45ab-9820-6d8b0628ebba" }, { new PrefabGUID(1354115931), "68a1aa32-8d7a-43fb-b71c-af14c9c754a1" }, { new PrefabGUID(-1676748911), "e3dc878e-eae2-4816-8453-45de979453a7" }, { new PrefabGUID(-1886460367), "9f9f95e7-c83c-4274-9205-2f76999181f2" }, { new PrefabGUID(1712262077), "19238e0f-740e-4a84-9c71-0ebc270ec188" }, { new PrefabGUID(1587354182), "263c135b-4a34-4cf9-9ad2-b5528ea7f300" }, { new PrefabGUID(-2066262923), "2fd499e5-2f64-4b12-9dfb-72aeddd3603c" }, { new PrefabGUID(-1090887222), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(-1601295908), "9a7c1ebc-deb6-4042-8c9c-7581407b1f06" }, { new PrefabGUID(-437611596), "be3ae420-72ed-4a07-acac-d516d0287c20" }, { new PrefabGUID(101601247), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(-2136716453), "3b34e31f-6da6-48c0-b550-1fd71872ab64" }, { new PrefabGUID(710159072), "722c2d9e-5965-4054-b822-79151d5d097c" }, { new PrefabGUID(-1199259626), "4d2c08a1-334f-48d4-a5fe-165f54624dd5" }, { new PrefabGUID(-1818243335), "2876ee12-06fe-484f-bd06-655c3c59a2ff" }, { new PrefabGUID(-1905547794), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(1488205677), "b92bc003-e567-44ca-bfaf-cefbee0bebaa" }, { new PrefabGUID(-1024626758), "b2d1d3fe-ba17-4619-a3a3-2296f61f9300" }, { new PrefabGUID(442700150), "b2d1d3fe-ba17-4619-a3a3-2296f61f9300" }, { new PrefabGUID(1402953369), "ac468ed0-9659-4a1d-855f-c087d437ed0a" }, { new PrefabGUID(-1237019921), "58ef5c2c-ee41-4e62-8c67-7a224272e8cb" }, { new PrefabGUID(1552240197), "6cabfe46-754a-4142-b28a-504824b0a068" }, { new PrefabGUID(1126901893), "298950b2-7f7b-4ee4-9102-eafec0fc912f" }, { new PrefabGUID(-978856806), "918eb1b9-fcce-41fa-9037-b83cf0745f29" }, { new PrefabGUID(1223264867), "fe78ab51-b91f-4cc0-99ce-49c8146b5dab" }, { new PrefabGUID(-1413694594), "e36441c3-4503-4fca-9bbd-9e61a26f5b55" }, { new PrefabGUID(1905539368), "71a53629-8abd-42d6-87a7-6086ba1925d5" }, { new PrefabGUID(-1063966176), "3e9eb57f-57fc-4c56-b86d-f9f1d627027b" }, { new PrefabGUID(-345596442), "c930d281-a86b-47f5-8cb1-8f108eed8675" }, { new PrefabGUID(394140527), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(876293388), "554751c9-68fc-412b-9cc2-a2af569a7a57" }, { new PrefabGUID(424158416), "9b471228-780f-4239-9186-fcb8ddeaafd1" }, { new PrefabGUID(140526202), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(1387124262), "226639ab-5bf4-443b-8730-e6af9266d32b" }, { new PrefabGUID(666433583), "26eb9db5-9521-478e-a423-6f4d4e3ceab6" }, { new PrefabGUID(1172935197), "7d50c766-d42d-4776-9710-8db399c6af99" }, { new PrefabGUID(-699863795), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(447901086), "9234da8f-d502-4cc8-974c-0a2527421b02" }, { new PrefabGUID(-580716317), "666ae7cc-f3c5-4914-b76a-623033db5fe6" }, { new PrefabGUID(1779299585), "c8616346-1ed2-4a6e-beb5-e1ddc9d01ef2" }, { new PrefabGUID(-1508992859), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-2014020548), "cace9261-1b54-4d50-ae3d-dbf79d281eba" }, { new PrefabGUID(830032282), "c2f282eb-cd2f-4954-8cc9-fc6d36dc5fb9" }, { new PrefabGUID(666089763), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(-1796954295), "abf54b6f-f281-497a-8820-4d070634a6b8" }, { new PrefabGUID(-295674777), "8f9e91f1-4915-4ffa-a558-5cdbd819dc8c" }, { new PrefabGUID(1996361886), "ef3172de-b588-4237-a5e7-7a4fad3638af" }, { new PrefabGUID(-1961050884), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(215017089), "3fcf3a19-6657-4691-8aa1-1197c302115b" }, { new PrefabGUID(665418354), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(-112151309), "59494f79-9328-45db-84d2-55ecb635294a" }, { new PrefabGUID(-1785271534), "a9085a62-f6dc-40e4-b67c-4fb11f41bf3c" }, { new PrefabGUID(50824544), "88f72d17-e1cf-4bb6-88e0-9df5d52c8f7b" }, { new PrefabGUID(-1564372276), "5a81ec1a-21df-4c94-a4fd-1e6a47ed1dc0" }, { new PrefabGUID(-668460646), "f06d140b-5ace-4b9c-a045-d75ea739c945" }, { new PrefabGUID(-1783670291), "3cb936cf-b0da-40dd-977d-e504f083ad0b" }, { new PrefabGUID(-2102875089), "9c517103-e50e-4e96-a0ff-20f404ad6216" }, { new PrefabGUID(206495029), "863c027a-876a-4d22-ac7c-842cfcc95546" }, { new PrefabGUID(-223452038), "58053d16-1049-493b-be72-8154a11debe5" }, { new PrefabGUID(1065194820), "3cb936cf-b0da-40dd-977d-e504f083ad0b" }, { new PrefabGUID(82781195), "298950b2-7f7b-4ee4-9102-eafec0fc912f" }, { new PrefabGUID(866934844), "8864803d-27b2-45c1-a2b1-981dab75ae74" }, { new PrefabGUID(1840869087), "dbb8880a-8378-41e3-9827-73d8a3f47712" }, { new PrefabGUID(1393113320), "722c2d9e-5965-4054-b822-79151d5d097c" }, { new PrefabGUID(-687294429), "43a0dad4-d248-4d08-900a-2cf2e667fa2d" }, { new PrefabGUID(1748886117), "3af959f0-ee14-4bf7-a92d-f288b003f73d" }, { new PrefabGUID(-1651990235), "39b3cbaf-8c58-4542-a53f-2c2af4cc1366" }, { new PrefabGUID(-247737453), "d8106954-515d-46f1-9088-80a099f852b5" }, { new PrefabGUID(1221976097), "f51d484f-0f9b-4b2c-a5dc-6188e769d087" }, { new PrefabGUID(1850870666), "dfb946ae-169a-4d7c-9f0d-401af9ffc9df" }, { new PrefabGUID(1951565953), "c8053c20-62cc-4218-bd97-62657333cde7" }, { new PrefabGUID(703783407), "5e3c8cfa-7d84-45ba-b068-d1371872ab46" }, { new PrefabGUID(-1502177717), "e85a47f8-c349-4f33-8ec7-02ec0b9962c2" }, { new PrefabGUID(-1519267007), "3a00979d-912d-4c33-beef-f87dec52c085" }, { new PrefabGUID(-1329744719), "07069251-d4dd-45e8-a45b-2c47c45f00ff" }, { new PrefabGUID(-1641042717), "c4f26f2b-f017-452c-a418-541fdb6a6086" }, { new PrefabGUID(-327754127), "fe62ac2f-0da5-4df2-9346-71cd1312e01b" }, { new PrefabGUID(1042817390), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(-647547545), "c019e04f-9aff-428c-a5c3-afe3a9ebd488" }, { new PrefabGUID(51576788), "79d60a15-d4cc-47b8-a99b-406415cee51a" }, { new PrefabGUID(610958202), "1acc031d-2b42-481e-b769-b8a82926d35c" }, { new PrefabGUID(-69916288), "4537e1f8-56d2-4841-b1b4-c750ee5ebd9b" }, { new PrefabGUID(322804535), "0da25626-1455-4321-8fdf-fd9c717697f8" }, { new PrefabGUID(744344540), "d8441cb6-6ad1-48f3-8b05-41596aee2873" }, { new PrefabGUID(138060378), "b4984411-d795-4c21-9393-e5b363a260b1" }, { new PrefabGUID(889298519), "68f4f8ca-8b5a-4815-bbe8-3408eb527d7f" }, { new PrefabGUID(-2127687996), "2fd499e5-2f64-4b12-9dfb-72aeddd3603c" }, { new PrefabGUID(1247389106), "59450c92-cb16-4d7c-831e-4d50e393b9cd" }, { new PrefabGUID(-454576348), "283b0102-b216-4193-bc4a-a0d7ccc96672" }, { new PrefabGUID(-205820651), "2ff9a674-cf11-4cad-850d-4a618d26fb7d" }, { new PrefabGUID(-1922998918), "af6e96ca-f8c7-4c00-addc-aa7c8a9a26dd" }, { new PrefabGUID(-1394295910), "a8b61073-6059-4aac-b5b8-726f9f62bbf3" }, { new PrefabGUID(-36717533), "1937df4e-c37f-4982-9159-03bd43b0386d" }, { new PrefabGUID(285318201), "c29b211a-5cd5-4f83-ba9c-b2af2382375a" }, { new PrefabGUID(-11246506), "201f12cc-0def-49b2-8f53-3f617d6f506a" }, { new PrefabGUID(1272855317), "1c790599-be1a-4926-8b58-c82a64c84809" }, { new PrefabGUID(1753801067), "2d3601b5-ef04-4cee-8b26-ea190d0e65f6" }, { new PrefabGUID(1413772406), "ed7f3af4-ab32-4b1f-b2e1-e6b9c080ad2a" }, { new PrefabGUID(2107622409), "7ccbf212-f3de-4d1b-93d1-4f1e90211712" }, { new PrefabGUID(1381699867), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(1226559814), "b9ebd761-349b-485d-987e-00772ded4b88" }, { new PrefabGUID(-1793793429), "c8053c20-62cc-4218-bd97-62657333cde7" }, { new PrefabGUID(1499160417), "5b4da24e-53b6-474e-91d0-c54159d1b145" }, { new PrefabGUID(-1897495615), "014330b9-06d2-4a6f-afdb-5145c93c8c87" }, { new PrefabGUID(-2035190786), "98864279-123d-4b7d-9948-9e7c9989c9e9" }, { new PrefabGUID(531984050), "4196d5de-1eff-4950-be07-84013a7fb347" }, { new PrefabGUID(1985892973), "5e76e327-f275-4fe2-a8d4-77d10bf59cf8" }, { new PrefabGUID(-1645974345), "a318f705-b651-4f05-93b4-ff354b0948ba" }, { new PrefabGUID(-911541799), "4d1c40e0-b38d-40ed-afeb-6edbf34563df" }, { new PrefabGUID(776216743), "d5326dcc-0b27-42c3-83e9-ce27b3b80060" }, { new PrefabGUID(489001758), "df77fd9d-7d13-4991-8c78-c5fea2c6c6e4" }, { new PrefabGUID(764480170), "9c25a284-e887-47fc-bd93-ebd4abb0075c" }, { new PrefabGUID(1755478077), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(1055898174), "feeecdb3-f41b-46d9-b368-38b6923d552e" }, { new PrefabGUID(271061481), "c93c1bff-9972-4db6-b683-8b780feebdbe" }, { new PrefabGUID(125611165), "75ac912e-6631-4746-a009-7a6d8cdedd50" }, { new PrefabGUID(-204401621), "e3240d8c-0ff5-49f3-84c1-be2ac309def2" }, { new PrefabGUID(-1322000172), "b8c6c3a6-309b-4e55-bdf5-cca5861a2d96" }, { new PrefabGUID(1400688919), "98137b0a-c750-4b38-808b-79897f151cb8" }, { new PrefabGUID(-2017255390), "255722ad-8e0e-4000-be76-85dba4c89158" }, { new PrefabGUID(282707515), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(759775881), "82f4aebb-2b7a-4e56-95bb-82d1d063e71a" }, { new PrefabGUID(1519475093), "1cfed3cf-1052-4ef1-93e9-bce624427062" }, { new PrefabGUID(-832387204), "33584318-3948-4309-9022-940b0ef63ea7" }, { new PrefabGUID(1522792650), "91df3a93-5672-46dd-8a63-3e193e6dfe27" }, { new PrefabGUID(1364460757), "7309750d-6b8f-4bd3-a7ec-d4a5337f6cff" }, { new PrefabGUID(-107137497), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-114411609), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-588909332), "23c172a7-b919-4dcf-b715-319f2498e2ef" }, { new PrefabGUID(1529216919), "07069251-d4dd-45e8-a45b-2c47c45f00ff" }, { new PrefabGUID(1592149279), "a3895a00-8e38-4ad6-a268-bab2eb920e9b" }, { new PrefabGUID(-1793846754), "c00133a2-2c65-4d74-a457-c8b63ccbbee8" }, { new PrefabGUID(-1209228232), "35eddf7b-975d-48c4-b86c-bdf20573485f" }, { new PrefabGUID(-168044197), "8af97552-3d45-4cda-8b53-d61e48fa985c" }, { new PrefabGUID(1370755976), "747e3ef3-e937-4c5a-95b2-522ffbd29966" }, { new PrefabGUID(28625845), "7ee186e1-8375-492c-b6a6-80db48ae2ffc" }, { new PrefabGUID(1247086852), "2a66b27c-3a1a-49a0-996e-b15ab82083bf" }, { new PrefabGUID(-2117279191), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(-147757377), "18f67f1f-dba2-4089-bede-8b8a2c939000" }, { new PrefabGUID(-1624005683), "0d558768-982d-4474-ad1e-faef091c18ca" }, { new PrefabGUID(-1563178470), "52328bb4-5fed-4c42-9925-60cc267778c7" }, { new PrefabGUID(-1979905169), "2b5a1ef6-5df7-416b-be14-d23fa0a65399" }, { new PrefabGUID(1177597629), "21d227ba-e193-48a9-ac0a-40da97bbda16" }, { new PrefabGUID(-1957642407), "5dab7987-cef9-42af-8ee9-e2f7d3893e42" }, { new PrefabGUID(-390381611), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(2065714452), "33d1bcfe-f6f3-4f4f-ba41-b0a9c49c851d" }, { new PrefabGUID(-749764415), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(-152327780), "bf60bde8-e0c9-473e-8f4d-e8ec60ab8e6f" }, { new PrefabGUID(98952351), "c646e168-097c-4d5b-b5d1-4670c2b5cf41" }, { new PrefabGUID(67930804), "e5d62e4a-033d-4865-9221-200b9e3f7eb2" }, { new PrefabGUID(-1206629745), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(1410262258), "00fb82db-2142-4b57-8be4-fd7974d203b7" }, { new PrefabGUID(1277476884), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(-860388090), "fb13a989-cbed-4476-9055-c2583d028482" }, { new PrefabGUID(898159697), "551f1fde-2a7a-46e8-afdb-7cf33fcc2dfd" }, { new PrefabGUID(-1530254765), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(-2037272000), "2f331141-f3aa-406a-8e52-87b03da6ddc0" }, { new PrefabGUID(1270271716), "1aceb43d-1fb7-45f6-a256-3c13be1130ce" }, { new PrefabGUID(-1624770558), "dae4b9e2-e2e8-46e8-bd69-5fc678858451" }, { new PrefabGUID(730869315), "92463350-1d10-4d0b-8615-e8d45465cdb4" }, { new PrefabGUID(-1382451936), "7f733022-b33d-4079-ba8d-de2aba95d720" }, { new PrefabGUID(-2134499162), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(2012771684), "0cd3dd26-aebd-4402-b0de-f51030ddc4de" }, { new PrefabGUID(-314251399), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(1336896559), "ab42274a-3deb-4b7a-8e49-55f383f2163e" }, { new PrefabGUID(-1927784576), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(-269336230), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(-652069131), "188d06be-1258-4971-956c-5fb5bece3810" }, { new PrefabGUID(2061238391), "7573c724-b6ee-4b47-add3-cff3ce2d11d1" }, { new PrefabGUID(1717016192), "387bc0ae-2710-40e5-b731-f1b1f1d6c035" }, { new PrefabGUID(1490846791), "80a22c4b-c4bd-4115-857c-f87a6ecdd7ee" }, { new PrefabGUID(285875674), "24d64df6-3497-4c5f-a5c7-ba3601963f3a" }, { new PrefabGUID(-2137269775), "37b5ce1c-9a39-44a1-925f-e117981a0a78" }, { new PrefabGUID(-655493979), "adcd3fc2-c7e8-4d48-b254-bfe1dcf371b8" }, { new PrefabGUID(2029158532), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1766731531), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(160471982), "11d3aaa3-b9ca-4a7d-afa9-a295efd1da49" }, { new PrefabGUID(-189270614), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(-1513121786), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(341837267), "5427cf2d-3163-4788-8b93-dee624c093ca" }, { new PrefabGUID(738473666), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(-41686151), "a0c37cba-fc9b-44b0-8e63-6004f0cfbc9f" }, { new PrefabGUID(-626353315), "23394150-bc5e-44f6-ac07-70aa03262488" }, { new PrefabGUID(674704033), "f73f4063-f034-4127-85a4-5030e33e863b" }, { new PrefabGUID(-1743584975), "ef559449-7c2a-4d62-a1f4-05f2b13008d5" }, { new PrefabGUID(-1638796801), "ef559449-7c2a-4d62-a1f4-05f2b13008d5" }, { new PrefabGUID(855691699), "3ab54827-0cb5-4977-9071-660933803495" }, { new PrefabGUID(540608060), "b8ddaab7-1d44-4821-97b5-cf94a4a4ffac" }, { new PrefabGUID(1479621167), "2a3f9679-fa40-4175-baac-c6da20611618" }, { new PrefabGUID(1186268870), "650d7cc0-8f16-4268-8a6a-23024e41f7bc" }, { new PrefabGUID(-457986654), "39b3cbaf-8c58-4542-a53f-2c2af4cc1366" }, { new PrefabGUID(-809059551), "5018783f-610a-4beb-8c6a-005d6c87b11e" }, { new PrefabGUID(-1034273124), "8498441f-be9f-4970-80d3-039cd47ede7e" }, { new PrefabGUID(765693103), "775d7528-9a98-4dfd-b12d-5a2fa0c85bfe" }, { new PrefabGUID(814603706), "b7a0e7e7-25ac-48fb-b51e-c2a820e93ed1" }, { new PrefabGUID(-1381982890), "019d86b9-d17f-468e-9231-1ce8f8a99907" }, { new PrefabGUID(1658596502), "b5ea7d52-bcd8-4faa-a628-e95a2fb62c2b" }, { new PrefabGUID(-766642494), "0d1d420b-e239-4a64-9f3e-42f822d4197a" }, { new PrefabGUID(904226111), "eb9e0ed1-5c27-4f8b-b428-f7c515e2c366" }, { new PrefabGUID(-262414476), "8949a1b0-843d-42dc-9c77-e19afda7151e" }, { new PrefabGUID(2000981302), "d0665e24-33f0-4e35-97cb-d120c9c36310" }, { new PrefabGUID(896678280), "fe9669f2-af0c-41d3-8d50-ce490c3adf88" }, { new PrefabGUID(2063723255), "6c60e6b8-2274-445d-85ea-d7f48811ed13" }, { new PrefabGUID(-1190496962), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(-1180115034), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(1412786604), "ff3ffc1e-4cdd-44c3-9212-182a3d266fc5" }, { new PrefabGUID(-556391992), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1177453385), "e841ae68-7d42-4a52-a2c6-2b8b7544bbd5" }, { new PrefabGUID(-1183157751), "33b7db27-9939-4972-b9d7-543c3fc9490f" }, { new PrefabGUID(947998050), "06368b5d-cc87-41e2-a74f-02f3b152115d" }, { new PrefabGUID(-957963240), "22ddab9c-995d-441a-8cfb-4a2c45874652" }, { new PrefabGUID(-338333923), "30548a69-8a99-47b3-b3cf-147357d05433" }, { new PrefabGUID(-1871776321), "8783ba9f-56d2-455b-8083-ce840f5e2ede" }, { new PrefabGUID(1925394440), "cad7a3a5-a110-40d3-8a6a-485f1b719976" }, { new PrefabGUID(-1588051702), "96723844-c5dd-4f41-80d0-733de1161666" }, { new PrefabGUID(1112619884), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(1123282909), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(1637216050), "253c69a6-7a28-475e-8530-bf5f4ac89df8" }, { new PrefabGUID(517296275), "7573c724-b6ee-4b47-add3-cff3ce2d11d1" }, { new PrefabGUID(1192629421), "79dd4549-a321-469c-8a95-80fa17a89673" }, { new PrefabGUID(1579758125), "2a3f9679-fa40-4175-baac-c6da20611618" }, { new PrefabGUID(-1513937321), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(-1260254082), "a7e02b2f-4171-4257-9148-32387cbff763" }, { new PrefabGUID(-1416449755), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1314569175), "2be08eb9-734a-4e51-8e44-deb49acc4b23" }, { new PrefabGUID(-1823614190), "354a8372-3c68-49ea-8673-76673c552ea9" }, { new PrefabGUID(-915028618), "1067d6e4-3842-4c95-8436-a2e89a95d0d9" }, { new PrefabGUID(675013523), "f14ff669-2b71-40da-89a6-e8b416899c29" }, { new PrefabGUID(639992282), "a29045ba-e8f5-4699-abb4-f090c067cc6d" }, { new PrefabGUID(-349470582), "2f1d9a90-05fd-43ac-8403-4d4c07d4e1be" }, { new PrefabGUID(-1696677607), "3bbc42d5-4ca1-4374-8da8-00b42dd77102" }, { new PrefabGUID(-1715039285), "076cd345-4513-420a-9c32-96d94e25a8e6" }, { new PrefabGUID(1458090717), "6e4ad93f-6c99-43c6-93be-09b01795170a" }, { new PrefabGUID(-1748835106), "3170100c-ffb7-4b90-9890-9fd59aeb060f" }, { new PrefabGUID(594180030), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(1261174372), "5bbeb25e-706c-4713-a23f-90bad9094048" }, { new PrefabGUID(1677983904), "5afd9112-b03d-4fea-9117-f978076743a8" }, { new PrefabGUID(-1023114892), "edad94ea-ba8f-4a96-945a-aa873117967f" }, { new PrefabGUID(1814558673), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(584164197), "8cbe99a6-c5f9-40ce-bebb-d58067d6a6ad" }, { new PrefabGUID(-1067360120), "ce45f05e-e816-4aa1-97a7-14551ac9ad47" }, { new PrefabGUID(821609569), "9898d06d-1af1-44ea-8fd9-bb6f91d9ee59" }, { new PrefabGUID(155899991), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(1485993952), "532e6391-a851-439c-a13d-febde43a6c20" }, { new PrefabGUID(2099198078), "fdfbf969-6575-43bd-93eb-1a305277a480" }, { new PrefabGUID(1239564213), "fdfbf969-6575-43bd-93eb-1a305277a480" }, { new PrefabGUID(1262845777), "1f18296c-74fe-4804-977c-817288d6c504" }, { new PrefabGUID(-2081646636), "7f5b86f6-359a-4b76-b1f9-8bce63553e2e" }, { new PrefabGUID(1046366876), "0c4452a1-3d0e-4006-85eb-10784a119031" }, { new PrefabGUID(724428437), "9306bd23-7a5c-41cc-a947-2da60ef1b0b0" }, { new PrefabGUID(-1962855117), "edf435e4-b55a-4195-933d-e995b3b8d789" }, { new PrefabGUID(1253216070), "5e3c8cfa-7d84-45ba-b068-d1371872ab46" }, { new PrefabGUID(1705028227), "90a9c457-e37a-4138-8db9-7880f90962f4" }, { new PrefabGUID(-237441421), "9b0a2d7c-6292-4807-b15b-d41ef12dd7a0" }, { new PrefabGUID(1898237421), "3f5e7661-9962-46bb-a26a-498b9b70a6a4" }, { new PrefabGUID(-1129708579), "3588c90c-9fb6-4a84-9f7b-08a153ecd968" }, { new PrefabGUID(802050789), "2fe28708-e7a7-4e81-ab62-a06d7cea58d1" }, { new PrefabGUID(-1963826510), "31c69f4a-0623-477a-beed-b57062181570" }, { new PrefabGUID(287586809), "279f3de5-b398-4461-aad5-74a05c1a8079" }, { new PrefabGUID(51046573), "ae7de705-825d-44d8-b4af-60da6226a927" }, { new PrefabGUID(-1147920398), "e727e45f-ffa3-468d-90e3-5050ca7bf05b" }, { new PrefabGUID(-2111388989), "bdb1c09c-d248-4c22-a0f6-8ee893e00cf0" }, { new PrefabGUID(-2020212226), "441f9638-01db-406f-8f6b-2799983ec420" }, { new PrefabGUID(867351268), "288e46d8-1679-4e1d-8aa8-e711df208957" }, { new PrefabGUID(-2118441460), "e656d37b-0932-43b0-8e79-dcd94b7e3796" }, { new PrefabGUID(-1983566585), "be0dcda4-89ae-4e33-b122-9b8913682d80" }, { new PrefabGUID(803445709), "568ca320-a756-45b2-ad46-6ff7dbf00dbd" }, { new PrefabGUID(-1913156733), "550eacac-2abc-42c5-aa42-cb8cd3fbb0c1" }, { new PrefabGUID(90716564), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(-1147510581), "b4984411-d795-4c21-9393-e5b363a260b1" }, { new PrefabGUID(-1681104075), "8c7d76d1-a803-4eb7-a8a2-b4c3ebc4af47" }, { new PrefabGUID(-1177172544), "b4dcae09-cc7b-428c-99ac-71936600da0b" }, { new PrefabGUID(1557814269), "49418d0f-1cd5-400c-b9a4-e317421d4ca6" }, { new PrefabGUID(1355823667), "df016dab-57fc-4f18-b5a0-d0574cd914ae" }, { new PrefabGUID(269771183), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(336922685), "ba0eb19c-23a3-4227-8be6-720fbe0aa53a" }, { new PrefabGUID(-886916793), "cbfbbf33-a706-415c-8449-e01431457610" }, { new PrefabGUID(918613164), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(-213056154), "80c1ba60-7d7c-4bf6-808e-de50a7aedea8" }, { new PrefabGUID(1012837641), "82f4aebb-2b7a-4e56-95bb-82d1d063e71a" }, { new PrefabGUID(-651554566), "b92fdcda-645b-4882-aab6-f4fdf60d0c03" }, { new PrefabGUID(1655869633), "4e77a4af-348e-41d0-88ae-ecbe993d3fa6" }, { new PrefabGUID(-21943750), "ad330dd2-1c52-49db-91ac-81a808347b8e" }, { new PrefabGUID(1286615355), "870b62bb-37e1-4433-ac05-0c29775507af" }, { new PrefabGUID(-1581189572), "6029af38-711d-4550-b572-64075b574feb" }, { new PrefabGUID(666638454), "e2fcee98-60ca-462e-98e6-45278ca603f6" }, { new PrefabGUID(-1601304786), "1859fa37-5901-4d53-96a7-fa3af17fbc66" }, { new PrefabGUID(-305440546), "594821cb-8073-4547-99a6-5534dd6edc31" }, { new PrefabGUID(-1870194782), "69108690-82d1-4bf8-9f13-9665f608569e" }, { new PrefabGUID(-811840389), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-455117097), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(2115367516), "3f39d6b3-bed6-41b7-8554-cdd8e91261cf" }, { new PrefabGUID(-749828559), "3f3f1544-433e-4d2a-b451-7b24152a07db" }, { new PrefabGUID(541321301), "2d5590f1-43fc-4ca7-9fa1-9f57e2c550ff" }, { new PrefabGUID(722498174), "e841ae68-7d42-4a52-a2c6-2b8b7544bbd5" }, { new PrefabGUID(-1260890289), "ec923170-8ee0-4eb2-bd11-6b021705c09f" }, { new PrefabGUID(1031107636), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(1216450741), "1a5b153b-30ad-46c2-8a70-bc4bcf66c0f3" }, { new PrefabGUID(-1568756102), "8bcc97e7-d39a-48a1-97d1-be1b408ea51d" }, { new PrefabGUID(-1723445833), "c5918d69-f70b-4eec-bba3-646a99767276" }, { new PrefabGUID(1510182325), "52328bb4-5fed-4c42-9925-60cc267778c7" }, { new PrefabGUID(725607617), "24467697-f830-410e-8080-4e0939511cda" }, { new PrefabGUID(-2102469163), "01c373de-a20a-46b3-ac19-415511b08499" }, { new PrefabGUID(-1561468105), "05f6c0c1-fde7-44c0-bf37-4a5d5c182063" }, { new PrefabGUID(177845365), "853c5842-49f0-4615-9b4f-c0dc2ee201b5" }, { new PrefabGUID(-1265586439), "5a6b3971-013a-4ef5-bb00-1b6f4c817df2" }, { new PrefabGUID(188653143), "a23f6af7-6850-4958-9f28-6cccd8d4d849" }, { new PrefabGUID(-656822228), "e95ed7b8-3191-4b19-8075-005aa2474866" }, { new PrefabGUID(-1304625582), "13075df2-60e2-4e14-8f18-752117ddbe22" }, { new PrefabGUID(2075997018), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(-1766408331), "ea89c977-5e90-4c0b-9a12-d55497052b1a" }, { new PrefabGUID(329301090), "a5f44102-5d96-4056-8516-b806b9f51a69" }, { new PrefabGUID(1328680870), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(-1215982687), "69f65350-b775-4c1d-a7ec-e48e283d7a8b" }, { new PrefabGUID(1048518929), "1461ff73-af32-46fd-8916-1f14126fe141" }, { new PrefabGUID(-1277074895), "842612e9-dccd-4836-a30e-f972bd0f5384" }, { new PrefabGUID(1780339680), "2724087a-06c6-4d33-80d7-3e00f95121be" }, { new PrefabGUID(-1027710236), "294790bb-b4a1-4ad3-8d22-8537e37d3475" }, { new PrefabGUID(1501868129), "13dda5db-1dd2-4020-b1bd-c1a53a0bdac9" }, { new PrefabGUID(572026243), "7573c724-b6ee-4b47-add3-cff3ce2d11d1" }, { new PrefabGUID(747911021), "ef559449-7c2a-4d62-a1f4-05f2b13008d5" }, { new PrefabGUID(-413259500), "3b34e31f-6da6-48c0-b550-1fd71872ab64" }, { new PrefabGUID(-1421775051), "cc55519f-6b7d-4a95-a5bd-a81f08bd4872" }, { new PrefabGUID(-1075670534), "37b5ce1c-9a39-44a1-925f-e117981a0a78" }, { new PrefabGUID(-2039337521), "9244c448-4238-4704-b763-b297fb3d51ad" }, { new PrefabGUID(-1746159915), "adcd3fc2-c7e8-4d48-b254-bfe1dcf371b8" }, { new PrefabGUID(1855323424), "3ba8607c-6b94-4c9b-aef8-5e67d5667103" }, { new PrefabGUID(-1826382550), "d29f54a3-8848-4c44-82e9-5bbdd76f9865" }, { new PrefabGUID(1455590675), "dd1f57ef-db36-46de-85a6-ca645cfcf649" }, { new PrefabGUID(1335546377), "a698ebd9-8804-40fe-a06f-a42696688470" }, { new PrefabGUID(1871735757), "b9c1e67e-94fa-430e-ac47-1c4dfcc8c347" }, { new PrefabGUID(-262114802), "ec923170-8ee0-4eb2-bd11-6b021705c09f" }, { new PrefabGUID(1646489863), "ccb61bff-e798-425c-9ea4-5731983fe31f" }, { new PrefabGUID(-1279475298), "7d6b2b76-d157-492f-ba64-def7f02e4d7d" }, { new PrefabGUID(1039083725), "b05680d0-a76d-496a-8f9f-d6f7b38313b6" }, { new PrefabGUID(1725419936), "f235ea4c-d65d-434e-960d-ed833bbdb922" }, { new PrefabGUID(-1385786654), "cb7d84d6-1c56-445a-abb7-d554125fcc41" }, { new PrefabGUID(1531721602), "978cdc55-8e64-43f2-b416-cc94af89aed6" }, { new PrefabGUID(-919709436), "bc06b1d5-95b2-406f-977e-b37b39b30919" }, { new PrefabGUID(-1899539896), "5a2d0ef5-0d5b-4728-a180-d629f047bdca" }, { new PrefabGUID(-1305686817), "88639c52-ccec-4af0-aeda-e82018cfa5e5" }, { new PrefabGUID(703230071), "3912a034-2abe-4863-b6ea-155c1e0ceff2" }, { new PrefabGUID(-340571020), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(-382349289), "1c452b9b-e332-4eb4-93d9-251f50d9e49c" }, { new PrefabGUID(750788905), "6f8c94aa-e1eb-4e97-9fc5-c476e7dfaf15" }, { new PrefabGUID(1982551454), "aac41dfb-5b9e-4e01-b97a-8fd62aebd6c6" }, { new PrefabGUID(1401940772), "adcd3fc2-c7e8-4d48-b254-bfe1dcf371b8" }, { new PrefabGUID(-481041545), "dda63ef0-8e1a-4816-b40b-4fa560ff656a" }, { new PrefabGUID(-181179773), "c82c1885-792c-4d1c-928c-530948e34195" }, { new PrefabGUID(-104934480), "3e9eb57f-57fc-4c56-b86d-f9f1d627027b" }, { new PrefabGUID(-175650376), "0871f942-a155-4118-866f-c8c413dd89b9" }, { new PrefabGUID(1380368392), "991b014e-ea23-41f3-b736-297823615bae" }, { new PrefabGUID(-1306155896), "d2dfed12-2e9b-4541-b163-2fbaa3e8163f" }, { new PrefabGUID(-296161379), "adf6aa7f-11a6-49a7-af61-72b8c51a76f5" }, { new PrefabGUID(-1004351840), "063e6062-9996-4a54-8438-8d5285fd0315" }, { new PrefabGUID(379281083), "186ec0bb-fd46-451b-8272-3e4bc1446d0a" }, { new PrefabGUID(626118128), "eb1c50c3-ece4-4ca6-9ab9-6a9e36780827" }, { new PrefabGUID(-786493143), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(-192381912), "490fa285-080d-4726-a26c-dc1a2ec956a3" }, { new PrefabGUID(11798247), "9eb589a7-0adf-4f14-87ca-6434e64c6bb4" }, { new PrefabGUID(2142983740), "387bc0ae-2710-40e5-b731-f1b1f1d6c035" }, { new PrefabGUID(2001389164), "3cb936cf-b0da-40dd-977d-e504f083ad0b" }, { new PrefabGUID(790210443), "34f5e50c-a078-4806-b59e-4caa9bab7b4c" }, { new PrefabGUID(-1495639636), "2388ee67-fce1-4c99-a67f-1e0f6ad136fa" }, { new PrefabGUID(421203343), "6b1f9009-a972-4f10-9c7a-f402e95b1b36" }, { new PrefabGUID(-173571027), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(-1958888844), "42b4f584-96af-4443-b837-bd0a2a01339b" }, { new PrefabGUID(-1617671082), "c0b92cd6-27f8-4865-a8cf-aa08ad319e60" }, { new PrefabGUID(-830893351), "cc55519f-6b7d-4a95-a5bd-a81f08bd4872" }, { new PrefabGUID(182214837), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1801132968), "4af06f01-a089-4760-bc94-1b17df1f4277" }, { new PrefabGUID(-859437190), "4af06f01-a089-4760-bc94-1b17df1f4277" }, { new PrefabGUID(-1642545082), "05ba86ad-6e7e-4304-bd70-7b27c8afa236" }, { new PrefabGUID(-149778795), "2202baf6-4c24-4397-a479-b586e389d425" }, { new PrefabGUID(736318803), "d701bf3a-477b-45a1-b85d-501aee8fa300" }, { new PrefabGUID(-1845443712), "94ee38ce-166e-4a0e-8448-3189bd94e8c3" }, { new PrefabGUID(-1810734832), "94ee38ce-166e-4a0e-8448-3189bd94e8c3" }, { new PrefabGUID(2106123809), "2a868d94-433a-4db6-8a00-7e53fa6cf07c" }, { new PrefabGUID(1328323768), "a1eb25e8-9d1a-41f5-b571-14de8e95b06c" }, { new PrefabGUID(1532551951), "bbc94234-a490-43e3-a68d-4fda323ea415" }, { new PrefabGUID(707710831), "05ba8c57-60d1-4266-bfae-ad893e5c4fbe" }, { new PrefabGUID(-1460281233), "1004b0ad-d178-4200-9bd2-5fbec7f7b027" }, { new PrefabGUID(-953253466), "4d2c08a1-334f-48d4-a5fe-165f54624dd5" }, { new PrefabGUID(1102277512), "91f1da75-63bd-42a6-bce0-cd05ad6714e0" }, { new PrefabGUID(-557203874), "91f1da75-63bd-42a6-bce0-cd05ad6714e0" }, { new PrefabGUID(-585346267), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(-996555621), "67ff4595-ba8f-49e0-98f5-cf73ecc8d96d" }, { new PrefabGUID(-535477182), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-1071187362), "b25b3f08-e539-45e3-a68f-f97d9a78cdf3" }, { new PrefabGUID(-1270904319), "48800890-58b6-4f5e-abe5-243440b1caa5" }, { new PrefabGUID(974739126), "a9085a62-f6dc-40e4-b67c-4fb11f41bf3c" }, { new PrefabGUID(-1965958712), "f37b93cf-9552-48a7-9ffb-7cd6caf9411c" }, { new PrefabGUID(950358400), "0f705077-9433-460e-8e2d-5fea27c1246c" }, { new PrefabGUID(-1391446205), "249208b3-ae5c-4ff9-87a2-0e21b0c855e1" }, { new PrefabGUID(-1255119436), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(74811721), "c9f51ca4-f6b2-4135-8573-d0538d1b8dee" }, { new PrefabGUID(680112231), "a1eb25e8-9d1a-41f5-b571-14de8e95b06c" }, { new PrefabGUID(-1595316636), "4537e1f8-56d2-4841-b1b4-c750ee5ebd9b" }, { new PrefabGUID(-456161884), "a14a3a8f-b9ae-42cc-a12a-9eed45e00330" }, { new PrefabGUID(1341367867), "1283cd9e-3341-4a95-a54a-3e92fe406401" }, { new PrefabGUID(-113436752), "52ff05e8-b0e7-40b9-acd5-dbfc6aaf7d48" }, { new PrefabGUID(1075994038), "11032e5f-3d52-49f8-964f-96f8d202f3a0" }, { new PrefabGUID(-1060453249), "fa88255c-3e92-4794-ab6e-f01110e8423d" }, { new PrefabGUID(-2054797612), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(1881059081), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(-928330249), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(665184248), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(587164554), "f9c04101-5d90-4604-8b30-e10f7248654d" }, { new PrefabGUID(-1222824286), "80a22c4b-c4bd-4115-857c-f87a6ecdd7ee" }, { new PrefabGUID(1705984031), "722c2d9e-5965-4054-b822-79151d5d097c" }, { new PrefabGUID(-1214309698), "aa96636c-24ca-4e30-b39a-c116791aa452" }, { new PrefabGUID(-1354920908), "a3a394b7-c3d7-4aa0-a722-8f5416620f90" }, { new PrefabGUID(601169005), "cc3ce453-48c5-40c8-8209-3030742ffa37" }, { new PrefabGUID(193249843), "9e9dbcf8-70c3-435f-b861-fe7847fd13f4" }, { new PrefabGUID(1729289046), "f16cd7f0-91af-462c-b4d0-6fa854b9ad27" }, { new PrefabGUID(1048769481), "cc55519f-6b7d-4a95-a5bd-a81f08bd4872" }, { new PrefabGUID(195858450), "53932c04-d589-4945-b773-5740744163cd" }, { new PrefabGUID(-1512099553), "da42a6c9-e746-4ea7-8be5-194016c6b694" }, { new PrefabGUID(1388962120), "283db06a-cad2-40d5-830f-b2d750a8e64d" }, { new PrefabGUID(300582272), "ac41a471-9a40-44e8-96ac-1b1af0020550" }, { new PrefabGUID(447918373), "a964d349-95cb-46aa-9bec-6cc87cfdae99" }, { new PrefabGUID(804798592), "3c44a269-7d2d-4e54-91b8-3a15e31bcb4b" }, { new PrefabGUID(-1620185637), "68c204d3-478f-49b7-a593-31c44268c9fe" }, { new PrefabGUID(524822543), "dac22958-9052-4880-8d89-dcd23199b489" }, { new PrefabGUID(1821108694), "aea6c49b-e6cf-4e01-a36e-5e2495e500a3" }, { new PrefabGUID(1476452791), "2e5ea006-44fd-459b-9407-691ae09bed68" }, { new PrefabGUID(-516976528), "9d38057b-6e76-4b9c-a835-5e1b1622a1ac" }, { new PrefabGUID(-1776904174), "da1df76b-1645-4a11-8af4-6d2b2ac6a32c" }, { new PrefabGUID(1328126535), "20287638-a68b-458f-8ebb-d272e808cd04" }, { new PrefabGUID(-338774148), "ecbf2193-1aa5-4663-ad52-3651b4c3dee5" }, { new PrefabGUID(-1382693416), "f24eb71b-3be2-4240-b414-d7566e22286d" }, { new PrefabGUID(910644396), "cfe242ac-953c-4532-bad6-21900583dde1" }, { new PrefabGUID(2010023718), "eba6112f-1f51-45f1-acea-b9a4d2d8f6b9" }, { new PrefabGUID(1876501183), "cf7a713e-2bbd-4b6c-862d-26093655a700" }, { new PrefabGUID(-1203529515), "963f74a8-1f1b-4161-84b5-eacc9bab91c2" }, { new PrefabGUID(2131080437), "9f8a8856-d919-4fb9-8bac-1b69d9aa7744" }, { new PrefabGUID(1192126406), "05e80e5e-bfba-4fd2-943e-f957c46d3324" }, { new PrefabGUID(1783352458), "41809193-42c6-419f-ba43-6a3b31d1b7f2" }, { new PrefabGUID(-581098863), "432ae9bd-47b9-49fe-927d-a8361725d2f8" }, { new PrefabGUID(-1872940151), "51cfccca-7bfd-4e47-a235-aac8c228306a" }, { new PrefabGUID(321841627), "0ba2f8ff-f91d-41ba-93a5-1e9b7ac5e12e" }, { new PrefabGUID(944031787), "0a9903a2-b034-4589-851e-a350c39637f6" }, { new PrefabGUID(1154316853), "539a64f6-954b-41dd-8b40-af144b4634ea" }, { new PrefabGUID(-1203333778), "f32bf8bc-7564-4094-87e3-cc62549aa299" }, { new PrefabGUID(750222285), "47117c96-3c0b-4243-bb35-daac679261fa" }, { new PrefabGUID(-1891230577), "37c7ea60-50f6-4350-bc78-4861eee491d4" }, { new PrefabGUID(-1849014216), "bb36d2e5-0dd5-499c-a08e-cb294d3a52b0" }, { new PrefabGUID(-928087973), "2b7be3e8-44c1-42ff-a065-9271b7833b18" }, { new PrefabGUID(917424779), "8f5b7730-44f3-4475-a46d-3dc6183d9d97" }, { new PrefabGUID(-802591385), "47117c96-3c0b-4243-bb35-daac679261fa" }, { new PrefabGUID(1868620532), "99f0feb2-468d-4933-85b2-ebed1fa217ed" }, { new PrefabGUID(-1223353367), "83962ffd-0779-4b44-ab80-1ea2a0b507eb" }, { new PrefabGUID(1823472841), "963f74a8-1f1b-4161-84b5-eacc9bab91c2" }, { new PrefabGUID(-2002168845), "17a4f57f-d71c-4f31-92ea-2c32c7999535" }, { new PrefabGUID(415888609), "527938e5-fbba-416e-a9a8-deb7816cbb91" }, { new PrefabGUID(-544486556), "f2c0376e-7618-4b8c-b704-07e4ea709b4e" }, { new PrefabGUID(-1190354298), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-1936575244), "15da3e2d-6b6b-49d4-b386-8e4fddd434b4" }, { new PrefabGUID(-1942352521), "fb3e731a-933b-4ff8-b5ef-ae1aa49d711b" }, { new PrefabGUID(-84975023), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(414648299), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(1304434816), "824b3ae5-1cc3-49a2-afff-df61741cca06" }, { new PrefabGUID(-322293503), "824b3ae5-1cc3-49a2-afff-df61741cca06" }, { new PrefabGUID(577478542), "886eb898-df5a-460d-8525-04251a5ed23d" }, { new PrefabGUID(-164116132), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-872078546), "fac7c366-d818-404d-9c23-6c701e883111" }, { new PrefabGUID(-1363137425), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(1706319681), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(468179469), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(24378719), "a9c38cae-4d12-44dd-b1d8-876b905baae2" }, { new PrefabGUID(-864975423), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1106602776), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(-1671572471), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(1576267559), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-81727312), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1505705712), "7f5102ec-fa0d-449d-82c0-b1b29621109d" }, { new PrefabGUID(1405099312), "3fcf3a19-6657-4691-8aa1-1197c302115b" }, { new PrefabGUID(-2114140065), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(51737727), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(1239832946), "18a391fa-5963-48eb-a6df-380275178de9" }, { new PrefabGUID(613251918), "6d8b0943-47ab-49a7-8420-46a46fb4624b" }, { new PrefabGUID(-392776091), "1a23435b-2543-48d0-802e-396b2d5708c3" }, { new PrefabGUID(-65981941), "1a23435b-2543-48d0-802e-396b2d5708c3" }, { new PrefabGUID(805231073), "846528ce-861c-4516-8260-5d8147fd7c1a" }, { new PrefabGUID(-2013903325), "846528ce-861c-4516-8260-5d8147fd7c1a" }, { new PrefabGUID(-1562098554), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(-38041784), "ff1c75d1-856a-415e-a6b4-f2d4a510be26" }, { new PrefabGUID(1635780151), "d8addf40-d23b-43bf-83fb-fd8ea2cc8cef" }, { new PrefabGUID(1069072707), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-943858353), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(820492683), "dae1a235-da83-4d83-a38b-26abd7e6433e" }, { new PrefabGUID(-935560085), "7e2db9cc-0801-4554-9cb7-b4bafa5caad2" }, { new PrefabGUID(96544496), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(1092792896), "03823ca1-7877-4238-bb89-55bec935b1eb" }, { new PrefabGUID(-1287013240), "8a8deaeb-048c-4c14-8d69-61fdebb357e3" }, { new PrefabGUID(-1381375644), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-1554428547), "4de457e7-8680-475d-bd1e-e894839feca4" }, { new PrefabGUID(-1794508086), "3fb53e04-3db1-4e7e-a275-1f220d9ac70d" }, { new PrefabGUID(-1140588645), "aac57eea-19d9-4617-9415-306f095212af" }, { new PrefabGUID(981369753), "aac57eea-19d9-4617-9415-306f095212af" }, { new PrefabGUID(-1653554504), "55244198-1130-4f99-8141-e7883593941f" }, { new PrefabGUID(2112911542), "b923ebbc-2437-4f85-ad42-8e28d8dbbe9e" }, { new PrefabGUID(-779411607), "64b907b8-06de-4ccf-ad5b-561185692f09" }, { new PrefabGUID(2018586909), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1192403515), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-1168705805), "68eb266c-017b-4d8f-9b46-cd0d24dd242c" }, { new PrefabGUID(-1761137820), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1610391169), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(326378955), "846da9a8-95af-458f-9e07-d504c69917b9" }, { new PrefabGUID(571929806), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(-755774482), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(1743532914), "f782e217-dc37-44c1-9a76-c049076eba1c" }, { new PrefabGUID(-1438710930), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1074322242), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1788957652), "007a016d-022b-4079-9ea5-3ad7ac990819" }, { new PrefabGUID(1924724671), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(722671522), "eb90126b-f5e2-485c-81e3-a6be44cd1cec" }, { new PrefabGUID(-19416663), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(826666431), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(1395549638), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(-1925881340), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(1157537604), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(407967118), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1750347680), "eb7b70b3-ca59-48ff-8d2d-5150a0ca7641" }, { new PrefabGUID(57255106), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(814083983), "bbcdac34-dbd1-4e96-86c7-02d685972271" }, { new PrefabGUID(-2020619708), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(-1117581429), "42395e0c-b8ec-4291-aa38-4b6db70497ce" }, { new PrefabGUID(1938756250), "5c238aab-5c9d-4ae2-bd29-83f10b67c441" }, { new PrefabGUID(-1588337666), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-383158562), "bbce82bb-53a9-4f4c-9d96-9d122be0a5fc" }, { new PrefabGUID(1250474035), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(1604500740), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(1866779672), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(2055824593), "fe54c061-22c4-4658-8744-9988d963886e" }, { new PrefabGUID(173259239), "5111a5b4-42b2-4230-9018-94f9acf00a16" }, { new PrefabGUID(452018442), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(304726480), "0d93bdc6-977f-4289-913f-7c79c6b54e0f" }, { new PrefabGUID(1144208724), "5f496043-6f81-4478-8f62-e80d17aeda56" }, { new PrefabGUID(-669027288), "97be4833-aa7e-4253-a6e7-ed2d0e3d472e" }, { new PrefabGUID(1635167941), "4440fe99-a8d9-45db-8869-ef292e5f4f53" }, { new PrefabGUID(1809382006), "abe68942-0436-4804-b09b-6fd4d25e6f34" }, { new PrefabGUID(-1388651766), "d2629c2b-7276-4de5-a52c-44ad8fb3ee50" }, { new PrefabGUID(1527640414), "60f98f04-8e41-40ef-90f2-bc274442107c" }, { new PrefabGUID(1318855899), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1124739990), "850d90b2-fcac-4988-bbeb-6b9e327ad036" }, { new PrefabGUID(20817667), "d2629c2b-7276-4de5-a52c-44ad8fb3ee50" }, { new PrefabGUID(-1810631919), "5289293b-888a-4da1-8ecc-a09b05af03df" }, { new PrefabGUID(470753758), "587d4289-25ed-4f03-b084-bf1b7d53861f" }, { new PrefabGUID(1502148822), "5c6975cc-d0d8-45b1-b4b8-2cf2f5d31b21" }, { new PrefabGUID(-1076780215), "5c6975cc-d0d8-45b1-b4b8-2cf2f5d31b21" }, { new PrefabGUID(-1082044089), "4da6a4a1-e3df-4bf3-b388-bf70c1f803b6" }, { new PrefabGUID(-775762125), "dae1a235-da83-4d83-a38b-26abd7e6433e" }, { new PrefabGUID(2049379982), "3b172886-827b-4abb-bcd6-7c0b076e71c3" }, { new PrefabGUID(-653348998), "2d4e6885-7094-4cfc-8b75-e37c5e300605" }, { new PrefabGUID(763796308), "5d401243-595e-41da-a1c6-c86a75bc109f" }, { new PrefabGUID(1107541186), "53d256de-fa52-4157-9f7a-bc9d65d63d8b" }, { new PrefabGUID(-443327719), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1733829912), "740edb57-0a6c-4919-b70f-906cdc3544bb" }, { new PrefabGUID(-572568236), "a98cc88d-fb88-488d-a75d-deb2d6b6024d" }, { new PrefabGUID(763273073), "033181b8-c4ce-4ea8-bea4-45420555e4b4" }, { new PrefabGUID(1209580976), "a8bd510a-f877-4a1b-acaf-1c776a36282b" }, { new PrefabGUID(-1859852856), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(2111003460), "121eb14b-3e78-464d-9f01-0a464264f1b4" }, { new PrefabGUID(-494298686), "97e2f3e6-554e-43ae-b3e9-c543c3562bf4" }, { new PrefabGUID(1864177126), "9432cd54-b5b8-45b3-b5b9-b3f457356f93" }, { new PrefabGUID(-427888732), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1101874342), "c5c0bcf8-6a58-457e-ab06-e9e16035b9ad" }, { new PrefabGUID(-327335305), "d4c423dd-de78-4652-8e07-aea40e51f4ec" }, { new PrefabGUID(281572043), "bcf8aff4-f6e4-4f91-8c17-34fb5db544cd" }, { new PrefabGUID(1185952775), "bbce82bb-53a9-4f4c-9d96-9d122be0a5fc" }, { new PrefabGUID(-1373413273), "a4631f74-f77e-4bc7-a70a-59d803d0418c" }, { new PrefabGUID(-1200074387), "f934dde1-cc86-49d3-840b-789cb28a9cce" }, { new PrefabGUID(1980594081), "f934dde1-cc86-49d3-840b-789cb28a9cce" }, { new PrefabGUID(114912615), "de6bdc63-562d-4441-ac1a-9e5456ea4629" }, { new PrefabGUID(-436956599), "e1568a29-022b-4083-9edf-d5a131b3c5e5" }, { new PrefabGUID(-671059374), "d2cde96f-3f2b-4df6-9e76-6043583fa79d" }, { new PrefabGUID(1050151632), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(761646020), "d9d28939-23b5-4f91-b53a-1fde1c33f4fd" }, { new PrefabGUID(-2080231735), "1b3f612e-ecad-4d55-a9b3-3c533c64da6e" }, { new PrefabGUID(1912966420), "1b3f612e-ecad-4d55-a9b3-3c533c64da6e" }, { new PrefabGUID(1494126678), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-29797003), "df33d822-c589-4c09-a91e-ec3e0f28eafd" }, { new PrefabGUID(-268935837), "4ab538c5-1fc5-4dc5-bb46-da3ab0f5b3ce" }, { new PrefabGUID(1148936156), "4ab538c5-1fc5-4dc5-bb46-da3ab0f5b3ce" }, { new PrefabGUID(-823557242), "c65a3c63-f098-427c-97e0-a8617766bf6b" }, { new PrefabGUID(1787640747), "70d20e57-6ffa-4a1d-94f6-035f5918cc4a" }, { new PrefabGUID(-303396552), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(616274140), "1df1f8a0-28d7-4486-ab41-f9af77d4eed0" }, { new PrefabGUID(-1418430647), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(106480588), "59af5689-73bc-49cc-ae20-d893a65ecb2b" }, { new PrefabGUID(-981051151), "300b37b3-ce8f-46f9-ae3f-fd99f643f536" }, { new PrefabGUID(-1009917656), "300b37b3-ce8f-46f9-ae3f-fd99f643f536" }, { new PrefabGUID(407089231), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(232701971), "fe70732a-70a1-4b78-be1f-127d5975729c" }, { new PrefabGUID(-575831311), "50fb6eb0-87fa-435e-b04e-6c3b5309c0cb" }, { new PrefabGUID(336560131), "7e1a0761-1a1a-4766-9de1-4638156b5970" }, { new PrefabGUID(-1055380229), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(593505050), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-138006205), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(-2039670689), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(-444945115), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(1426964824), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-2018710724), "eb79e083-eedc-46c6-92d6-d8c412414680" }, { new PrefabGUID(1745498602), "695bd903-bead-4502-80ad-a21b927d332c" }, { new PrefabGUID(-55245645), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(-1099451233), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(1626314708), "1f842f41-ebb2-4e69-b985-2f709c3bc9bf" }, { new PrefabGUID(2041915372), "333f832e-3733-4aa3-9c07-7f655846fcdd" }, { new PrefabGUID(280858720), "1a23435b-2543-48d0-802e-396b2d5708c3" }, { new PrefabGUID(-259591573), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(-1099047820), "121eb14b-3e78-464d-9f01-0a464264f1b4" }, { new PrefabGUID(-1988959460), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(924132254), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(-767167590), "a7b2b314-aa8d-44a1-8ee4-c19115f30f05" }, { new PrefabGUID(-393555055), "a7b2b314-aa8d-44a1-8ee4-c19115f30f05" }, { new PrefabGUID(-1697944553), "a3bd3baf-94d4-4461-a21e-cdb82401520c" }, { new PrefabGUID(1043643344), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(1106149033), "98b27507-db6e-494b-9499-04a896c687da" }, { new PrefabGUID(986768339), "be4df1b1-ca7d-4c89-b987-c5ec25adaa32" }, { new PrefabGUID(-442412464), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(-240536861), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(-1584807109), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(-2046268156), "52925a56-73db-484d-b666-ba37d72bc3fe" }, { new PrefabGUID(769065062), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-924080115), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(1728773109), "0e744db8-6d01-4076-9d25-1745c28ef97f" }, { new PrefabGUID(1780171587), "2cd45895-6936-4af4-9e20-881662101f82" }, { new PrefabGUID(1897056612), "4b0679a6-6a11-4665-8b2c-308c8c6b925d" }, { new PrefabGUID(-450600397), "100df82f-664f-43bf-a93b-3a9b166c97d8" }, { new PrefabGUID(-1128238456), "100df82f-664f-43bf-a93b-3a9b166c97d8" }, { new PrefabGUID(1462269123), "973ecdc8-18b3-4b72-807e-b77fbb012d55" }, { new PrefabGUID(-910296704), "a2fd6eb4-9553-4fa3-9553-b7e3e3ba06a7" }, { new PrefabGUID(-99012450), "460f5eef-29f9-4bab-a9b8-6541b24c99aa" }, { new PrefabGUID(-1365627158), "7300a627-2547-4597-9b80-885b0828cc64" }, { new PrefabGUID(855721879), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(729746981), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-218175217), "aee0ed29-9fb8-423b-b892-21678e0dda34" }, { new PrefabGUID(666177656), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(55100532), "d6cd23b4-5603-4583-b266-75a117b6222d" }, { new PrefabGUID(-372256748), "159932ac-ce5d-46f2-ae29-f81651fa11d1" }, { new PrefabGUID(-2072914343), "159932ac-ce5d-46f2-ae29-f81651fa11d1" }, { new PrefabGUID(-1108748448), "e1568a29-022b-4083-9edf-d5a131b3c5e5" }, { new PrefabGUID(1029047051), "ceef770a-9352-45be-aa5e-2e6d62dfb690" }, { new PrefabGUID(-221278041), "d38d2b28-155b-45b4-949d-1b73cf40c933" }, { new PrefabGUID(-559819989), "635ade35-3edc-45aa-b649-bc9e79534aa0" }, { new PrefabGUID(-75106506), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-364183632), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-2089362645), "b185e956-b54a-43e8-81f4-df2baec1ae30" }, { new PrefabGUID(17367048), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(-930333806), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(172235178), "53d5aebb-d82b-4a94-a070-2d79d42a5760" }, { new PrefabGUID(-884401089), "782e1cab-f8b4-4372-80d8-2f7b7a9a4739" }, { new PrefabGUID(-1025552087), "3fdbf0fc-8e64-4d6c-9112-23cf690a398b" }, { new PrefabGUID(823276204), "3fdbf0fc-8e64-4d6c-9112-23cf690a398b" }, { new PrefabGUID(-195077008), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(597386568), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(803219139), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(572729167), "9393226f-bef6-46a6-b80f-8a6bc25592c1" }, { new PrefabGUID(1224283123), "1bb6aadb-6c36-43aa-bb65-3ce185a3b76d" }, { new PrefabGUID(-1172003904), "2805ac56-5074-4bf1-a026-4df29da2e7ea" }, { new PrefabGUID(-878541676), "cf538724-0ada-4923-b1e3-254adce55b1b" }, { new PrefabGUID(731857280), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-548489519), "22ffd45f-259a-47a5-95fe-1d8d7849323d" }, { new PrefabGUID(-2110724275), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(-799718518), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-614820237), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1072754152), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(1105583702), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(891705701), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(1078424589), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(342127250), "5574a8a4-b349-42f1-a87b-15d865f22515" }, { new PrefabGUID(910988233), "3b5a9d1b-1f50-4d07-ad71-0204d54680ba" }, { new PrefabGUID(-779632831), "49de252b-d142-412f-ac46-3d54b6a6dad2" }, { new PrefabGUID(-1618703048), "ec81d147-6172-4757-a4c5-b88ee49aac31" }, { new PrefabGUID(-1914181232), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(-1266036232), "38f60026-3576-4817-8f91-86b3f1f9b4ae" }, { new PrefabGUID(-1799461404), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-235172198), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(343833814), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-740796338), "3578461a-547d-4223-b4d6-1af8491dfdc8" }, { new PrefabGUID(-375258845), "d378419c-dfbe-45ba-9bc7-bb7e31b7012f" }, { new PrefabGUID(1496810447), "52fd9e33-298b-4f4c-af5b-efe3faa91ba7" }, { new PrefabGUID(1906807803), "9432cd54-b5b8-45b3-b5b9-b3f457356f93" }, { new PrefabGUID(1476543271), "1222ad09-0185-4d18-822a-bb4fcf7a31fd" }, { new PrefabGUID(194933933), "d8c8a097-23fe-4c16-b893-fe5e09a3342e" }, { new PrefabGUID(658578725), "5a7cfcb6-f268-4ccd-ac69-504619bb8645" }, { new PrefabGUID(2097040330), "f7950d49-516f-4b3b-8cd1-159f4b2dd4ca" }, { new PrefabGUID(-831097925), "49de252b-d142-412f-ac46-3d54b6a6dad2" }, { new PrefabGUID(-2086433846), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1832935107), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(17609984), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-1779239433), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(302393064), "d2629c2b-7276-4de5-a52c-44ad8fb3ee50" }, { new PrefabGUID(-1115032717), "df47bc51-1d42-4ade-83b7-c469f21b0c88" }, { new PrefabGUID(-1380216646), "46ceaedf-193b-42f1-9da0-92cd2fdc92c2" }, { new PrefabGUID(-1075824048), "3f1dada3-dbf3-48fe-9bff-6b214a797a30" }, { new PrefabGUID(-694328454), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(794228023), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(-1034892278), "a6f71258-5d9f-45b1-afdb-9cc23830260d" }, { new PrefabGUID(-825299465), "a6f71258-5d9f-45b1-afdb-9cc23830260d" }, { new PrefabGUID(-18289884), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(1767714956), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(-54072010), "cbe46003-3396-4fe7-ad13-2c2ad402c8f4" }, { new PrefabGUID(-56441915), "1bcfb112-b568-4742-9925-c45beb5b12de" }, { new PrefabGUID(-1884553416), "a685f11b-064e-4f26-bbbe-9e4b7b44c91e" }, { new PrefabGUID(-370708253), "e058c75e-bf7c-4731-8880-cbce1a8c0fc0" }, { new PrefabGUID(1772451421), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(153561250), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(1631713257), "419d4222-f813-4d96-ac40-a0eb9abb2b3c" }, { new PrefabGUID(-1070366200), "a81889b6-54a7-4025-86c8-d0e308deda55" }, { new PrefabGUID(1732477970), "a81889b6-54a7-4025-86c8-d0e308deda55" }, { new PrefabGUID(192241915), "bdab1ee9-b540-4211-b1a6-516342d2da79" }, { new PrefabGUID(-2039908510), "3b0d06aa-66f3-4a99-a166-2a8349b14782" }, { new PrefabGUID(-784265984), "99039d80-5a98-4686-b44e-9cc13ce0d457" }, { new PrefabGUID(1479720323), "4717a3eb-fbd9-413c-9caa-90ce1e20100d" }, { new PrefabGUID(-1433235567), "106257f9-0a09-4d97-ae2e-e703aa683d84" }, { new PrefabGUID(2054432370), "1f842f41-ebb2-4e69-b985-2f709c3bc9bf" }, { new PrefabGUID(2090982759), "27a5471c-d0fc-410a-a4a6-bcc7785e0b83" }, { new PrefabGUID(1451256919), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(-1722278689), "e7217a92-71b7-4580-916e-00c3aa0b0212" }, { new PrefabGUID(-1089337069), "46805a4c-7249-4a9e-aa4a-72e635ceecdc" }, { new PrefabGUID(332296669), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(-198252716), "a05752c9-9820-48c4-ada9-8cf2a67eb568" }, { new PrefabGUID(2145471156), "2901c637-3941-45ee-8538-87c7445a826f" }, { new PrefabGUID(134039094), "2901c637-3941-45ee-8538-87c7445a826f" }, { new PrefabGUID(1406266284), "948cd904-dc34-440c-a2e1-56704e73641f" }, { new PrefabGUID(1112903312), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(-1659842473), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(-893091615), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(2036785949), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-2092104425), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-63435588), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(-2075236675), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1327926350), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(937597711), "ae34e53c-de67-4f77-9ffd-a8ed33489824" }, { new PrefabGUID(1640311129), "ae34e53c-de67-4f77-9ffd-a8ed33489824" }, { new PrefabGUID(673647636), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(850622034), "e7644bef-0106-4ee5-9dec-e07daf4737a8" }, { new PrefabGUID(-1342764880), "89e4ece4-4776-44ba-a0e7-d8f6dccaddb2" }, { new PrefabGUID(-1669199769), "a7fabc15-6e38-440e-815c-8220cc5b05d5" }, { new PrefabGUID(343676339), "e058c75e-bf7c-4731-8880-cbce1a8c0fc0" }, { new PrefabGUID(-1399273168), "cd082b7b-9ef7-4cb6-a967-961662337098" }, { new PrefabGUID(478580792), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1906792990), "7191dd30-58a5-4b18-b3cc-77cbad94eabc" }, { new PrefabGUID(-625375348), "b185e956-b54a-43e8-81f4-df2baec1ae30" }, { new PrefabGUID(-1508046438), "b185e956-b54a-43e8-81f4-df2baec1ae30" }, { new PrefabGUID(721166952), "4440fe99-a8d9-45db-8869-ef292e5f4f53" }, { new PrefabGUID(-1391546313), "7b7b7478-a726-4b8e-a02a-59d839593d4d" }, { new PrefabGUID(345283594), "0d3540df-e2d1-42bc-be08-5975b5f4f6e0" }, { new PrefabGUID(-558928562), "abe68942-0436-4804-b09b-6fd4d25e6f34" }, { new PrefabGUID(-2037006512), "59494f79-9328-45db-84d2-55ecb635294a" }, { new PrefabGUID(-1719944550), "4717a3eb-fbd9-413c-9caa-90ce1e20100d" }, { new PrefabGUID(2128996433), "4717a3eb-fbd9-413c-9caa-90ce1e20100d" }, { new PrefabGUID(1218339832), "5f00d99d-eac3-4bd3-af94-8e2ddc1de955" }, { new PrefabGUID(849891426), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(516718373), "89e4ece4-4776-44ba-a0e7-d8f6dccaddb2" }, { new PrefabGUID(1233988687), "590ff5f7-b82f-47cc-9545-57e2b33996c6" }, { new PrefabGUID(-1967480038), "78294744-3ea9-4768-be41-3a85832212cc" }, { new PrefabGUID(153390636), "0404cf9d-9b94-43e2-afa1-c125ecdda2de" }, { new PrefabGUID(-932793458), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-76116724), "cc08d478-85e6-4107-b917-388ed3442b30" }, { new PrefabGUID(-1737346940), "dda35e16-2a66-4faf-ac5e-5825aa8157f8" }, { new PrefabGUID(-915182578), "4c841f64-06a7-41f8-bf7a-dc9c067bc4f0" }, { new PrefabGUID(-1722506709), "b99fe1c7-b3d8-4abc-8763-79192892aee0" }, { new PrefabGUID(1727426580), "f4de612b-ceba-443a-b659-eaf4a674a0c4" }, { new PrefabGUID(1971653132), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(-1786031969), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-2025921616), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1416355128), "b2cccf82-f497-4278-bb87-9b72c5492d1f" }, { new PrefabGUID(-1875351031), "b2cccf82-f497-4278-bb87-9b72c5492d1f" }, { new PrefabGUID(2079933370), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(1688478381), "198d311b-92db-4b67-9c39-bfdec509b75b" }, { new PrefabGUID(1466015976), "a05752c9-9820-48c4-ada9-8cf2a67eb568" }, { new PrefabGUID(38526109), "4b0679a6-6a11-4665-8b2c-308c8c6b925d" }, { new PrefabGUID(-1917548708), "69f2770d-6db6-46b1-84ff-ec2856a9fa28" }, { new PrefabGUID(685266977), "a52b8c47-9562-4119-b3c6-62213e43048b" }, { new PrefabGUID(-1928607398), "cc08d478-85e6-4107-b917-388ed3442b30" }, { new PrefabGUID(-143994147), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-203043163), "ba73c4c9-c890-4a32-a589-8e061b011773" }, { new PrefabGUID(-1387838833), "b2cccf82-f497-4278-bb87-9b72c5492d1f" }, { new PrefabGUID(2005508157), "e04cc728-70c2-4293-bcb7-6628ded0c34d" }, { new PrefabGUID(-1846851895), "d8addf40-d23b-43bf-83fb-fd8ea2cc8cef" }, { new PrefabGUID(-126478565), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(-1682746393), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(-1587402408), "201f12cc-0def-49b2-8f53-3f617d6f506a" }, { new PrefabGUID(847893333), "fe70732a-70a1-4b78-be1f-127d5975729c" }, { new PrefabGUID(1896428751), "83409624-6b4e-4a09-97cb-5dd633d811e2" }, { new PrefabGUID(575918722), "ff1c75d1-856a-415e-a6b4-f2d4a510be26" }, { new PrefabGUID(326501064), "4cbbde3d-9b0d-45a2-90f7-17b7b3795960" }, { new PrefabGUID(-1670130821), "106257f9-0a09-4d97-ae2e-e703aa683d84" }, { new PrefabGUID(1990744594), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1213645419), "a34f55e7-91b8-43f6-9e73-a45eb11b3844" }, { new PrefabGUID(1401026468), "a34f55e7-91b8-43f6-9e73-a45eb11b3844" }, { new PrefabGUID(-915884427), "2071206a-75b8-43c2-9d20-26df6335db81" }, { new PrefabGUID(426583055), "2071206a-75b8-43c2-9d20-26df6335db81" }, { new PrefabGUID(1684831595), "ec81d147-6172-4757-a4c5-b88ee49aac31" }, { new PrefabGUID(1254601307), "e3a817b1-c662-4543-ba43-6688f75bcc7d" }, { new PrefabGUID(-1383529374), "e3a817b1-c662-4543-ba43-6688f75bcc7d" }, { new PrefabGUID(-744966291), "cd082b7b-9ef7-4cb6-a967-961662337098" }, { new PrefabGUID(1900336326), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1531777139), "8a8deaeb-048c-4c14-8d69-61fdebb357e3" }, { new PrefabGUID(48283616), "f782e217-dc37-44c1-9a76-c049076eba1c" }, { new PrefabGUID(834333879), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(-764515001), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(213173421), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1703325932), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(1193263017), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(956965183), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-26105228), "9277b654-8567-49b5-8ec6-1e63aeb0184b" }, { new PrefabGUID(37713289), "be4df1b1-ca7d-4c89-b987-c5ec25adaa32" }, { new PrefabGUID(-1464869978), "5f00d99d-eac3-4bd3-af94-8e2ddc1de955" }, { new PrefabGUID(1532829342), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(2136899683), "e4d0168f-dc4a-42e0-9c5e-d5c00c5acf2e" }, { new PrefabGUID(128488545), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(-989493184), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-1365931036), "fefef080-eb6a-49e1-bb2d-ab2b744751a0" }, { new PrefabGUID(-1502865710), "c9778d76-70f0-41ca-bbba-f4b92679669c" }, { new PrefabGUID(203103783), "6b248451-7950-4f0f-888f-ba1d66fbb0db" }, { new PrefabGUID(2103131615), "c5449422-89a3-43cd-a914-562002edab1c" }, { new PrefabGUID(2142021685), "4cbbde3d-9b0d-45a2-90f7-17b7b3795960" }, { new PrefabGUID(-1420322422), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-2025101517), "9163ff1b-1784-461c-9867-a2eaecb9e9bb" }, { new PrefabGUID(1730498275), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(-1395711815), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(565869317), "373240ae-1ef6-4ef4-ad5e-d7c10000fd54" }, { new PrefabGUID(-293507834), "373240ae-1ef6-4ef4-ad5e-d7c10000fd54" }, { new PrefabGUID(-1915060856), "60f98f04-8e41-40ef-90f2-bc274442107c" }, { new PrefabGUID(-680831417), "2fc6d543-b4ef-46fc-acc8-a3cb3378e498" }, { new PrefabGUID(-1789347076), "eb90126b-f5e2-485c-81e3-a6be44cd1cec" }, { new PrefabGUID(1112948824), "7fee9abd-d1cc-4a3b-b1a6-deb8d3fd3dac" }, { new PrefabGUID(1687896942), "b8172b76-29af-4fac-b79a-0da82c903272" }, { new PrefabGUID(374565592), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1719333743), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-1084690188), "b189abe5-b93a-4e72-830b-dea7a7d0d13f" }, { new PrefabGUID(1434914085), "b189abe5-b93a-4e72-830b-dea7a7d0d13f" }, { new PrefabGUID(-753453016), "1d527ada-ec57-4fd8-8409-a857ff7286b0" }, { new PrefabGUID(-1160778038), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(109969450), "4d645623-80e5-4d9e-b2a2-be0f7ca4b137" }, { new PrefabGUID(2016963774), "cf538724-0ada-4923-b1e3-254adce55b1b" }, { new PrefabGUID(173817657), "cf538724-0ada-4923-b1e3-254adce55b1b" }, { new PrefabGUID(1510247015), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1347412392), "aa7475b0-6842-4c09-95d8-d9a07196510f" }, { new PrefabGUID(-2002658567), "296ce7e5-10be-49d4-8d81-13573749f4ec" }, { new PrefabGUID(-1308100049), "fd361515-b66d-450a-8948-7e4a15e37ce2" }, { new PrefabGUID(-578677530), "9e8a65d1-a178-4e04-a1c5-535ba1459142" }, { new PrefabGUID(-496360395), "d7f5b785-a846-4f9e-be66-a20bf57db6c6" }, { new PrefabGUID(1772642154), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(709450349), "a21c8550-15bf-4680-a0f7-2c135fe581c5" }, { new PrefabGUID(-2085282780), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1773935659), "e04cc728-70c2-4293-bcb7-6628ded0c34d" }, { new PrefabGUID(2009018555), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-340923989), "97e2f3e6-554e-43ae-b3e9-c543c3562bf4" }, { new PrefabGUID(-39008356), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(-700632469), "007a016d-022b-4079-9ea5-3ad7ac990819" }, { new PrefabGUID(-484556888), "cb492cc0-5523-4271-8c13-05ad5b97bb1c" }, { new PrefabGUID(-175381832), "79906aad-0041-4cdd-9812-12eaa018c27d" }, { new PrefabGUID(-732208863), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(169329980), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(1660801216), "c65a3c63-f098-427c-97e0-a8617766bf6b" }, { new PrefabGUID(1945956671), "fec53478-9ae5-46d4-92c2-372a693d2e29" }, { new PrefabGUID(-1146194149), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(-1659822956), "0d2e3f54-23b5-4ffd-b787-8c7a32235621" }, { new PrefabGUID(-309264723), "d8659623-2569-41f0-be12-1bef6afc998c" }, { new PrefabGUID(577495705), "4b785bd6-c907-4380-a897-6b2b9ded24fb" }, { new PrefabGUID(574276383), "380b97d6-2af0-453c-83ae-f1ca318f5074" }, { new PrefabGUID(-2122682556), "9afaaaa5-61e2-4132-aae1-2af99c7be5bc" }, { new PrefabGUID(-2092246077), "64b907b8-06de-4ccf-ad5b-561185692f09" }, { new PrefabGUID(40217214), "740edb57-0a6c-4919-b70f-906cdc3544bb" }, { new PrefabGUID(-1048977650), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-1594911649), "9d729558-6f82-4009-8fd3-53572d3965c7" }, { new PrefabGUID(1917502536), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(-1208066429), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-375581934), "0d4a0fe9-5e41-4582-8868-d5d30d8be98f" }, { new PrefabGUID(-1728284448), "f763269c-3838-4fad-8498-81b2d89de15b" }, { new PrefabGUID(1406393857), "f763269c-3838-4fad-8498-81b2d89de15b" }, { new PrefabGUID(657708566), "f2af3a90-4ed7-4ccb-8969-8b164e8cf7a8" }, { new PrefabGUID(947731555), "83e1fff6-8b4b-45d8-b5c4-8ef4d0b67c90" }, { new PrefabGUID(1825512527), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(619948378), "65bd2953-493b-4699-94bd-a537768a2fc4" }, { new PrefabGUID(2122229952), "69b296b9-b55b-4ef2-98b4-560fc7a32ea6" }, { new PrefabGUID(-1990875761), "f3900ed7-e5b8-4ee3-9719-85048c296319" }, { new PrefabGUID(-1449631170), "bff27151-9d05-45a5-8438-eda9799414be" }, { new PrefabGUID(1974733695), "c5449422-89a3-43cd-a914-562002edab1c" }, { new PrefabGUID(-1822337177), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1570140219), "565a110a-c477-493b-bbea-dcb8005b30f8" }, { new PrefabGUID(-951976780), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1353870145), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-242295780), "6b248451-7950-4f0f-888f-ba1d66fbb0db" }, { new PrefabGUID(-982850914), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-253226787), "a8bd510a-f877-4a1b-acaf-1c776a36282b" }, { new PrefabGUID(-440174408), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1065970933), "10b52efc-9c24-4f0e-8dd1-0d83cfe46fc4" }, { new PrefabGUID(-19165577), "f26fc772-46a9-43cb-94a9-836b5eaf6a47" }, { new PrefabGUID(1453520986), "d8659623-2569-41f0-be12-1bef6afc998c" }, { new PrefabGUID(-1004061470), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(2119230788), "e4d0168f-dc4a-42e0-9c5e-d5c00c5acf2e" }, { new PrefabGUID(939467639), "b8977486-8c0f-48dc-b451-dbd0422dd81d" }, { new PrefabGUID(795262842), "c2517a6c-1fa5-4fb5-ace0-951589f1120e" }, { new PrefabGUID(-1642110920), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(952695804), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-236166535), "a5b597ab-a632-47af-9b45-0c3b1c038bff" }, { new PrefabGUID(1083647444), "6b248451-7950-4f0f-888f-ba1d66fbb0db" }, { new PrefabGUID(-458883491), "ec7331d7-6fbb-4052-a7e0-1b2d3d90adee" }, { new PrefabGUID(400170781), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(218843465), "0d4a0fe9-5e41-4582-8868-d5d30d8be98f" }, { new PrefabGUID(674807351), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(692079022), "576c577e-468c-4945-bd33-830600225111" }, { new PrefabGUID(-208499374), "0f21c81c-b8b2-47ab-94fa-1d059fa4324a" }, { new PrefabGUID(-861407720), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(-1897484769), "6bb2eef6-acf0-4f7a-9c8f-ea5aca103d57" }, { new PrefabGUID(1756241788), "6bb2eef6-acf0-4f7a-9c8f-ea5aca103d57" }, { new PrefabGUID(2057508774), "f4de612b-ceba-443a-b659-eaf4a674a0c4" }, { new PrefabGUID(-2086044081), "74ae9fc7-5251-4a62-b312-a3aed0bf941e" }, { new PrefabGUID(-1030822544), "74ae9fc7-5251-4a62-b312-a3aed0bf941e" }, { new PrefabGUID(1649578802), "0e744db8-6d01-4076-9d25-1745c28ef97f" }, { new PrefabGUID(-1805216630), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-837329073), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-603934060), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-301730941), "a05752c9-9820-48c4-ada9-8cf2a67eb568" }, { new PrefabGUID(-1509286426), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(2065149172), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(923140362), "fac7c366-d818-404d-9c23-6c701e883111" }, { new PrefabGUID(1481842114), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-1301144178), "e058c75e-bf7c-4731-8880-cbce1a8c0fc0" }, { new PrefabGUID(233127264), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(591725925), "3f1dada3-dbf3-48fe-9bff-6b214a797a30" }, { new PrefabGUID(-1252779334), "a7b2b314-aa8d-44a1-8ee4-c19115f30f05" }, { new PrefabGUID(-589412777), "b923ebbc-2437-4f85-ad42-8e28d8dbbe9e" }, { new PrefabGUID(282791819), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1968372384), "a174902c-6321-4470-ac8c-a0f430ad2ca0" }, { new PrefabGUID(-274383877), "d9d28939-23b5-4f91-b53a-1fde1c33f4fd" }, { new PrefabGUID(-1287507270), "eb90126b-f5e2-485c-81e3-a6be44cd1cec" }, { new PrefabGUID(-1224027101), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-1905691330), "4ec97a89-7b65-4343-8036-a534785882f6" }, { new PrefabGUID(-1476015811), "18a391fa-5963-48eb-a6df-380275178de9" }, { new PrefabGUID(-1447279513), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(1309418594), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(2072218017), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(1094898203), "8214cb0c-c146-4a6c-a722-db2e7f25dfef" }, { new PrefabGUID(769910415), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(348038236), "659e6763-8e67-4834-a260-f313fdb1da70" }, { new PrefabGUID(-85729652), "659e6763-8e67-4834-a260-f313fdb1da70" }, { new PrefabGUID(-581295882), "6e2ed58f-bbe9-4e3e-82a2-2c9a0d202b6b" }, { new PrefabGUID(1216169364), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-1194643220), "fd361515-b66d-450a-8948-7e4a15e37ce2" }, { new PrefabGUID(1149585723), "c9778d76-70f0-41ca-bbba-f4b92679669c" }, { new PrefabGUID(286320185), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(1478790879), "fd315ca0-1344-495a-9471-68b1dd9fc3be" }, { new PrefabGUID(1220569089), "8214cb0c-c146-4a6c-a722-db2e7f25dfef" }, { new PrefabGUID(-699233841), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(358623979), "7191dd30-58a5-4b18-b3cc-77cbad94eabc" }, { new PrefabGUID(2107764370), "7191dd30-58a5-4b18-b3cc-77cbad94eabc" }, { new PrefabGUID(495971434), "d553ccd2-fb35-49dc-aee6-0a8eb330f124" }, { new PrefabGUID(-1666526529), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1292194494), "b43cdb58-1164-468a-8b31-b3e35df5ba4e" }, { new PrefabGUID(1854211210), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1295855316), "3e228167-88a2-410d-a13c-c4ca323ff414" }, { new PrefabGUID(1655577903), "48075555-d5d0-42b2-b4b0-99b866c321fd" }, { new PrefabGUID(1696014952), "4b0679a6-6a11-4665-8b2c-308c8c6b925d" }, { new PrefabGUID(-1193126567), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-694393029), "9eecf02c-57b6-4b9b-b7f4-1590ff6569a2" }, { new PrefabGUID(-371347062), "9eecf02c-57b6-4b9b-b7f4-1590ff6569a2" }, { new PrefabGUID(1786690263), "f2ddb694-946c-45c8-97b5-826c4fcc7854" }, { new PrefabGUID(192051202), "9c7c1ef0-cf92-412a-adde-053a6018de47" }, { new PrefabGUID(-1356006948), "60171a7c-3b8f-444f-9713-8d283665f642" }, { new PrefabGUID(1420480270), "60171a7c-3b8f-444f-9713-8d283665f642" }, { new PrefabGUID(525027204), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(177376927), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1887807944), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-223185284), "2901c637-3941-45ee-8538-87c7445a826f" }, { new PrefabGUID(-1707267769), "f2af3a90-4ed7-4ccb-8969-8b164e8cf7a8" }, { new PrefabGUID(2105565286), "95c64973-7138-41ee-852b-1c83e9ff1aa9" }, { new PrefabGUID(739223277), "c8e00a7b-b1ae-424e-8c90-77c7b9593a36" }, { new PrefabGUID(1012307512), "19481ffe-e078-4a25-a72a-21b41af5f628" }, { new PrefabGUID(1807491570), "56090c86-b5b4-4d47-8c54-6a04f6ccdb41" }, { new PrefabGUID(-1189707552), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1208888966), "e3e5021f-a812-495c-83c4-2ead6fe8ddae" }, { new PrefabGUID(2025660438), "a98cc88d-fb88-488d-a75d-deb2d6b6024d" }, { new PrefabGUID(-249647316), "1cbe6350-7548-4481-af45-f6d8cb75a2e1" }, { new PrefabGUID(233171451), "bfae74ba-ceb4-4c48-9299-58ff75896622" }, { new PrefabGUID(1002732935), "47160d2a-5900-4074-bc09-fcaceba4737e" }, { new PrefabGUID(-1617973064), "082c8c97-97b3-450d-9b1e-f5e65c727818" }, { new PrefabGUID(1148284648), "a16f184c-40ea-416d-b9d5-46b0cbb86d65" }, { new PrefabGUID(-1087318964), "acf41408-f100-46fe-95eb-298bf75714fa" }, { new PrefabGUID(-1051190225), "db1afc86-c561-4873-8bfa-1898ec1dc2cc" }, { new PrefabGUID(2128629897), "a6270824-2256-427d-9e9a-51a363a7579b" }, { new PrefabGUID(841757706), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-568845499), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-496233120), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(247896794), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(-847327302), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1020324236), "1e024a2f-d4eb-44d2-8181-70ba38aa4e56" }, { new PrefabGUID(14947666), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(2099812790), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-116587794), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-280574043), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1441325084), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-597391921), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-915929892), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(701450949), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1741189817), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-382913708), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1563014858), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-730437928), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(88850785), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(183752077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1309114324), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1551140710), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-420570478), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(617823552), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-350642638), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1276648449), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-931708593), "7eb8ae56-3287-4c74-8a83-81855d5e37a6" }, { new PrefabGUID(211300082), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(964878669), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1177797340), "0511ad2f-393e-46d7-863b-f80402612cc7" }, { new PrefabGUID(-1691591896), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-689229573), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1714996121), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1062857775), "39c6261a-b41d-4be2-afd3-66fb9e0d5c85" }, { new PrefabGUID(-20539715), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(98022305), "d17154d9-a557-424b-ab0c-9ddc9fd7f655" }, { new PrefabGUID(1546717070), "5360353f-5722-4833-970e-9b5fb21d3975" }, { new PrefabGUID(761680482), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(481411985), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(-1249437419), "9174693a-090f-4e21-b360-c8f801a43e26" }, { new PrefabGUID(477397109), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-440373841), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(1249925269), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(205884718), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2036664505), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(-1683730497), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(495259674), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-650192545), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(211394464), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1390611238), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2029387940), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1986179833), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-267258900), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-581209791), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(452822121), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1016182556), "61588315-1cbc-43a7-9584-bfa65245fb14" }, { new PrefabGUID(2122998237), "61588315-1cbc-43a7-9584-bfa65245fb14" }, { new PrefabGUID(-3758365), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(2136688539), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1850527627), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1399369255), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-843384411), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1427506356), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(1492189086), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(1297311521), "af9c6213-297e-492e-badd-ce2c7bd8992f" }, { new PrefabGUID(1864378264), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-1648920159), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1196517991), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1783782358), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1798913199), "e8d7e584-b387-4032-9866-b4acbab8112c" }, { new PrefabGUID(-2020699185), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1416105872), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(117247654), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(1548379114), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-1879864480), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1335616296), "ba956907-2aef-4ab9-8929-18c3c5bd1e96" }, { new PrefabGUID(1013114237), "ba956907-2aef-4ab9-8929-18c3c5bd1e96" }, { new PrefabGUID(248404806), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(898033701), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-891060764), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-494771621), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1357870002), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-254080557), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(149514079), "5b18b878-bac0-4d4b-a9b6-f019e3bd9b0e" }, { new PrefabGUID(965421878), "a0b73f4a-bc24-47af-a926-f3342a8ce369" }, { new PrefabGUID(1456136938), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1422240708), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-664569083), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1532726733), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(94933870), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1986068244), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-39228843), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(651647554), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-708850140), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(192866635), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-27840697), "9636c2c0-c7e7-4dc6-8275-842282dc9f14" }, { new PrefabGUID(-1803981405), "12bccdbd-a428-487f-b7d7-78d7556a469e" }, { new PrefabGUID(-149514613), "bfc1ad69-7bcf-4acd-afd0-22f9dee33358" }, { new PrefabGUID(1687099904), "4ab18071-1b11-44c3-8859-769dc04e2258" }, { new PrefabGUID(-1204819086), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1978007923), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1409019914), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1501158829), "d4bfaba6-9878-437a-868a-a30013c85d28" }, { new PrefabGUID(-309871879), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-639593760), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1315478418), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1162366175), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1448118517), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1695763915), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(1383453728), "d84dd5d7-cc8c-4412-b5b4-5cf96299c7c4" }, { new PrefabGUID(221530600), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1866448125), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1770841962), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(72734316), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(756139644), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-749389155), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(2091042632), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1168210403), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(556335075), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1031474651), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-2090815764), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(295045820), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(2095802125), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1340177024), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(1808221013), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-857675545), "97db39a8-aa0b-4197-aa82-f0a047809d05" }, { new PrefabGUID(-680856467), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1479612756), "4e7e347a-05c9-465d-bf88-ff926cdf342c" }, { new PrefabGUID(8807466), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(1322698651), "26c2e0da-c6de-4f99-9fb0-33e4e9abecfa" }, { new PrefabGUID(1945392759), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(822633768), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-805514691), "4a8f9a35-a7b7-4cb8-b469-82455a00ef15" }, { new PrefabGUID(-842785205), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(-1506728203), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1077498120), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(992060171), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(1225529685), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(-759138830), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(91249849), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(1473095785), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-1047491293), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1742500275), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1007451621), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1047692800), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-914344112), "86ba2b61-1407-4cd5-afb8-df8f4193b413" }, { new PrefabGUID(2070140125), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(-1016145613), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(-1362226779), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1924032736), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1428855842), "ea3d88c4-1e4e-4449-bdda-c33d6efb4629" }, { new PrefabGUID(-1670440585), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2081714952), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1236214928), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(886063983), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1156226621), "354a8372-3c68-49ea-8673-76673c552ea9" }, { new PrefabGUID(-1525577000), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(-839386508), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1210884829), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(131953285), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1983112426), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2059612596), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(657450547), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1814959003), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-501371757), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-963623992), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(948730951), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(929369353), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-230952990), "f9a23880-fedc-4dae-9ba7-658a5a415b04" }, { new PrefabGUID(-685952199), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1678557149), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1209038175), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-833255541), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(543365747), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-130280994), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1648128560), "1f4f4d50-ebb2-440d-841e-b6ab67edd083" }, { new PrefabGUID(-70575944), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-943061757), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-668888775), "f5ce8738-2e50-4d23-9cfe-4a0b40a5cb36" }, { new PrefabGUID(-329078808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(340003308), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1826323796), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(151173850), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(546685538), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-332863103), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1162725480), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1889094547), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(847476786), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(722599012), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-501592674), "037480d3-3e4e-4f94-8fbc-ccaf3c6b0996" }, { new PrefabGUID(2024460612), "21458a9d-8bad-4280-96f7-af998b011625" }, { new PrefabGUID(-1036943907), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-809284772), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-939006306), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-914903899), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-595482115), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(922855296), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-1629569043), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1643450845), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1336700473), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(596395337), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(112453727), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(797450963), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1869018808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1484849310), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1293609465), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(-1198075389), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(1709284795), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(403738972), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1246326726), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-715615220), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(325658714), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1617717290), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(695067846), "5f685b39-3c81-4070-a860-65baa65ce919" }, { new PrefabGUID(769558056), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2146217789), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1058201566), "f5ce8738-2e50-4d23-9cfe-4a0b40a5cb36" }, { new PrefabGUID(-1942495608), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1691254929), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-1545438316), "db8508f6-71e3-45db-8973-4d5531a97dee" }, { new PrefabGUID(1654467658), "205783cd-64cf-487f-8a26-0de58091fe2e" }, { new PrefabGUID(1629100793), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1039955663), "5bc95e5d-4089-4908-b3d0-01c0c365cc34" }, { new PrefabGUID(-312796240), "98dbf9f7-ec93-45ae-ab80-0bfb2acb0cf8" }, { new PrefabGUID(2053056011), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(846507754), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1617880256), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(973975627), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1310557060), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1501543883), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(550876706), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-802865471), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1628835400), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2029137394), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1592003626), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(505640659), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1088859718), "d17154d9-a557-424b-ab0c-9ddc9fd7f655" }, { new PrefabGUID(385165207), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(382761265), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1358113706), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-200440242), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(741783094), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(1262003451), "1ac79631-845e-42a7-82db-6fd87e4f96f1" }, { new PrefabGUID(2041625587), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-22490832), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(594778109), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-743963442), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1478784055), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-841402173), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1325722355), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(1624827356), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1607170837), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1110188840), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1108325193), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1634136571), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-776694525), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(33571279), "2419671a-4624-49dc-ac8e-8d9d719a05df" }, { new PrefabGUID(1517447626), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1114643812), "04784c13-9dbd-49eb-9efa-452d1d533c5d" }, { new PrefabGUID(19031114), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-68142483), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1713640367), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1502523453), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-935015750), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-294731102), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1994950191), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-66951019), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1323999965), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(261951503), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2110769437), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(488481150), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-191894025), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1262525269), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-377463117), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-593875444), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(537620937), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-447578631), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2125818102), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1357699119), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1479036818), "515d6ec4-5c3b-4baa-b075-3b9e664ee00b" }, { new PrefabGUID(903306477), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2029046970), "c4c842ce-acbd-4972-b6b9-97eb676d6aee" }, { new PrefabGUID(2030125327), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1261373899), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-407341422), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1294766036), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-187744612), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(1650878435), "0d93bdc6-977f-4289-913f-7c79c6b54e0f" }, { new PrefabGUID(-1698981316), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1964067196), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(68363809), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-9078612), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1329409686), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1633132226), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-405003450), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1590188261), "6a1ac649-16f2-426d-8686-3c7f594bcfcd" }, { new PrefabGUID(-98135680), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1393329717), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(1130939687), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(919946085), "4e1df81a-570b-4152-b05c-6cb297a1c941" }, { new PrefabGUID(-2042076580), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-639471262), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-809908964), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1438305657), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(1529659981), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2122592609), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1059091794), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-1763951497), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-859352730), "53cfc5cc-c849-47e1-9d72-140b89dcbd18" }, { new PrefabGUID(1351498027), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(544237275), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(998806487), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1026449575), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1112631726), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1015070299), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-1888981494), "06368b5d-cc87-41e2-a74f-02f3b152115d" }, { new PrefabGUID(-59488185), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1224470698), "9ac4e25f-6f73-4eba-ac23-0dbf885a4427" }, { new PrefabGUID(-1869011274), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-560639220), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-150520781), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(294532069), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1924288461), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1648249846), "e36441c3-4503-4fca-9bbd-9e61a26f5b55" }, { new PrefabGUID(-2049927912), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-55735320), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1762655324), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(329043640), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2138222166), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-356990326), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-53726244), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-866526980), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1401138411), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-580940152), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1575317901), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(-1966260928), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-930815588), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2060534730), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1660458588), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(760344149), "45c214be-2829-44a2-a2d3-5fc4f79c2cc3" }, { new PrefabGUID(1749064378), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1510954952), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1648996357), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-352214814), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(523087989), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1131137826), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1166812757), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1568904735), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(821808685), "e1ec25f4-0f9d-48e2-8501-71ca354019c5" }, { new PrefabGUID(-1229087512), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(86533405), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1115417829), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1882115765), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-968445725), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1915922151), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1912437283), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-634705694), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-898001858), "14761769-49e8-4028-94b3-b9a4e3eaebc8" }, { new PrefabGUID(1059128), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-987810170), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(-948735477), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1167502816), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1629729690), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-865776841), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-635085409), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1382585346), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1006960825), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(211628325), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2142882097), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1941093851), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-324538848), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2036638378), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(951198708), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1262881470), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(175670852), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1220301459), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(-1498306516), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(323806214), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1317017789), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1944086996), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1797731340), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(71067886), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2139983264), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(897325595), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(940071564), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1888098383), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(837193552), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(-839571202), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(797495975), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1761660947), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-831562637), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-284360089), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1789525825), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1876841142), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1063690361), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-496335760), "56691bd3-7674-4243-a1ee-43dd855216c7" }, { new PrefabGUID(1878838878), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1853889696), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(340577476), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1191517048), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-177268000), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1749428209), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2016544872), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-215712550), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(788963695), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2031950279), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1548349308), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1707593926), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-336633586), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(1851411882), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1143650386), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1372140488), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1161896955), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-317345251), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(381862924), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1142040823), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-208121356), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(4267150), "5094cbff-f80c-4605-8264-fce8d4c80c93" }, { new PrefabGUID(1617928948), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(530484088), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(-1282136902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2145896190), "4051ab6a-8484-4ae7-bd78-58fe42053197" }, { new PrefabGUID(-1771783202), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1537394790), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-876908134), "848fb8bd-6c74-43c5-9551-19a5948e1c6e" }, { new PrefabGUID(727824809), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-67405040), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-245435862), "f37b93cf-9552-48a7-9ffb-7cd6caf9411c" }, { new PrefabGUID(-1934538221), "999c86cc-1552-45cd-8184-264787aaf81b" }, { new PrefabGUID(-1030552412), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1884688827), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1770479364), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-444905742), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1612983976), "c6bf6d9c-817e-4ace-b14d-889cf893df83" }, { new PrefabGUID(1126476370), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1125833271), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1105771640), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1213228171), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1684687653), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-347082762), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1717961213), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1622839653), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-64218175), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(193936844), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-705534828), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(107764414), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(215933642), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-1965562520), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1115346958), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1558475957), "e8b77439-2f72-4951-bcb4-55f5bdee5474" }, { new PrefabGUID(936625846), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1672126097), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(1425686238), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1189720448), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-41022254), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(1228457971), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(698366326), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(62042854), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1922493152), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(718360189), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1567787423), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1343651850), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-825962514), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(651637774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(787702249), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(973636261), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-675519112), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(556902791), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-744145902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1720952746), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1369843173), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1526010521), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1781779733), "1bceb59f-0798-46e9-98ef-90cd3ef7e639" }, { new PrefabGUID(-740078985), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1961570821), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(74226303), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1874296899), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(900927411), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(780432315), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-323939446), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2145809434), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(622287046), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-184530068), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1968364229), "f5ce8738-2e50-4d23-9cfe-4a0b40a5cb36" }, { new PrefabGUID(1238313774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(5164221), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-292632051), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1493606342), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-249023543), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(417450031), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1407801281), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(421907078), "0d4d0ca1-5483-4155-9664-a9bfb0672941" }, { new PrefabGUID(-1662046920), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1675917968), "b335d1b7-aedc-4ac4-bc57-b16dc788ec2d" }, { new PrefabGUID(-84816111), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1966330719), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1446310610), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(2108112601), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1378417368), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1130363778), "ae1e9031-28f4-47aa-90c9-3124c26019f1" }, { new PrefabGUID(-1599671939), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-328302080), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1041059859), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(558343424), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(78384915), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(1898980277), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(604121141), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(-646168524), "0b169ff9-c4cc-4a38-9ba6-545394e8c4d2" }, { new PrefabGUID(1293091219), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(97206555), "45c214be-2829-44a2-a2d3-5fc4f79c2cc3" }, { new PrefabGUID(1166337981), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2013132333), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(65616384), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-310753479), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-500071289), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-193432841), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(369886705), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1745337333), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-195118922), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-413591328), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-14207169), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1708209167), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1854645901), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1789897775), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(110097606), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(1520734123), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1232816408), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1989618782), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1217615468), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(401668748), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1365358996), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(91941562), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1897317770), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1212343160), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1926314891), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(413176017), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-448018551), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-626021308), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1420346034), "8c7e94d0-9755-455e-af99-17fd2cd41acf" }, { new PrefabGUID(2067760264), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(-265839081), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-578672354), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-738502538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1599972576), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1340319300), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-433204738), "9c71681e-3ada-4df1-be04-36961596588a" }, { new PrefabGUID(-2107123661), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1887600892), "b54c0570-7d4d-4971-b936-b9c596dce19b" }, { new PrefabGUID(607644390), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1725804558), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(-1581417695), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(397860291), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1090673078), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(986693563), "15be7b2d-5f6b-4ce1-b98a-75a2c8977026" }, { new PrefabGUID(501615608), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1969189808), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1903010945), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1601666166), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(936609695), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(444781406), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(896963123), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1461754263), "080b91b9-e96e-4754-944a-ffc46f84b2bb" }, { new PrefabGUID(-1743551272), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(526997488), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(318813926), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-1136860480), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-690426342), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(765386506), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(-523365900), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-1698500590), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1155840114), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1767074088), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(452849117), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-79785701), "1f4f4d50-ebb2-440d-841e-b6ab67edd083" }, { new PrefabGUID(-1278121774), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(2110406288), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1327173823), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-430375110), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1816495876), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(1952703098), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(-413053555), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1364891068), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1000260252), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(-1847055470), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1884419467), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1001804923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1333250097), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1589627808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(61265236), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1095356108), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-195896692), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(304685414), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-341552237), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(646443134), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1450987113), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(870237772), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1149489416), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1715136284), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1041665194), "1f2a802f-1769-47ea-80b0-b920552ccde9" }, { new PrefabGUID(-56422536), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-926110853), "25936bf3-159e-4587-bda5-b99091062fd2" }, { new PrefabGUID(1089139335), "2255535d-d296-447e-a2f8-ba5ef5c960b7" }, { new PrefabGUID(-633982282), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(257841890), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(345138892), "61f1e9f3-2869-4b00-9c52-82df5f062b49" }, { new PrefabGUID(-1330909978), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1462154593), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1795148379), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(583436571), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(906463896), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-328617085), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(766284586), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-13231823), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-2064810948), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(1856432305), "7b93fc76-2700-4e61-a6be-22862113de5e" }, { new PrefabGUID(54541608), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-736079997), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1459248190), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1766338327), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-79098693), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1485105952), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1195333673), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1007898441), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(54266570), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1473399128), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(-1063090297), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1272535312), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1736553762), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1473393531), "bea721d7-5a66-40e6-b846-17e11357ed7e" }, { new PrefabGUID(-1689067072), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2063732211), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-1784566500), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(304835919), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1375787055), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1760359784), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(1489736348), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1601771862), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1450204157), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-459395643), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-986547656), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(845410366), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(461701172), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1157907958), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-265915268), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1274762079), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1733128159), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2130811227), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1586810476), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1078822594), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1573712465), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2109003637), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-460221305), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1499629710), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(193592408), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1779071085), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(270247647), "aa99afe4-9d18-4963-abb5-6beca344c70a" }, { new PrefabGUID(1132262199), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1075000607), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(725170243), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-420953378), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1425167877), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-768614933), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-190598145), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(341866865), "2c06db1e-517c-4dcd-adf4-d8246cf532e3" }, { new PrefabGUID(-631049507), "be17695d-2d02-49d5-9123-ad94f150074c" }, { new PrefabGUID(27585400), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1883675026), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(437523703), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1850037222), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1969627539), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1423169435), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-725150213), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(401195214), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1259884575), "b9947a45-05d5-401b-a8fd-a241cb9be2a1" }, { new PrefabGUID(-2138455533), "94450904-51e0-401b-8bd6-707dc18e2a37" }, { new PrefabGUID(-840954076), "7525ec83-7082-4c43-8678-3aaadf50face" }, { new PrefabGUID(-26826346), "5a2ea9b5-ccaf-4fae-a084-b59c7f2065de" }, { new PrefabGUID(-1655641312), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1685517289), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(1180130515), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1077139800), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2025881745), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(983916408), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1873182450), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1239155316), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-926355648), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(1870875931), "a222648a-6711-470b-b802-d940dc2baceb" }, { new PrefabGUID(-700139030), "db326145-ce7f-44fb-96c6-3c06ffce2d2d" }, { new PrefabGUID(-1565434117), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-1347356700), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-880131926), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(-885902431), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1967657578), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-680710725), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1630648333), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-660542965), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1435233272), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1439531953), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(391943159), "d4bfaba6-9878-437a-868a-a30013c85d28" }, { new PrefabGUID(203761859), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-521003587), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-925169006), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(-618850823), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1843850355), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(262116525), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1238817965), "e1ec25f4-0f9d-48e2-8501-71ca354019c5" }, { new PrefabGUID(680554094), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-891864538), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1957509060), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1079667900), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(14271023), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1110054537), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-927251534), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1487412876), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1045581646), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(418002062), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-401259144), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(194868388), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-89125940), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-725828654), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(341647784), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1284243288), "9ab105e7-9c7c-47a3-8006-f0fc2f3fa5a7" }, { new PrefabGUID(-1810214745), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1781725233), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1492032516), "19f416d2-e02e-4260-9bbd-8e4cb6486a29" }, { new PrefabGUID(-2023636973), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-547251580), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1253650402), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-887581044), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1175912131), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1756717462), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1357375516), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-893194478), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1587195740), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(409165231), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1583944483), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(1105185654), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(980772169), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1938535864), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-358319417), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(-1385141321), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2034689434), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1176933244), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(250913160), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-764767694), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1883230955), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1711588061), "b700c835-a867-4260-ad2a-88561017f69f" }, { new PrefabGUID(-1111373807), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(1364843731), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(1221980502), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1861621769), "a29045ba-e8f5-4699-abb4-f090c067cc6d" }, { new PrefabGUID(784029872), "4816fff6-dcc1-4026-a580-d92fed01c97a" }, { new PrefabGUID(-1754787506), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-163679409), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1190925292), "0b169ff9-c4cc-4a38-9ba6-545394e8c4d2" }, { new PrefabGUID(105274396), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1309712000), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1104043123), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(937561987), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-386396572), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1637210619), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1900214847), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1365760673), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(377144854), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-66831677), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(532210332), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(364141768), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(-2103202975), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(-1287837541), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1128466169), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-7407393), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2005193286), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1915068828), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-618038480), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1940289109), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-703291679), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-91023537), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(-1951127647), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(138513891), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-603849198), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1388701732), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(561623729), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1372353064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1294182358), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-650079140), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2092012453), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(80712753), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1559349374), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1814567660), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-217583794), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(483769006), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(684476797), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(207057426), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1915605718), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1491658671), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(429807295), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(362512593), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(2107853915), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(593979922), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1688748795), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1267543813), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-47403235), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-96620724), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2078583785), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1684865572), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2121218473), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-645101263), "40d14ea5-e460-4503-ba32-1c4aa689b360" }, { new PrefabGUID(-1553594984), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1484354243), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1219885177), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-367310449), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(479773974), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-91811178), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-895081056), "5f1866da-9932-417d-87a7-1c9da86d67ff" }, { new PrefabGUID(-1865487078), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(226929260), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(466462408), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(808904257), "ad53decc-e81a-4d75-abcc-fc0ca1dd2e1d" }, { new PrefabGUID(589136658), "f412686d-d091-440b-b2da-296f077782a3" }, { new PrefabGUID(367876187), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(875909348), "95b27b9f-38a6-47e6-965a-0d5a69cd8a95" }, { new PrefabGUID(1639668286), "19f416d2-e02e-4260-9bbd-8e4cb6486a29" }, { new PrefabGUID(-1181502209), "ab300887-4022-4648-8cc9-96c5bccd6d15" }, { new PrefabGUID(-591813536), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-296227812), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(189403977), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-127603789), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1512616160), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-589722860), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1137336047), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-158502505), "deaa875a-0e2a-42f3-bd29-1d0733ddfe6b" }, { new PrefabGUID(1779758273), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(101220113), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(286182923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(626219559), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-499397494), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1709055711), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1360812741), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1765846328), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1250098443), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1490887838), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1623874343), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1220318405), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1717533555), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(978386280), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(1920281924), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-117718548), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(338593632), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(544227616), "677d91fb-6188-4eed-b5ee-d933c9e1249b" }, { new PrefabGUID(-459642635), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1516349451), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(571532506), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(647582679), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2096565232), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-405467076), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(514628041), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1601441951), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1657698157), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-228936316), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-82547339), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1807544727), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(643209588), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-332244204), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1912093062), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2005435470), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2025233638), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1512916174), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1439273397), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(172828642), "f9a23880-fedc-4dae-9ba7-658a5a415b04" }, { new PrefabGUID(-1267641072), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-83187650), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1485838951), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(616732424), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-77977745), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-44955695), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1071205195), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(-1380116221), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(-933544131), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(128007572), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1858007153), "3e741135-6b29-40dd-9ff8-329d10cf9ec3" }, { new PrefabGUID(891644945), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-8655403), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-23281706), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-737556373), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(504586218), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1277638345), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1191439206), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(784360484), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1696612225), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1326540020), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2027014613), "354a8372-3c68-49ea-8673-76673c552ea9" }, { new PrefabGUID(1216522353), "84668d27-2f48-4f36-8e81-96802146266b" }, { new PrefabGUID(975866147), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1326377581), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1022555711), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1278045964), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-100357751), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2079740557), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1957691133), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1689119503), "d46072e0-8f18-4371-b50d-84fa33772718" }, { new PrefabGUID(874909393), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(605530795), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(88026855), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-469608333), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1145861576), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-376210658), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(317399990), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-29584300), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(994921501), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(34416775), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(592600719), "6b11e2ef-c7d7-4d9e-ab56-a29843279188" }, { new PrefabGUID(873699859), "eb5860f1-f2fa-460f-acd4-3c0cf2be2fc8" }, { new PrefabGUID(1239800293), "eb5860f1-f2fa-460f-acd4-3c0cf2be2fc8" }, { new PrefabGUID(1772194590), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1286987800), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-202704002), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(336380612), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1509483896), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-900859351), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2057340406), "2ddb02b8-b354-47c4-bcdb-afcbd557db56" }, { new PrefabGUID(-1796211602), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1798105602), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2102431676), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1147924409), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(684024768), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1705726981), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1808411682), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(761844990), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-808215778), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-968756307), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-722759857), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(486569900), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-627924949), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2134120100), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-298983941), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1290253258), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(475860611), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-418737686), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1501188283), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1686895005), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1744671763), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(995945059), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1301873763), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(45443379), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1852992863), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(1172834223), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1625958933), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-16930230), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1547108554), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(114484622), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1373056433), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2115527946), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1015165123), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1381729810), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1454652495), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1756745786), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1379598377), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-618550771), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(830495620), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1031367685), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1356470853), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(109607953), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-225237355), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1756529149), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1977998485), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1243386667), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1267698255), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1634335063), "143ccb6f-e4fd-4589-a567-028fc80a85bf" }, { new PrefabGUID(1805214524), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1651089042), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1113171592), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2030404176), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(149010586), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(257418700), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1121958763), "6a1ac649-16f2-426d-8686-3c7f594bcfcd" }, { new PrefabGUID(-1981491221), "a0729f30-13b7-4368-9d4d-61406a329297" }, { new PrefabGUID(1074626555), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1472848281), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1698228064), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(628133433), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1584749067), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1404029255), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(-1262842180), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1552626046), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1671419025), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2143553487), "4051ab6a-8484-4ae7-bd78-58fe42053197" }, { new PrefabGUID(-1457510412), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2026199659), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-1449494345), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1621601748), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1302295192), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1337706250), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-223453383), "597a42fb-ee97-4fc0-9c6d-7f441128e61c" }, { new PrefabGUID(1959283631), "5bee13d4-cfd1-458c-ab66-38799284fefc" }, { new PrefabGUID(-2136524530), "21458a9d-8bad-4280-96f7-af998b011625" }, { new PrefabGUID(979394873), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(162388614), "b8af0f11-11e4-4420-ab2a-b1b60371c741" }, { new PrefabGUID(66606146), "515d6ec4-5c3b-4baa-b075-3b9e664ee00b" }, { new PrefabGUID(1913579080), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1069881409), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1145923288), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1142698587), "0b8738c2-edc6-4ed3-a7fa-f94ff1635762" }, { new PrefabGUID(-440165167), "53a76370-2e14-4514-965e-a84acd3a6da4" }, { new PrefabGUID(833416928), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(575048784), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-719487446), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(57588514), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1365714615), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1791635791), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-923762386), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(236831977), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1706926836), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1068854418), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1853611622), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(764489448), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2054557525), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(164595507), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1693720077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1659620404), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(723715376), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2066895745), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1065629794), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(124368471), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1795073911), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1492585365), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1869894099), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2127334043), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-741006712), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-820078889), "a222648a-6711-470b-b802-d940dc2baceb" }, { new PrefabGUID(927872126), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(14728131), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1808542763), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1125894381), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(-570933441), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1988754598), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1503327574), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1484650418), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-2034290170), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1280314509), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1414167161), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(540661576), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(2052063970), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1338374909), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-466422619), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1619461812), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1971068020), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1837385563), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-827928543), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-801968342), "abebddf0-4149-4d24-97a4-ddc12fa6c989" }, { new PrefabGUID(352570759), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-655343218), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-304507736), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-325952371), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(102790706), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-557111974), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1771330790), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1406000418), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-988264305), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-566065717), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1445822330), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-192549213), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-174926399), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1293762372), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-241312231), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(893332545), "5f685b39-3c81-4070-a860-65baa65ce919" }, { new PrefabGUID(2142000031), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1696712851), "5f685b39-3c81-4070-a860-65baa65ce919" }, { new PrefabGUID(-930424159), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-213757827), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1252510507), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(1870073064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1802655130), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2015856259), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(976341724), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1228302737), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-983491078), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-746972983), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-735966107), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2003945269), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1946568656), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1843696472), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(341041700), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-12917778), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1137335620), "8166c89b-694b-477a-8ec3-4acf4e30a3de" }, { new PrefabGUID(494176178), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-514516956), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-424388071), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1212947823), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1088363798), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(889811193), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(1721154667), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2064327511), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1576686583), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(1112116762), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(-1863241708), "4a04fa43-83b5-4289-bb33-6920be04c477" }, { new PrefabGUID(1294567037), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1835500377), "14761769-49e8-4028-94b3-b9a4e3eaebc8" }, { new PrefabGUID(-1528770669), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(951831242), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(191219781), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(892342913), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1524767753), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(705089395), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1660492999), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1718898538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-514415940), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(546136204), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(1790744720), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1808492070), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1864096491), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1292896032), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(298784800), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1238687119), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1421967280), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1704026958), "7b634581-41ca-4e2f-9079-f0a953506374" }, { new PrefabGUID(1232856473), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1509344340), "1b1f1628-63ad-41ed-8830-2aeac54b50ba" }, { new PrefabGUID(-449872140), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(109530037), "f7d8ffe0-c4a8-4622-a303-0bcd7d54f97c" }, { new PrefabGUID(-1732463804), "e842c9a8-50c5-46f0-8826-2f4cfb87242e" }, { new PrefabGUID(1898092173), "4a8f9a35-a7b7-4cb8-b469-82455a00ef15" }, { new PrefabGUID(-984481115), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(73467714), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-370061286), "a3d1e21c-dec8-4e4f-9680-16f42c9fe3e1" }, { new PrefabGUID(-1770586075), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(445289088), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(516384057), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1573201851), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1641231517), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2073002423), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-130931989), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(736733073), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2015521421), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1684997624), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(750606882), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-818533945), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1639330095), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1736482208), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1973550282), "2d586558-df6c-41af-98e7-19c14e0d8138" }, { new PrefabGUID(-1355723507), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1891756809), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-281576382), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-2018732849), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-751119210), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1451199905), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1979483677), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2138402840), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(-2067963108), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-123334608), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1138991224), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(481790231), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(560207432), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(170206690), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-637041016), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-838311342), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1372642162), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-385314771), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-315621824), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1318543111), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(987540308), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1518495336), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-140727030), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(168833229), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1174831223), "3f5a242d-bb52-4bf6-80f9-a14ad2e81afa" }, { new PrefabGUID(-1187406748), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1752758196), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1802963726), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-891106318), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-67893977), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1790377808), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1801222341), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1033948100), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(165220777), "e842c9a8-50c5-46f0-8826-2f4cfb87242e" }, { new PrefabGUID(613355091), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-985136954), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(1792964134), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(493409764), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1823825002), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1541929232), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(49364370), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(375131842), "ad2d256e-6291-44de-bc3e-e2bb8f43fd54" }, { new PrefabGUID(1734337277), "04784c13-9dbd-49eb-9efa-452d1d533c5d" }, { new PrefabGUID(1245308829), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(471046053), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-116877786), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-587604072), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1142491430), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-819795639), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-923957888), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-559662270), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(1817985064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-727882902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1957366402), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-841469184), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1820645555), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1379672205), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-915534386), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(98352404), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-506564570), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1693120911), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1904011556), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(830123499), "c87e47d7-d43f-4e8f-a0fc-bbd6b616ae6b" }, { new PrefabGUID(-2097618568), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1109386231), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(922412053), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2102890955), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-1589312992), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-342380924), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-20922272), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(340686786), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2092537748), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1059734295), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-845442935), "2d586558-df6c-41af-98e7-19c14e0d8138" }, { new PrefabGUID(955484879), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-912372242), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(1306041529), "c48c0c3c-b69d-4c41-8dd3-7a2d5e177eb9" }, { new PrefabGUID(436038744), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(1244670975), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1214299173), "576c577e-468c-4945-bd33-830600225111" }, { new PrefabGUID(234226418), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(948587795), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-351745987), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1797118698), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1102042167), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1916767891), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1298764600), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1694480301), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(464665677), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2095151729), "5ca3073d-9a8a-4c78-b907-b9a6a7901ad4" }, { new PrefabGUID(1500843923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1691491221), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1108274345), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-104327922), "9340e8a8-a29a-461f-ab37-bc7e7017af1e" }, { new PrefabGUID(931534835), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-668603830), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(139802405), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2136656017), "ff1282a4-35c3-4934-ae50-a322f2dd3635" }, { new PrefabGUID(-1193077056), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1754021382), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-607666302), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1653116246), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-349738324), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-822790233), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-650383304), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-412600077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(411852610), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(716346677), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1416508240), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-597709516), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1146467217), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-331113507), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1418783710), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1148606177), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1436929556), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1603735911), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1081890077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-730217983), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-499389517), "f257551a-7c73-4024-9481-da1079023e2d" }, { new PrefabGUID(-1126624947), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-34533844), "e66c4f59-86c3-406b-ab72-fb355ee2a79d" }, { new PrefabGUID(1199769322), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1019568127), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(368122726), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-88118341), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(296313928), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-545560531), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1611191665), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1957047297), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1049539886), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1674395967), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-948311829), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(-321651703), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-609538743), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-2121210997), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-2054010438), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(-325335847), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1060298293), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1024156492), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(342417296), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-259433272), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-544864084), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1700777111), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-80003337), "cc6ff9af-b728-4fd3-90d7-bb84670d9433" }, { new PrefabGUID(477749225), "970f8952-81fe-4e2c-a116-162e83801cc2" }, { new PrefabGUID(1238529741), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(780372716), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-359326766), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-905574209), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1568811754), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1387986806), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1839296163), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-544868559), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1910986910), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1205896854), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1253708985), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-1321161639), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(430166804), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(2067796423), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1571128781), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-252663641), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(320434570), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(691162066), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1126887871), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-1560986745), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(851287157), "c4c842ce-acbd-4972-b6b9-97eb676d6aee" }, { new PrefabGUID(-2126197617), "ab300887-4022-4648-8cc9-96c5bccd6d15" }, { new PrefabGUID(1074442576), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(938684260), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1139777657), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(-1024883556), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-604910466), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(416744805), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(174655882), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(403340165), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-188185340), "64a91856-97e8-498e-9820-3b9064889d19" }, { new PrefabGUID(-1230681995), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1717210880), "f79d6776-0809-4fff-89eb-ba45fd1a8c5a" }, { new PrefabGUID(-836774616), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1996370390), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(642767950), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1181691042), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1432758970), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(-292254536), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-127510613), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2008977590), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1254118139), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(180580857), "e781881a-c775-49ff-bce8-2c45036ab213" }, { new PrefabGUID(302896371), "c48c0c3c-b69d-4c41-8dd3-7a2d5e177eb9" }, { new PrefabGUID(89236731), "26c2e0da-c6de-4f99-9fb0-33e4e9abecfa" }, { new PrefabGUID(-1199987827), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(919394375), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(22263894), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1606718216), "cb970ccd-ffee-4e86-83af-f4d8851ae3a9" }, { new PrefabGUID(-1574580061), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1651864139), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(699013677), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(920868547), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(834886466), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-658066984), "c6e0052e-db35-4476-b2c1-21aa46670fad" }, { new PrefabGUID(-577179884), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1115425417), "8abf33e8-3236-4f57-931b-bf149307a8c4" }, { new PrefabGUID(641943079), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1712538598), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(-588647240), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1506479890), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2034438314), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1204182143), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-659513479), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(474075607), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(828954334), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-281508142), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(-186690512), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2019689688), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-592301846), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1922948406), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1008562275), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-198012170), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1104025162), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1332977411), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(633696135), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1398375841), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1160883278), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(815729526), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-8479990), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-1099406988), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1250624804), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(455219779), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1997657671), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-453755281), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2003603501), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(840159262), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(69086718), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(82350674), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1452056926), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(358187796), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-3835897), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2000340068), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2021815703), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1687310776), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1800699406), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1287271443), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1064533554), "0fddee0d-a919-4093-9b72-764456788114" }, { new PrefabGUID(-2010697707), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1272395899), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-980532804), "1e149447-4b7f-4b0c-ad59-978c134951ed" }, { new PrefabGUID(396802528), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1908054166), "08102e93-6821-46dc-ae54-f87089668960" }, { new PrefabGUID(1167119356), "8da794ae-53c8-4700-83ad-854c5bfd27c3" }, { new PrefabGUID(1234809194), "dd40ce37-4ca6-4a92-8f64-e2c1074c0a52" }, { new PrefabGUID(761268127), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(817680188), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(-781549505), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(245173408), "2d586558-df6c-41af-98e7-19c14e0d8138" }, { new PrefabGUID(-621324159), "1bf471bb-bfe6-4e6d-b63a-07bc79583bb2" }, { new PrefabGUID(346834991), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(253163764), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-1845982676), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(1673956324), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1428882023), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-999342671), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2012523607), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(1524772628), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-409778117), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1631838527), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1790847128), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(-292542362), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1430256354), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1282606238), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(943885425), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(910704281), "780bc5b7-2adf-4aa0-8001-c8c6cabd755a" }, { new PrefabGUID(2130985273), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-133703992), "5a7aa0d5-cbe1-46bd-85b8-f25edc435898" }, { new PrefabGUID(92820140), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1773431654), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-578764388), "4f6e1284-6218-44d5-b785-1cb334cc7c5c" }, { new PrefabGUID(1552780633), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1914101495), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-892431821), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(-1417141477), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-343320686), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1100933071), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(224496996), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1187864883), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(-175257190), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(985201241), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-871701576), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-1503146131), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1568783706), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-1330984343), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(46962343), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1432555386), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(419215380), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-313732628), "73e462c6-2956-478c-9645-b9da907014ea" }, { new PrefabGUID(2013545793), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1550864188), "d17154d9-a557-424b-ab0c-9ddc9fd7f655" }, { new PrefabGUID(1207495983), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1586616867), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(446999227), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1187623532), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2107551739), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1600917906), "53a83a2e-af28-45bc-9e49-77b47e3e66ac" }, { new PrefabGUID(-1745021468), "9174693a-090f-4e21-b360-c8f801a43e26" }, { new PrefabGUID(-2120286823), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-321918794), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1122774146), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1119012588), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(268059675), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(-1635892700), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1925592126), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-221719333), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2106422510), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1079488801), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1160664147), "278493bd-4521-4049-abbe-968473adbdaa" }, { new PrefabGUID(-1204505053), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-716557249), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-598112885), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2084016434), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-576906626), "f626c598-da9d-449d-8a40-a341bd702875" }, { new PrefabGUID(2038916168), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-242769430), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(2103931135), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1875280201), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-354379679), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(151283351), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1454951943), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(953519927), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(1431473799), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1766924388), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2057952818), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-808864212), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1710744334), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1064969109), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2033547790), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1795809188), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1946293901), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(381103028), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1295370119), "2c56b280-6458-418f-909f-a9ee98ed2393" }, { new PrefabGUID(-964075599), "717f4668-4810-490f-90eb-ebc9bf34560d" }, { new PrefabGUID(-2147238865), "27bfae92-0028-4f8f-a190-e72765a404e8" }, { new PrefabGUID(-1154891994), "64a91856-97e8-498e-9820-3b9064889d19" }, { new PrefabGUID(1524554505), "27bfae92-0028-4f8f-a190-e72765a404e8" }, { new PrefabGUID(-366103191), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-53273186), "02997d12-30d2-4e3b-af6a-15bf57814f9f" }, { new PrefabGUID(900707394), "bb43bd39-b8b2-4be8-864e-9d42d538373d" }, { new PrefabGUID(-1563062700), "942617a0-9d9f-4e06-88de-7feb124c6876" }, { new PrefabGUID(-1739260908), "814356f3-35d5-48a1-964c-3287c0c74833" }, { new PrefabGUID(430979240), "6d32f428-12f8-4120-bbca-3b720c52760a" }, { new PrefabGUID(-739563600), "6b11e2ef-c7d7-4d9e-ab56-a29843279188" }, { new PrefabGUID(-941466362), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-286223348), "3cab0a1c-1645-4856-8e5d-a43bafb3c53b" }, { new PrefabGUID(-1199198217), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1679087496), "e8b77439-2f72-4951-bcb4-55f5bdee5474" }, { new PrefabGUID(-1308520526), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1174644772), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(800186323), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1281316565), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2034763818), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1825130923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(922419960), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1673497547), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1852467646), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(998464144), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-422683973), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(51772774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-552723816), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1720407974), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1172099204), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-297165667), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1954926268), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1462866563), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1398187000), "e83a4d55-95f6-4fcf-8694-f4033dc2195a" }, { new PrefabGUID(1336193986), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1339620791), "39b357a4-1184-4765-971b-c230d8413bd1" }, { new PrefabGUID(1850515789), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1970983747), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-326374250), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(-1880729304), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(711231628), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-976938930), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(1711943933), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-937443015), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(1067834426), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(1738354598), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(-1428039996), "2567cac8-742a-42ef-8d7c-4eccc337edc3" }, { new PrefabGUID(-1504629350), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-2095410919), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1734839687), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1956103113), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-691814641), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2106739571), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2097352908), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(576026408), "9340e8a8-a29a-461f-ab37-bc7e7017af1e" }, { new PrefabGUID(138056981), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-1385465144), "dd40ce37-4ca6-4a92-8f64-e2c1074c0a52" }, { new PrefabGUID(-1401133170), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(-105601189), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(124285667), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(31826871), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-498302954), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(1927100043), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(985669672), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(305230608), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(2096535189), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1015932492), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(330164959), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(306615743), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1485893437), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-39311902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(377778793), "2c56b280-6458-418f-909f-a9ee98ed2393" }, { new PrefabGUID(564244811), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(2111431121), "ad54783a-3d42-4b07-b2ce-f8384ec1338d" }, { new PrefabGUID(-1432604486), "8abf33e8-3236-4f57-931b-bf149307a8c4" }, { new PrefabGUID(-786900742), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-348862907), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1743540461), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1250277114), "9b419d27-95f4-4d68-8934-2732d39a7271" }, { new PrefabGUID(1771061239), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1628136011), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1271143604), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(793860757), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-955554663), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2117925151), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1400073690), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-309308308), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1173842428), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-918633640), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1684080967), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-195933675), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1298478938), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(-63677606), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1185642044), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-668068170), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2099754785), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1990869093), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(846291757), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1241930020), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1980019894), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-135866689), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-616120746), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1298623256), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1326530647), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(898624706), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1242557903), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-95450612), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(325438116), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1372470796), "1e024a2f-d4eb-44d2-8181-70ba38aa4e56" }, { new PrefabGUID(-1681336728), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(734658196), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(345561766), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1104157543), "eb4a31d2-efae-45c4-9310-5402388d8a82" }, { new PrefabGUID(-1245963301), "61588315-1cbc-43a7-9584-bfa65245fb14" }, { new PrefabGUID(-1654954396), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1558429115), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(920051497), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(280173050), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(379001645), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(1397338806), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1161539168), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(688350142), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2145136774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1072457678), "3a933056-c2c4-4596-958e-5bdeb171711d" }, { new PrefabGUID(-526118698), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-821573025), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1996241419), "ce20631a-0fae-473a-a503-348f91c75284" }, { new PrefabGUID(76767983), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(247740796), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-453760177), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2013216961), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1825390216), "b8af0f11-11e4-4420-ab2a-b1b60371c741" }, { new PrefabGUID(2039677643), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1270706044), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(1070827786), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-1854347593), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-452406649), "23fefb60-4e3b-4eee-b735-47fd052d1340" }, { new PrefabGUID(-1038102898), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1303418171), "40d14ea5-e460-4503-ba32-1c4aa689b360" }, { new PrefabGUID(-932485064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(160063059), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1972594588), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(992487676), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-723874886), "f8636567-f406-42e8-bdbe-4a1a950593e6" }, { new PrefabGUID(-1389186216), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-317399619), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1181965808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(140047325), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1841930998), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-290102537), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1713280509), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-345652149), "4fdf13aa-1869-4f81-b98a-a111aef3e4b8" }, { new PrefabGUID(2072201164), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-749335766), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1085783726), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-453331838), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-212014657), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1238091894), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1328627408), "972c2a22-8e4a-4bc9-a18d-aacd9b935a2c" }, { new PrefabGUID(644410055), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(974235336), "faf99a30-bc16-47ba-aae1-8a0e5db8ae17" }, { new PrefabGUID(-1362190512), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(210529811), "26c2e0da-c6de-4f99-9fb0-33e4e9abecfa" }, { new PrefabGUID(-1768784526), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-996493500), "8f4443ad-a8d7-4e03-8bdb-bd41404c2c66" }, { new PrefabGUID(-1329891521), "576c577e-468c-4945-bd33-830600225111" }, { new PrefabGUID(1450902136), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(859877682), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1734264526), "68d09f34-9bab-4319-86c2-1a6dca1bb926" }, { new PrefabGUID(1754040702), "677d91fb-6188-4eed-b5ee-d933c9e1249b" }, { new PrefabGUID(1470213751), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1623080868), "9b796d9c-3cf3-4e5b-9009-4635da6da444" }, { new PrefabGUID(1937597415), "67fb9c25-7ec9-4915-8502-3aac2512f615" }, { new PrefabGUID(935984304), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(-1365570044), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-2068632541), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(2080406227), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1638937811), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-503137581), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-947518364), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1730693034), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1920828971), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-107743040), "749a9d1a-7274-41c6-8296-cd838ef55386" }, { new PrefabGUID(506072916), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1022054621), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-653938456), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(472850370), "fc6913e7-2cf6-4c39-aed0-a43103c448a3" }, { new PrefabGUID(-1360906203), "f01433c3-a12c-45fc-aeaf-a15598c58188" }, { new PrefabGUID(-880319836), "ecd2b1db-e1d3-4d17-8049-194dab91acb9" }, { new PrefabGUID(993583640), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(1335008684), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(574933909), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(826190081), "1d70a029-199f-4cc8-b93b-12509d6f7b3f" }, { new PrefabGUID(249896389), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1844993528), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(922686381), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(787005490), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(604882732), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2141326610), "a1d7ac88-a52b-456a-aec4-1e7b8b3c31f0" }, { new PrefabGUID(1680946425), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1729075022), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(32629003), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1860769470), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(-1772111618), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-57462538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1574404388), "0b8738c2-edc6-4ed3-a7fa-f94ff1635762" }, { new PrefabGUID(22199616), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(-616794756), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(651613264), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(1129782597), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(-938355432), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1470096516), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(163224625), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1636251764), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1221546136), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(566224334), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1685753538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1759227484), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1826128809), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(664138263), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1575781217), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(177071276), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(1550497814), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1364381862), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1612184116), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-425763347), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-1184139778), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(1511001063), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1660777757), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-650664522), "4e8f9389-78ca-47ab-8926-c8ed64c91db3" }, { new PrefabGUID(1834131915), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(992015964), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1871956083), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2134585360), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1859321594), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(690549364), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(438919203), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2140645618), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(62301155), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(29969582), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2053450457), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(-1337273957), "97db39a8-aa0b-4197-aa82-f0a047809d05" }, { new PrefabGUID(-1193297071), "49eecac8-e9d0-4878-8b5a-dd03fb3f0145" }, { new PrefabGUID(1311267272), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1574537639), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(578807372), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(764619540), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2037106453), "b6db4147-5703-4ba0-8190-d35dc76080b0" }, { new PrefabGUID(-2024596663), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1255881274), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-1462274656), "ce2bf030-de34-4602-9e81-985a8c6f9875" } }; public static IReadOnlyDictionary LocalizedNameKeys => _localizedNameKeys; } internal class Secrets { [JsonPropertyName("NEW_SHARED_KEY")] public string NewSharedKey { get; set; } } internal static class SecretManager { private static Secrets _secrets; static SecretManager() { LoadSecrets(); } private static void LoadSecrets() { string text = "Bloodcraft.Resources.secrets.json"; using Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(text) ?? throw new InvalidOperationException("Resource '" + text + "' not found in assembly."); using StreamReader streamReader = new StreamReader(stream); _secrets = JsonSerializer.Deserialize(streamReader.ReadToEnd()) ?? throw new InvalidOperationException("Failed to deserialize secrets.json."); } public static string GetNewSharedKey() { return _secrets.NewSharedKey; } } internal static class SequenceGUIDs { public static readonly SequenceGUID SEQ_TileModelBuilding = new SequenceGUID(1867308716); public static readonly SequenceGUID SEQ_Shared_Object_Hit = new SequenceGUID(-476819435); public static readonly SequenceGUID SEQ_Shared_Object_Hit_1 = new SequenceGUID(-173616274); public static readonly SequenceGUID SEQ_Shared_Object_Destroy = new SequenceGUID(-906728229); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_1 = new SequenceGUID(1134820086); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_2 = new SequenceGUID(1208452855); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_3 = new SequenceGUID(2087753889); public static readonly SequenceGUID SEQ_Shared_Object_Hit_2 = new SequenceGUID(1067334680); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_4 = new SequenceGUID(737646924); public static readonly SequenceGUID SEQ_Shared_Area_Effect = new SequenceGUID(-784675115); public static readonly SequenceGUID SEQ_Shared_Area_Effect_1 = new SequenceGUID(711834089); public static readonly SequenceGUID SEQ_Shared_Area_Effect_2 = new SequenceGUID(-1933439944); public static readonly SequenceGUID SEQ_Shared_Area_Effect_3 = new SequenceGUID(-113015763); public static readonly SequenceGUID SEQ_Shared_Hit = new SequenceGUID(-625321541); public static readonly SequenceGUID SEQ_Shared_Hit_1 = new SequenceGUID(987133958); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_5 = new SequenceGUID(-1010558623); public static readonly SequenceGUID SEQ_Shared_Object_Hit_3 = new SequenceGUID(108378271); public static readonly SequenceGUID SEQ_Shared_Object_Hit_4 = new SequenceGUID(649476641); public static readonly SequenceGUID SEQ_Shared_Object_Hit_5 = new SequenceGUID(35046171); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_6 = new SequenceGUID(1012634802); public static readonly SequenceGUID SEQ_Shared_Object_Hit_6 = new SequenceGUID(-1786099551); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_7 = new SequenceGUID(1164785039); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_8 = new SequenceGUID(1899073681); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_9 = new SequenceGUID(-1996769774); public static readonly SequenceGUID SEQ_Shared_Object_Hit_7 = new SequenceGUID(738867871); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_10 = new SequenceGUID(-1660209513); public static readonly SequenceGUID SEQ_Shared_Object_Hit_8 = new SequenceGUID(-481357078); public static readonly SequenceGUID SEQ_Shared_Object_Hit_9 = new SequenceGUID(299851378); public static readonly SequenceGUID SEQ_Shared_Trigger = new SequenceGUID(-1568860731); public static readonly SequenceGUID SEQ_Shared_Object_Hit_10 = new SequenceGUID(-796556867); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_11 = new SequenceGUID(1606864688); public static readonly SequenceGUID SEQ_Shared_Object_Hit_11 = new SequenceGUID(-343646288); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_12 = new SequenceGUID(-841058906); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_13 = new SequenceGUID(1744164739); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_14 = new SequenceGUID(-703141659); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_15 = new SequenceGUID(479365023); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_16 = new SequenceGUID(-2128062048); public static readonly SequenceGUID SEQ_Shared_Object_Hit_12 = new SequenceGUID(-1775168574); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_17 = new SequenceGUID(-1909063810); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_18 = new SequenceGUID(-763041692); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_19 = new SequenceGUID(-1952727325); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_20 = new SequenceGUID(-538420704); public static readonly SequenceGUID SEQ_Shared_Object_Hit_13 = new SequenceGUID(1165517658); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_21 = new SequenceGUID(-1620347931); public static readonly SequenceGUID SEQ_Shared_Object_Hit_14 = new SequenceGUID(-326294110); public static readonly SequenceGUID SEQ_Shared_Object_Hit_15 = new SequenceGUID(499572357); public static readonly SequenceGUID SEQ_Shared_Object_Hit_16 = new SequenceGUID(-417139359); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_22 = new SequenceGUID(-1184145071); public static readonly SequenceGUID SEQ_Shared_Object_Hit_17 = new SequenceGUID(1243253640); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_23 = new SequenceGUID(686589079); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_24 = new SequenceGUID(996583184); public static readonly SequenceGUID SEQ_Shared_Object_Hit_18 = new SequenceGUID(-1732504493); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_25 = new SequenceGUID(-2076369223); public static readonly SequenceGUID SEQ_Shared_Object_Hit_19 = new SequenceGUID(-977181350); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_26 = new SequenceGUID(-1811791126); public static readonly SequenceGUID SEQ_Shared_Object_Hit_20 = new SequenceGUID(-325034858); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_27 = new SequenceGUID(-1106898456); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_28 = new SequenceGUID(534328162); public static readonly SequenceGUID SEQ_Shared_Object_Hit_21 = new SequenceGUID(1388787919); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_29 = new SequenceGUID(455063242); public static readonly SequenceGUID SEQ_Shared_Object_Hit_22 = new SequenceGUID(1252085118); public static readonly SequenceGUID SEQ_Shared_Object_Hit_23 = new SequenceGUID(342582264); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_30 = new SequenceGUID(-1709892107); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_31 = new SequenceGUID(-1131452298); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_32 = new SequenceGUID(1608711682); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_33 = new SequenceGUID(1674905858); public static readonly SequenceGUID SEQ_Shared_Object_Hit_24 = new SequenceGUID(1610565522); public static readonly SequenceGUID SEQ_Shared_Object_Hit_25 = new SequenceGUID(1478778038); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_34 = new SequenceGUID(721410059); public static readonly SequenceGUID SEQ_Shared_Object_Hit_26 = new SequenceGUID(1347299120); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_35 = new SequenceGUID(1807088472); public static readonly SequenceGUID SEQ_Shared_Trigger_1 = new SequenceGUID(100906988); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_36 = new SequenceGUID(-459462335); public static readonly SequenceGUID SEQ_Shared_Object_Hit_27 = new SequenceGUID(607583666); public static readonly SequenceGUID SEQ_Shared_Area_Effect_4 = new SequenceGUID(310088948); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_37 = new SequenceGUID(-833792380); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_38 = new SequenceGUID(344207909); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_39 = new SequenceGUID(-269804732); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_40 = new SequenceGUID(702312035); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_41 = new SequenceGUID(-1428740498); public static readonly SequenceGUID SEQ_Shared_Object_Hit_28 = new SequenceGUID(-675602365); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_42 = new SequenceGUID(1141141276); public static readonly SequenceGUID SEQ_Shared_Object_Hit_29 = new SequenceGUID(2119474136); public static readonly SequenceGUID SEQ_Shared_Object_Hit_30 = new SequenceGUID(-1958767858); public static readonly SequenceGUID SEQ_Shared_Object_Hit_31 = new SequenceGUID(-1064531452); public static readonly SequenceGUID SEQ_Shared_Object_Hit_32 = new SequenceGUID(-1875324813); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_43 = new SequenceGUID(1620556630); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_44 = new SequenceGUID(-1271278139); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_45 = new SequenceGUID(-1441706673); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_46 = new SequenceGUID(720975566); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_47 = new SequenceGUID(1597383561); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_48 = new SequenceGUID(-224609497); public static readonly SequenceGUID SEQ_Shared_Object_Hit_33 = new SequenceGUID(223064336); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_49 = new SequenceGUID(1349015968); public static readonly SequenceGUID SEQ_Shared_Area_Impact = new SequenceGUID(1575931574); public static readonly SequenceGUID SEQ_Shared_Object_Hit_34 = new SequenceGUID(-871178035); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_50 = new SequenceGUID(-841606313); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_51 = new SequenceGUID(6217285); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_52 = new SequenceGUID(1057827716); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_53 = new SequenceGUID(-893563962); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_54 = new SequenceGUID(854614574); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_55 = new SequenceGUID(-589620499); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_56 = new SequenceGUID(-1161856908); public static readonly SequenceGUID SEQ_Shared_Object_Hit_35 = new SequenceGUID(-119208418); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_57 = new SequenceGUID(1029210994); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_58 = new SequenceGUID(1559192066); public static readonly SequenceGUID SEQ_Shared_Object_Hit_36 = new SequenceGUID(-1990913675); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_59 = new SequenceGUID(120478438); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_60 = new SequenceGUID(1507792043); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_61 = new SequenceGUID(-1695658056); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_62 = new SequenceGUID(-1343303786); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_63 = new SequenceGUID(-480029273); public static readonly SequenceGUID SEQ_Shared_Object_Hit_37 = new SequenceGUID(1372209928); public static readonly SequenceGUID SEQ_Shared_Object_Hit_38 = new SequenceGUID(1649319772); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_64 = new SequenceGUID(229172931); public static readonly SequenceGUID SEQ_Shared_Object_Hit_39 = new SequenceGUID(-887884437); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_65 = new SequenceGUID(1347635653); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_66 = new SequenceGUID(-1622616425); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_67 = new SequenceGUID(-862760723); public static readonly SequenceGUID SEQ_Shared_Object_Hit_40 = new SequenceGUID(-916499938); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_68 = new SequenceGUID(-2036275861); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_69 = new SequenceGUID(-1552750006); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_70 = new SequenceGUID(645053620); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_71 = new SequenceGUID(-605667944); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_72 = new SequenceGUID(1880973373); public static readonly SequenceGUID SEQ_Shared_Object_Hit_41 = new SequenceGUID(-2119934691); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_73 = new SequenceGUID(-935214337); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_74 = new SequenceGUID(795003641); public static readonly SequenceGUID SEQ_Shared_Object_Hit_42 = new SequenceGUID(116730434); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_75 = new SequenceGUID(-1692616236); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_76 = new SequenceGUID(-896325400); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_77 = new SequenceGUID(-1297729802); public static readonly SequenceGUID SEQ_Shared_Object_Hit_43 = new SequenceGUID(2041881951); public static readonly SequenceGUID SEQ_Shared_Object_Hit_44 = new SequenceGUID(311133432); public static readonly SequenceGUID SEQ_Shared_Object_Hit_45 = new SequenceGUID(-618156477); public static readonly SequenceGUID SEQ_Shared_Object_Hit_46 = new SequenceGUID(-1962433564); public static readonly SequenceGUID SEQ_Shared_Object_Hit_47 = new SequenceGUID(1211811629); public static readonly SequenceGUID SEQ_Shared_Trigger_2 = new SequenceGUID(-1559585392); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_78 = new SequenceGUID(1691723496); public static readonly SequenceGUID SEQ_Shared_Object_Hit_48 = new SequenceGUID(-1359566670); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_79 = new SequenceGUID(-197923873); public static readonly SequenceGUID SEQ_Shared_Object_Hit_49 = new SequenceGUID(38920159); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_80 = new SequenceGUID(835539127); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_81 = new SequenceGUID(575785430); public static readonly SequenceGUID SEQ_Shared_Object_Hit_50 = new SequenceGUID(492173495); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_82 = new SequenceGUID(1752501742); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_83 = new SequenceGUID(1766193927); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_84 = new SequenceGUID(850597194); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_85 = new SequenceGUID(-1418496036); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_86 = new SequenceGUID(884188811); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_87 = new SequenceGUID(-979650303); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_88 = new SequenceGUID(1845563960); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_89 = new SequenceGUID(1791868471); public static readonly SequenceGUID SEQ_Shared_Object_Hit_51 = new SequenceGUID(1161806062); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_90 = new SequenceGUID(-747290820); public static readonly SequenceGUID SEQ_Shared_Object_Hit_52 = new SequenceGUID(-1486956152); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_91 = new SequenceGUID(-941695419); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_92 = new SequenceGUID(65537272); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_93 = new SequenceGUID(982085171); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_94 = new SequenceGUID(355387184); public static readonly SequenceGUID SEQ_Shared_Object_Hit_53 = new SequenceGUID(1436258334); public static readonly SequenceGUID SEQ_Shared_Object_Hit_54 = new SequenceGUID(722251256); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_95 = new SequenceGUID(-1954074643); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_96 = new SequenceGUID(-192159505); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_97 = new SequenceGUID(1686054027); public static readonly SequenceGUID SEQ_Shared_Object_Hit_55 = new SequenceGUID(-867640083); public static readonly SequenceGUID SEQ_Shared_Object_Hit_56 = new SequenceGUID(-2039875480); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_98 = new SequenceGUID(941747642); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_99 = new SequenceGUID(-1358767474); public static readonly SequenceGUID SEQ_Shared_Object_Hit_57 = new SequenceGUID(1174457081); public static readonly SequenceGUID SEQ_Shared_Object_Hit_58 = new SequenceGUID(2052664925); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_100 = new SequenceGUID(1502600304); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_101 = new SequenceGUID(-1101302720); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_102 = new SequenceGUID(-1961336875); public static readonly SequenceGUID SEQ_Shared_Object_Hit_59 = new SequenceGUID(696524539); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_103 = new SequenceGUID(467145273); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_104 = new SequenceGUID(-1194894345); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_105 = new SequenceGUID(-1788081012); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_106 = new SequenceGUID(-1487881896); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_107 = new SequenceGUID(1520372719); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_108 = new SequenceGUID(764167851); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_109 = new SequenceGUID(1883111979); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_110 = new SequenceGUID(1831193100); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_111 = new SequenceGUID(-1024892379); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_112 = new SequenceGUID(-1328159); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_113 = new SequenceGUID(-314380286); public static readonly SequenceGUID SEQ_Shared_Object_Hit_60 = new SequenceGUID(2128523463); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_114 = new SequenceGUID(1033900343); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_115 = new SequenceGUID(563431669); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_116 = new SequenceGUID(-640640943); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_117 = new SequenceGUID(911101096); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_118 = new SequenceGUID(1779281585); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_119 = new SequenceGUID(1777007890); public static readonly SequenceGUID SEQ_Shared_Object_Hit_61 = new SequenceGUID(680671323); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_120 = new SequenceGUID(-89520624); public static readonly SequenceGUID SEQ_Shared_Object_Hit_62 = new SequenceGUID(-1313376140); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_121 = new SequenceGUID(-62454547); public static readonly SequenceGUID SEQ_Shared_Object_Hit_63 = new SequenceGUID(494787495); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_122 = new SequenceGUID(229481751); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_123 = new SequenceGUID(1533803658); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_124 = new SequenceGUID(-1419921813); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_125 = new SequenceGUID(2086365618); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_126 = new SequenceGUID(1578264015); public static readonly SequenceGUID SEQ_Shared_Object_Hit_64 = new SequenceGUID(-1452218507); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_127 = new SequenceGUID(878787778); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_128 = new SequenceGUID(-1390712398); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_129 = new SequenceGUID(-2040327245); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_130 = new SequenceGUID(115036222); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_131 = new SequenceGUID(1511344373); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_132 = new SequenceGUID(835765565); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_133 = new SequenceGUID(1503994490); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_134 = new SequenceGUID(1503798929); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_135 = new SequenceGUID(1186993376); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_136 = new SequenceGUID(39656866); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_137 = new SequenceGUID(-1211725320); public static readonly SequenceGUID SEQ_Shared_Trigger_3 = new SequenceGUID(1702847945); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_138 = new SequenceGUID(-916734916); public static readonly SequenceGUID SEQ_Shared_Object_Hit_65 = new SequenceGUID(435795208); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_139 = new SequenceGUID(-1859361440); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_140 = new SequenceGUID(144655436); public static readonly SequenceGUID SEQ_Shared_Object_Hit_66 = new SequenceGUID(-1142522520); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_141 = new SequenceGUID(1102885206); public static readonly SequenceGUID SEQ_Shared_Object_Hit_67 = new SequenceGUID(-1954818577); public static readonly SequenceGUID SEQ_Shared_Area_Effect_5 = new SequenceGUID(-155444067); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_142 = new SequenceGUID(-1401236623); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_143 = new SequenceGUID(1312967583); public static readonly SequenceGUID SEQ_Shared_Trigger_4 = new SequenceGUID(1552114727); public static readonly SequenceGUID SEQ_Shared_Area_Effect_6 = new SequenceGUID(1091633388); public static readonly SequenceGUID SEQ_Shared_Workstation_Active = new SequenceGUID(816637522); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_1 = new SequenceGUID(-1660087235); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_2 = new SequenceGUID(1790657879); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_144 = new SequenceGUID(-2010856491); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_145 = new SequenceGUID(-865797383); public static readonly SequenceGUID SEQ_WarEvent_UnitKilled_Projectile = new SequenceGUID(640825125); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_146 = new SequenceGUID(-1322283644); public static readonly SequenceGUID SEQ_Shared_Area_Effect_7 = new SequenceGUID(566791366); public static readonly SequenceGUID SEQ_Shared_Area_Effect_8 = new SequenceGUID(-1367193324); public static readonly SequenceGUID SEQ_Shared_Area_Effect_9 = new SequenceGUID(-1250671059); public static readonly SequenceGUID SEQ_Shared_Area_Impact_1 = new SequenceGUID(-705673221); public static readonly SequenceGUID SEQ_Shared_Trigger_5 = new SequenceGUID(1257972729); public static readonly SequenceGUID SEQ_Shared_Area_Effect_10 = new SequenceGUID(2091426859); public static readonly SequenceGUID SEQ_Shared_Area_Effect_11 = new SequenceGUID(-1012851035); public static readonly SequenceGUID SEQ_Shared_Area_Effect_12 = new SequenceGUID(-388829264); public static readonly SequenceGUID SEQ_Shared_Area_Impact_2 = new SequenceGUID(1902388328); public static readonly SequenceGUID SEQ_Shared_Trigger_6 = new SequenceGUID(-1183565755); public static readonly SequenceGUID SEQ_Dracula_WarpRift_Player_Beam = new SequenceGUID(-480823063); public static readonly SequenceGUID SEQ_Shared_Area_Effect_13 = new SequenceGUID(1899971415); public static readonly SequenceGUID SEQ_Dracula_WarpRift_Channeling = new SequenceGUID(1724164611); public static readonly SequenceGUID SEQ_Shared_Area_Effect_14 = new SequenceGUID(736119449); public static readonly SequenceGUID SEQ_Shared_Area_Impact_3 = new SequenceGUID(290384603); public static readonly SequenceGUID SEQ_Shared_Area_Effect_15 = new SequenceGUID(800487967); public static readonly SequenceGUID SEQ_Shared_Area_Effect_16 = new SequenceGUID(1818774975); public static readonly SequenceGUID SEQ_Shared_Area_Effect_17 = new SequenceGUID(-1561123389); public static readonly SequenceGUID SEQ_Shared_Area_Impact_4 = new SequenceGUID(-656747208); public static readonly SequenceGUID SEQ_WorldEvent_PortalToGate_Beam = new SequenceGUID(-288098879); public static readonly SequenceGUID SEQ_Shared_Area_Effect_18 = new SequenceGUID(1998071647); public static readonly SequenceGUID SEQ_Shared_Area_Effect_19 = new SequenceGUID(463375613); public static readonly SequenceGUID SEQ_Shared_Area_Effect_20 = new SequenceGUID(-1866366098); public static readonly SequenceGUID SEQ_Shared_Area_Impact_5 = new SequenceGUID(2141497520); public static readonly SequenceGUID SEQ_PickupItem_01 = new SequenceGUID(1234482648); public static readonly SequenceGUID SEQ_Interact_PickupItem_InventoryFull_01 = new SequenceGUID(-1589160006); public static readonly SequenceGUID SEQ_Interact_PickupItem_01 = new SequenceGUID(1698605864); public static readonly SequenceGUID SEQ_Shared_Trigger_7 = new SequenceGUID(620310501); public static readonly SequenceGUID SEQ_Vampire_Equipment_Repaired = new SequenceGUID(375059735); public static readonly SequenceGUID SEQ_PickupItem_01_1 = new SequenceGUID(181712344); public static readonly SequenceGUID SEQ_Interact_PickupItem_InventoryFull_01_1 = new SequenceGUID(-273585759); public static readonly SequenceGUID SEQ_Shared_Trigger_8 = new SequenceGUID(1480639034); public static readonly SequenceGUID SEQ_MagicSource_BloodKey_Active_Buff = new SequenceGUID(-1177173725); public static readonly SequenceGUID SEQ_PickupItem_01_2 = new SequenceGUID(-1685801512); public static readonly SequenceGUID SEQ_Shared_Projectile = new SequenceGUID(555772585); public static readonly SequenceGUID SEQ_PickupItem_01_3 = new SequenceGUID(1251259864); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_1 = new SequenceGUID(1177173417); public static readonly SequenceGUID SEQ_Shared_Trigger_9 = new SequenceGUID(-278676200); public static readonly SequenceGUID SEQ_Shared_Trigger_10 = new SequenceGUID(-1278035085); public static readonly SequenceGUID SEQ_SunDebuff_Active = new SequenceGUID(-1014494213); public static readonly SequenceGUID SEQ_PickupItem_01_4 = new SequenceGUID(1794422232); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_2 = new SequenceGUID(1646537895); public static readonly SequenceGUID SEQ_Shared_Trigger_11 = new SequenceGUID(-1425882425); public static readonly SequenceGUID SEQ_TileModelEditing = new SequenceGUID(514730326); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_147 = new SequenceGUID(1914312735); public static readonly SequenceGUID TestSequence_Flow = new SequenceGUID(-1549023180); public static readonly SequenceGUID SEQ_Shared_Projectile_1 = new SequenceGUID(-1243833342); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_3 = new SequenceGUID(-2122356536); public static readonly SequenceGUID SEQ_Shared_Trigger_12 = new SequenceGUID(-417384019); public static readonly SequenceGUID SEQ_PickupItem_01_5 = new SequenceGUID(-904612392); public static readonly SequenceGUID SEQ_Shared_Trigger_13 = new SequenceGUID(1990420176); public static readonly SequenceGUID TestSequence_Base = new SequenceGUID(-1098070103); public static readonly SequenceGUID SEQ_Interact_PickupItem_InventoryFull_01_2 = new SequenceGUID(-513010232); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_4 = new SequenceGUID(-219529815); public static readonly SequenceGUID SEQ_TileModelInvalidEditing = new SequenceGUID(-1704123076); public static readonly SequenceGUID SEQ_Shared_Area_Effect_21 = new SequenceGUID(-1840320907); public static readonly SequenceGUID SEQ_PickupItem_01_6 = new SequenceGUID(-1430997544); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_5 = new SequenceGUID(554061760); public static readonly SequenceGUID SEQ_Contest_TeamMember = new SequenceGUID(1639051638); public static readonly SequenceGUID SEQ_Contest_TeamMember_1 = new SequenceGUID(1459792882); public static readonly SequenceGUID SEQ_Contest_TeamMember_2 = new SequenceGUID(1653080306); public static readonly SequenceGUID SEQ_Contest_TeamMember_3 = new SequenceGUID(298631619); public static readonly SequenceGUID SEQ_ArenaPlacementBlock_Invalid = new SequenceGUID(-1542587650); public static readonly SequenceGUID SEQ_ArenaPlacementBlock_CanRemove = new SequenceGUID(1267458324); public static readonly SequenceGUID SEQ_ArenaPlacementBlock_CanPlace = new SequenceGUID(-1402326934); public static readonly SequenceGUID SEQ_PickupItem_01_7 = new SequenceGUID(1268037080); public static readonly SequenceGUID SEQ_Interact_PickupItem_InventoryFull_01_3 = new SequenceGUID(1814920120); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_6 = new SequenceGUID(1285710295); public static readonly SequenceGUID SEQ_PickupItem_01_8 = new SequenceGUID(996455896); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_7 = new SequenceGUID(1257120070); public static readonly SequenceGUID SEQ_PickupItem_01_9 = new SequenceGUID(-1974159912); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_8 = new SequenceGUID(-1303757399); public static readonly SequenceGUID SEQ_Vampire_Death = new SequenceGUID(-637200840); public static readonly SequenceGUID SEQ_Shared_Trigger_14 = new SequenceGUID(-154091361); public static readonly SequenceGUID SEQ_Critter_SteppedOn = new SequenceGUID(-547613598); public static readonly SequenceGUID SEQ_PickupItem_01_10 = new SequenceGUID(-344672808); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_9 = new SequenceGUID(927669739); public static readonly SequenceGUID SEQ_PickupItem_01_11 = new SequenceGUID(-1957382696); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_10 = new SequenceGUID(359284137); public static readonly SequenceGUID SEQ_Shared_Trigger_15 = new SequenceGUID(1286812958); public static readonly SequenceGUID SEQ_PickupItem_01_12 = new SequenceGUID(2066003416); public static readonly SequenceGUID SEQ_Interact_PickupItem_InventoryFull_01_4 = new SequenceGUID(500005816); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_11 = new SequenceGUID(-2044564445); public static readonly SequenceGUID SEQ_PickupItem_01_13 = new SequenceGUID(724874712); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_12 = new SequenceGUID(-1438427471); public static readonly SequenceGUID SEQ_PickupItem_01_14 = new SequenceGUID(-616253992); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_3 = new SequenceGUID(49054500); public static readonly SequenceGUID SEQ_Shared_Area_Effect_22 = new SequenceGUID(259569160); public static readonly SequenceGUID SEQ_Workstation_ServantCoffin_WakeUpReady = new SequenceGUID(789516790); public static readonly SequenceGUID SEQ_Workstation_ServantCoffin_ActiveServant = new SequenceGUID(-1964290775); public static readonly SequenceGUID SEQ_Workstation_ServantCoffin_ConversionActive = new SequenceGUID(-1732018925); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlotActive_Team01 = new SequenceGUID(2136921210); public static readonly SequenceGUID SEQ_Shared_Area_Ground = new SequenceGUID(-691173742); public static readonly SequenceGUID SEQ_Shared_OverTime_Effect = new SequenceGUID(-850896030); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlotActive_Team02 = new SequenceGUID(617961739); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_4 = new SequenceGUID(-2143291129); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive = new SequenceGUID(-343375976); public static readonly SequenceGUID SEQ_Workstation_Furnace_Active = new SequenceGUID(1512352109); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_5 = new SequenceGUID(-1928821623); public static readonly SequenceGUID SEQ_Vampire_LevelUp = new SequenceGUID(-1046001899); public static readonly SequenceGUID SEQ_TileModelBuilding_1 = new SequenceGUID(-264278975); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_6 = new SequenceGUID(-2086888531); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_1 = new SequenceGUID(1298844454); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_7 = new SequenceGUID(918367886); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_8 = new SequenceGUID(-925810813); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_9 = new SequenceGUID(-902503408); public static readonly SequenceGUID SEQ_Shared_Area_Ground_1 = new SequenceGUID(-546621498); public static readonly SequenceGUID SEQ_TileModelDismantle = new SequenceGUID(258407724); public static readonly SequenceGUID SEQ_Shared_Area_Ground_2 = new SequenceGUID(-100640726); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlotActive_Team03 = new SequenceGUID(-146303596); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlot_Team03 = new SequenceGUID(-1473328664); public static readonly SequenceGUID SEQ_Shared_Area_Impact_6 = new SequenceGUID(-840341317); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_10 = new SequenceGUID(1172638736); public static readonly SequenceGUID SEQ_Shared_Area_Ground_3 = new SequenceGUID(-1239565645); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_11 = new SequenceGUID(2005607119); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_2 = new SequenceGUID(-1646717033); public static readonly SequenceGUID SEQ_Workstation_ServantCoffin_WakeUpReady_StrongbladeDLC = new SequenceGUID(-144072537); public static readonly SequenceGUID SEQ_Workstation_ServantCoffin_ActiveServant_StrongbladeDLC = new SequenceGUID(1385294381); public static readonly SequenceGUID SEQ_Workstation_ServantCoffin_ConversionActive_StrongbladeDLC = new SequenceGUID(854825908); public static readonly SequenceGUID SEQ_TileModel_Crypt_Build = new SequenceGUID(-954432828); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_12 = new SequenceGUID(-873286427); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlot_Team02 = new SequenceGUID(-749440996); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlot_Team01 = new SequenceGUID(258159600); public static readonly SequenceGUID SEQ_TileModel_Crypt_Build_1 = new SequenceGUID(710192199); public static readonly SequenceGUID SEQ_ConstructionTorch_01 = new SequenceGUID(-474424213); public static readonly SequenceGUID SEQ_TileModelBuilding_2 = new SequenceGUID(-721447596); public static readonly SequenceGUID SEQ_TileModelBuilding_3 = new SequenceGUID(809462849); public static readonly SequenceGUID SEQ_Workstation_Furnace_LargeActive = new SequenceGUID(-334555180); public static readonly SequenceGUID SEQ_TileModelDismantle_1 = new SequenceGUID(-1784540545); public static readonly SequenceGUID SEQ_TileModelDismantle_2 = new SequenceGUID(-470906960); public static readonly SequenceGUID SEQ_TileModelDismantle_3 = new SequenceGUID(-2098937157); public static readonly SequenceGUID SEQ_TileModelEditing_1 = new SequenceGUID(-450089786); public static readonly SequenceGUID SEQ_Shared_Trigger_16 = new SequenceGUID(-1557326095); public static readonly SequenceGUID SEQ_Shared_Trigger_17 = new SequenceGUID(-443204601); public static readonly SequenceGUID SEQ_TileModelDismantle_4 = new SequenceGUID(674605853); public static readonly SequenceGUID SEQ_TileModelBuilding_4 = new SequenceGUID(826642748); public static readonly SequenceGUID SEQ_Waypoint_Active = new SequenceGUID(-1096288616); public static readonly SequenceGUID SEQ_Waypoint_World_Locked = new SequenceGUID(89325051); public static readonly SequenceGUID SEQ_Workstation_Coffin_Respawn = new SequenceGUID(1043723895); public static readonly SequenceGUID SEQ_TileModelBuildingWallpaper = new SequenceGUID(-501872957); public static readonly SequenceGUID SEQ_Workstation_Workbench_Active = new SequenceGUID(-1863547472); public static readonly SequenceGUID SEQ_TileModelDismantle_5 = new SequenceGUID(-344174753); public static readonly SequenceGUID SEQ_ContestArenaCountdown = new SequenceGUID(-1142510568); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlot_Team04 = new SequenceGUID(21029373); public static readonly SequenceGUID SEQ_ArenaFlag_OccupiedSlotActive_Team04 = new SequenceGUID(478520190); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_13 = new SequenceGUID(920337888); public static readonly SequenceGUID SEQ_TileModelDismantle_6 = new SequenceGUID(-1827192951); public static readonly SequenceGUID SEQ_TileModelBuilding_5 = new SequenceGUID(-896748135); public static readonly SequenceGUID SEQ_TileModelBuilding_6 = new SequenceGUID(1879010369); public static readonly SequenceGUID SEQ_TileModelExitPhased = new SequenceGUID(234167237); public static readonly SequenceGUID SEQ_TileModelDismantling = new SequenceGUID(1820562940); public static readonly SequenceGUID SEQ_TileModelDismantle_7 = new SequenceGUID(189290689); public static readonly SequenceGUID SEQ_TileModelBuildingPhased = new SequenceGUID(-1982272969); public static readonly SequenceGUID SEQ_TileModelBuilding_7 = new SequenceGUID(1733594134); public static readonly SequenceGUID SEQ_TileModelInvalidEditing_1 = new SequenceGUID(29614748); public static readonly SequenceGUID SEQ_Shared_Ability_Cast = new SequenceGUID(296773981); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1 = new SequenceGUID(-685378078); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_2 = new SequenceGUID(-1287970569); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_Moving = new SequenceGUID(1369949760); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_3 = new SequenceGUID(-1520427340); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_4 = new SequenceGUID(-26968646); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY = new SequenceGUID(-1716662267); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_1 = new SequenceGUID(1773353216); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_5 = new SequenceGUID(1025997144); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_6 = new SequenceGUID(-989876052); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_7 = new SequenceGUID(547904798); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_8 = new SequenceGUID(997931458); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_9 = new SequenceGUID(433100158); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_10 = new SequenceGUID(-76185829); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_11 = new SequenceGUID(227919745); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_12 = new SequenceGUID(1460610000); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_13 = new SequenceGUID(1914503239); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_14 = new SequenceGUID(2112255298); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_15 = new SequenceGUID(592121373); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_16 = new SequenceGUID(1441940042); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_17 = new SequenceGUID(-939553294); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_18 = new SequenceGUID(1821650209); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_19 = new SequenceGUID(626835568); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_20 = new SequenceGUID(-1085474419); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_21 = new SequenceGUID(517648511); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_22 = new SequenceGUID(-649201793); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_23 = new SequenceGUID(-1317048076); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_24 = new SequenceGUID(-1286768215); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_25 = new SequenceGUID(-955136229); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_26 = new SequenceGUID(890688028); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_27 = new SequenceGUID(1381301003); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_28 = new SequenceGUID(255559711); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_29 = new SequenceGUID(-369858040); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_30 = new SequenceGUID(-1663143862); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_31 = new SequenceGUID(630953058); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_32 = new SequenceGUID(-2077286720); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_33 = new SequenceGUID(-249128326); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_34 = new SequenceGUID(1940347215); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_35 = new SequenceGUID(1557578923); public static readonly SequenceGUID SEQ_Construction_Cast_Long = new SequenceGUID(1988724664); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_36 = new SequenceGUID(-821646255); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_37 = new SequenceGUID(-1754388951); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_38 = new SequenceGUID(749956391); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_39 = new SequenceGUID(-1608565674); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_40 = new SequenceGUID(-1850726259); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_41 = new SequenceGUID(-1167463797); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_42 = new SequenceGUID(-338498682); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_43 = new SequenceGUID(-290619372); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_44 = new SequenceGUID(-402160265); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_45 = new SequenceGUID(1808617309); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_46 = new SequenceGUID(1831862320); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_47 = new SequenceGUID(691919170); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_48 = new SequenceGUID(908364143); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_49 = new SequenceGUID(-1105714970); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_50 = new SequenceGUID(1331585126); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_51 = new SequenceGUID(1570510996); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_52 = new SequenceGUID(423596497); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_53 = new SequenceGUID(1801945004); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_54 = new SequenceGUID(2065153086); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_2 = new SequenceGUID(-1164565904); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_55 = new SequenceGUID(-411169685); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_56 = new SequenceGUID(863641845); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_57 = new SequenceGUID(-1019064637); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_58 = new SequenceGUID(1716485588); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_59 = new SequenceGUID(-904381869); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_60 = new SequenceGUID(316250602); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY = new SequenceGUID(1417756708); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_61 = new SequenceGUID(343356365); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_62 = new SequenceGUID(-1789037073); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_63 = new SequenceGUID(1069677197); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_64 = new SequenceGUID(296485589); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_65 = new SequenceGUID(532335867); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_66 = new SequenceGUID(1902111419); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_67 = new SequenceGUID(404591386); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_68 = new SequenceGUID(-1660049845); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_69 = new SequenceGUID(267761132); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_70 = new SequenceGUID(-1571332109); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_71 = new SequenceGUID(-1850213462); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_72 = new SequenceGUID(-355005583); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_73 = new SequenceGUID(-1119719581); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_74 = new SequenceGUID(-1616750982); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_75 = new SequenceGUID(-97470754); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast = new SequenceGUID(1585117755); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_76 = new SequenceGUID(248750033); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_77 = new SequenceGUID(595543980); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_78 = new SequenceGUID(1939349562); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_79 = new SequenceGUID(-1531453940); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_80 = new SequenceGUID(759029845); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_81 = new SequenceGUID(162124334); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_82 = new SequenceGUID(-1239841759); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_83 = new SequenceGUID(-261074492); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_84 = new SequenceGUID(-1583423756); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_85 = new SequenceGUID(362702922); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_86 = new SequenceGUID(1505711440); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_87 = new SequenceGUID(-1404749885); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_88 = new SequenceGUID(1991358149); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_89 = new SequenceGUID(-1996596427); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_90 = new SequenceGUID(-1780883374); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_91 = new SequenceGUID(1612618121); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_92 = new SequenceGUID(-868573692); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_93 = new SequenceGUID(-1241109948); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_94 = new SequenceGUID(-1969503456); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_95 = new SequenceGUID(-375840639); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_96 = new SequenceGUID(-531639258); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_97 = new SequenceGUID(1840946711); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_98 = new SequenceGUID(-2106931338); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_99 = new SequenceGUID(-1394167891); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_100 = new SequenceGUID(845183172); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_101 = new SequenceGUID(-1415653130); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_102 = new SequenceGUID(-1335507725); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_103 = new SequenceGUID(-1512355451); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_104 = new SequenceGUID(2084444191); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_105 = new SequenceGUID(-1967792509); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_106 = new SequenceGUID(-950159855); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_3 = new SequenceGUID(1421360977); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_107 = new SequenceGUID(1249209010); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_108 = new SequenceGUID(-1490472890); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_109 = new SequenceGUID(1453937837); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_4 = new SequenceGUID(-124630749); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_110 = new SequenceGUID(-1656546874); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_111 = new SequenceGUID(-399998592); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_112 = new SequenceGUID(-761824314); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_113 = new SequenceGUID(-1346142213); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_114 = new SequenceGUID(-2125294564); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_5 = new SequenceGUID(-1866924233); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_115 = new SequenceGUID(-1513856922); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_6 = new SequenceGUID(-1286859025); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_116 = new SequenceGUID(908511755); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_117 = new SequenceGUID(2015894380); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_118 = new SequenceGUID(232598798); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_119 = new SequenceGUID(1996997497); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_120 = new SequenceGUID(363351565); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_121 = new SequenceGUID(1250905423); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_122 = new SequenceGUID(1383916992); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_123 = new SequenceGUID(-312203772); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_124 = new SequenceGUID(1091299866); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_125 = new SequenceGUID(1199901293); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_126 = new SequenceGUID(-430762120); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_127 = new SequenceGUID(-992222121); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_128 = new SequenceGUID(600983654); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_129 = new SequenceGUID(-1932144420); public static readonly SequenceGUID SEQ_Vampire_Slashers_Secondary_Cast01 = new SequenceGUID(-1331640403); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_130 = new SequenceGUID(1487781268); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_131 = new SequenceGUID(548347584); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_132 = new SequenceGUID(774674531); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_133 = new SequenceGUID(299730355); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_134 = new SequenceGUID(568481528); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_135 = new SequenceGUID(-1657028848); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_136 = new SequenceGUID(1968425290); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_137 = new SequenceGUID(1181339052); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_138 = new SequenceGUID(-685637885); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_139 = new SequenceGUID(1978511862); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_140 = new SequenceGUID(-1536167601); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_141 = new SequenceGUID(2058759832); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_142 = new SequenceGUID(-119198976); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_143 = new SequenceGUID(907010736); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_144 = new SequenceGUID(-434737254); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_145 = new SequenceGUID(1483414912); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_146 = new SequenceGUID(-1942267663); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_147 = new SequenceGUID(1974133652); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_148 = new SequenceGUID(-776093717); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_149 = new SequenceGUID(-378508401); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_150 = new SequenceGUID(-919120273); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_151 = new SequenceGUID(-888197673); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_152 = new SequenceGUID(-1125939459); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_153 = new SequenceGUID(-16210308); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_154 = new SequenceGUID(-496946216); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_155 = new SequenceGUID(-1401410248); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_1 = new SequenceGUID(-1359542592); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_156 = new SequenceGUID(-1112754285); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_157 = new SequenceGUID(1937785794); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_158 = new SequenceGUID(-1476169066); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_159 = new SequenceGUID(547747459); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash = new SequenceGUID(-1376647119); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_160 = new SequenceGUID(2111150774); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_161 = new SequenceGUID(1004403036); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_162 = new SequenceGUID(179493347); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_163 = new SequenceGUID(-948277277); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_164 = new SequenceGUID(-421186398); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_165 = new SequenceGUID(1545122614); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_166 = new SequenceGUID(-650765201); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_167 = new SequenceGUID(2092583289); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_168 = new SequenceGUID(518625362); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_169 = new SequenceGUID(1781503644); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_1 = new SequenceGUID(-1249566325); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_170 = new SequenceGUID(1554753390); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_171 = new SequenceGUID(1411816451); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_172 = new SequenceGUID(1194549562); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_173 = new SequenceGUID(2016508274); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_174 = new SequenceGUID(-489362333); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_175 = new SequenceGUID(-1040447684); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_176 = new SequenceGUID(-946547763); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_177 = new SequenceGUID(-1883265266); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_178 = new SequenceGUID(792425930); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_179 = new SequenceGUID(-580201549); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_180 = new SequenceGUID(665385656); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_181 = new SequenceGUID(1742344893); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_182 = new SequenceGUID(-53949624); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_183 = new SequenceGUID(1230143296); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_184 = new SequenceGUID(-102815681); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_185 = new SequenceGUID(1268583695); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_186 = new SequenceGUID(883040032); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_187 = new SequenceGUID(-1566103007); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_188 = new SequenceGUID(-1495986214); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_189 = new SequenceGUID(-1598236617); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_190 = new SequenceGUID(-927153097); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_191 = new SequenceGUID(1321849590); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_192 = new SequenceGUID(-863381441); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_193 = new SequenceGUID(1953414067); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_194 = new SequenceGUID(-800523739); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_195 = new SequenceGUID(1900759275); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_196 = new SequenceGUID(-2098901752); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_197 = new SequenceGUID(355128882); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_198 = new SequenceGUID(1599288750); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_199 = new SequenceGUID(1620661799); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_200 = new SequenceGUID(726102565); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_201 = new SequenceGUID(-351190520); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_202 = new SequenceGUID(1413198222); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_203 = new SequenceGUID(-1393597530); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_204 = new SequenceGUID(-660452967); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_205 = new SequenceGUID(-1476399558); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_206 = new SequenceGUID(12980014); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_207 = new SequenceGUID(-1793755865); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_208 = new SequenceGUID(146430637); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_209 = new SequenceGUID(986479093); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_210 = new SequenceGUID(-1783558657); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_2 = new SequenceGUID(-664657716); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_211 = new SequenceGUID(-1837451874); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_212 = new SequenceGUID(-1982893420); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_213 = new SequenceGUID(1252009321); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_214 = new SequenceGUID(193642242); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_215 = new SequenceGUID(596822337); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_216 = new SequenceGUID(1502450988); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_217 = new SequenceGUID(-719343849); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_218 = new SequenceGUID(1381440024); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_219 = new SequenceGUID(984966924); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_220 = new SequenceGUID(-958900160); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_221 = new SequenceGUID(-1271984652); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_222 = new SequenceGUID(-1264347082); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_223 = new SequenceGUID(-249233602); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_224 = new SequenceGUID(-1298032278); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_225 = new SequenceGUID(313140709); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_226 = new SequenceGUID(1832673395); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_227 = new SequenceGUID(-178918936); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_2 = new SequenceGUID(906305942); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_228 = new SequenceGUID(1078363425); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_229 = new SequenceGUID(-1058375094); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_230 = new SequenceGUID(-1835653971); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_231 = new SequenceGUID(143972102); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_232 = new SequenceGUID(133880019); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_233 = new SequenceGUID(1576577217); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_7 = new SequenceGUID(143888930); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_234 = new SequenceGUID(-834337689); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_TargetIndicator = new SequenceGUID(-123445360); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_235 = new SequenceGUID(1556766325); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_236 = new SequenceGUID(1982244084); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_237 = new SequenceGUID(-1290664443); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_238 = new SequenceGUID(-127919085); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_239 = new SequenceGUID(-795474796); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_240 = new SequenceGUID(-1265769196); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_241 = new SequenceGUID(-1146544608); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_242 = new SequenceGUID(-602389201); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_243 = new SequenceGUID(-416405314); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_244 = new SequenceGUID(853513695); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_245 = new SequenceGUID(-1464021095); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_246 = new SequenceGUID(-1913092147); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_247 = new SequenceGUID(-202531549); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_248 = new SequenceGUID(-375064163); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_249 = new SequenceGUID(-617451465); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_3 = new SequenceGUID(-883465427); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_250 = new SequenceGUID(1363349716); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_251 = new SequenceGUID(-521871017); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_252 = new SequenceGUID(1888567464); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_253 = new SequenceGUID(38664193); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_254 = new SequenceGUID(1956553843); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_255 = new SequenceGUID(1821911867); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_256 = new SequenceGUID(744104759); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_257 = new SequenceGUID(1557105757); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_8 = new SequenceGUID(-269519764); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_258 = new SequenceGUID(-1184959730); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_259 = new SequenceGUID(964726681); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_260 = new SequenceGUID(196198971); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_261 = new SequenceGUID(-367898698); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_262 = new SequenceGUID(-946997335); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_263 = new SequenceGUID(-1668572434); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_264 = new SequenceGUID(1696858656); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_265 = new SequenceGUID(1937687773); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_266 = new SequenceGUID(-979880693); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_267 = new SequenceGUID(729921946); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_268 = new SequenceGUID(-1673606180); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_269 = new SequenceGUID(92121184); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_270 = new SequenceGUID(-232423081); public static readonly SequenceGUID SEQ_KnightShield_Cast_DirectionalShield = new SequenceGUID(-1074658195); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_271 = new SequenceGUID(-451749177); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_272 = new SequenceGUID(1683163585); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_273 = new SequenceGUID(-1132089856); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_274 = new SequenceGUID(1750629912); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_275 = new SequenceGUID(-2088816381); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_276 = new SequenceGUID(-876643517); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_277 = new SequenceGUID(841310503); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_278 = new SequenceGUID(-458403638); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_279 = new SequenceGUID(-1667541050); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_280 = new SequenceGUID(-507846300); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_281 = new SequenceGUID(2068664941); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_282 = new SequenceGUID(-558183034); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_283 = new SequenceGUID(-1574734239); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_284 = new SequenceGUID(779769028); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_285 = new SequenceGUID(1203456991); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_286 = new SequenceGUID(1251507181); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_287 = new SequenceGUID(-1365691872); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_288 = new SequenceGUID(234752641); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_289 = new SequenceGUID(584615726); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_290 = new SequenceGUID(518441601); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_291 = new SequenceGUID(179987653); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_292 = new SequenceGUID(-2000133596); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_4 = new SequenceGUID(867384616); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_293 = new SequenceGUID(1999801545); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_294 = new SequenceGUID(26107192); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_295 = new SequenceGUID(1280186277); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_296 = new SequenceGUID(642515310); public static readonly SequenceGUID SEQ_Vampire_Roll = new SequenceGUID(-1193906527); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_297 = new SequenceGUID(-1544050720); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_298 = new SequenceGUID(-998165207); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_299 = new SequenceGUID(715481879); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_300 = new SequenceGUID(708116025); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_301 = new SequenceGUID(1122463723); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_302 = new SequenceGUID(-1277952951); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_303 = new SequenceGUID(-1455892846); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_304 = new SequenceGUID(2147220846); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_Moving_1 = new SequenceGUID(-1394940141); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_305 = new SequenceGUID(-1119417511); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_9 = new SequenceGUID(1647766863); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_306 = new SequenceGUID(-1674414019); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_307 = new SequenceGUID(-2064648724); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_308 = new SequenceGUID(1871530259); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_309 = new SequenceGUID(-841337021); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_310 = new SequenceGUID(-1978293092); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_311 = new SequenceGUID(185574715); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_312 = new SequenceGUID(1650575837); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_313 = new SequenceGUID(1640514077); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_314 = new SequenceGUID(204088573); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_315 = new SequenceGUID(607641042); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_316 = new SequenceGUID(-1539842606); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_317 = new SequenceGUID(-1622155822); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_318 = new SequenceGUID(-1243432197); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_319 = new SequenceGUID(-1050031387); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_320 = new SequenceGUID(-846519301); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_321 = new SequenceGUID(-182453908); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_322 = new SequenceGUID(1710406395); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_323 = new SequenceGUID(1042068867); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_324 = new SequenceGUID(-193449882); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_325 = new SequenceGUID(-254889012); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_326 = new SequenceGUID(-2015503988); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_327 = new SequenceGUID(-1981860636); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_328 = new SequenceGUID(985417667); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_329 = new SequenceGUID(1565382345); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_330 = new SequenceGUID(-227143509); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_331 = new SequenceGUID(1092034066); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_332 = new SequenceGUID(1915540017); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_333 = new SequenceGUID(-534325622); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_334 = new SequenceGUID(-1082856441); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_335 = new SequenceGUID(932655867); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_336 = new SequenceGUID(-1408549692); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_337 = new SequenceGUID(1717422583); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_338 = new SequenceGUID(697530324); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_339 = new SequenceGUID(1631191805); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_340 = new SequenceGUID(-808033235); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_341 = new SequenceGUID(445627793); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_342 = new SequenceGUID(686890238); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_343 = new SequenceGUID(-1507515052); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_344 = new SequenceGUID(-1817401342); public static readonly SequenceGUID SEQ_Shared_Throw_Cast_LEGACY = new SequenceGUID(-3175369); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_345 = new SequenceGUID(-1941386864); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_346 = new SequenceGUID(1421907572); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_347 = new SequenceGUID(-1519112552); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_348 = new SequenceGUID(417459071); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_349 = new SequenceGUID(550355988); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_350 = new SequenceGUID(1383708417); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_351 = new SequenceGUID(2015896602); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_352 = new SequenceGUID(130906125); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_353 = new SequenceGUID(502386321); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_354 = new SequenceGUID(-658313850); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_355 = new SequenceGUID(-476428330); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_356 = new SequenceGUID(816270258); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_357 = new SequenceGUID(-2076639970); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Attack_Cast = new SequenceGUID(-1633264630); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_358 = new SequenceGUID(-226588437); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_359 = new SequenceGUID(1854839510); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_360 = new SequenceGUID(-1205886483); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_361 = new SequenceGUID(-1071945087); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_362 = new SequenceGUID(1322803242); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_363 = new SequenceGUID(-1757822702); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_5 = new SequenceGUID(-841506403); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_364 = new SequenceGUID(-687031722); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_365 = new SequenceGUID(648199254); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_366 = new SequenceGUID(1282457562); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_367 = new SequenceGUID(128555080); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_368 = new SequenceGUID(1770702501); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_369 = new SequenceGUID(328505568); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_370 = new SequenceGUID(-1527587676); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_371 = new SequenceGUID(1147777507); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_372 = new SequenceGUID(-1944001170); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_373 = new SequenceGUID(1942071749); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_374 = new SequenceGUID(-2103175395); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_375 = new SequenceGUID(-94831090); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_376 = new SequenceGUID(-519899819); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_377 = new SequenceGUID(1311656683); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_378 = new SequenceGUID(285820234); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_379 = new SequenceGUID(1491329353); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_380 = new SequenceGUID(-1843137684); public static readonly SequenceGUID SEQ_Vampire_Revive_Trigger_Complete = new SequenceGUID(-671685592); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_381 = new SequenceGUID(-1862031432); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_382 = new SequenceGUID(2112233905); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_383 = new SequenceGUID(1553218993); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_6 = new SequenceGUID(244108524); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_384 = new SequenceGUID(-942481030); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_385 = new SequenceGUID(810004113); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_386 = new SequenceGUID(2122807477); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_387 = new SequenceGUID(-209059361); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_388 = new SequenceGUID(-1028196358); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_389 = new SequenceGUID(520973975); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_390 = new SequenceGUID(1535869661); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_391 = new SequenceGUID(711936102); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_392 = new SequenceGUID(274800025); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_393 = new SequenceGUID(-1937472228); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_394 = new SequenceGUID(1596306542); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_395 = new SequenceGUID(1370297947); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_396 = new SequenceGUID(1317013936); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_10 = new SequenceGUID(-1611426144); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_397 = new SequenceGUID(-1664403506); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_398 = new SequenceGUID(-1043398828); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_399 = new SequenceGUID(1036482903); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_400 = new SequenceGUID(-259868178); public static readonly SequenceGUID SEQ_Shared_Throw_Cast_LEGACY_1 = new SequenceGUID(-967415659); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_401 = new SequenceGUID(819803510); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_402 = new SequenceGUID(1376281984); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_403 = new SequenceGUID(1944411247); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_404 = new SequenceGUID(-422772824); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_405 = new SequenceGUID(-1192954833); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_406 = new SequenceGUID(157817237); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_407 = new SequenceGUID(-577667369); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY_1 = new SequenceGUID(-159895426); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_408 = new SequenceGUID(2143433020); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_409 = new SequenceGUID(325969872); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_410 = new SequenceGUID(1859918755); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_411 = new SequenceGUID(940129892); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_412 = new SequenceGUID(-258287072); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_413 = new SequenceGUID(-2145246205); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_3 = new SequenceGUID(186852346); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_414 = new SequenceGUID(-964391088); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_415 = new SequenceGUID(-108848523); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_416 = new SequenceGUID(285710631); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_417 = new SequenceGUID(1065709109); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_418 = new SequenceGUID(-276134962); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_419 = new SequenceGUID(191577364); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_420 = new SequenceGUID(2096122732); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_421 = new SequenceGUID(-1144604212); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_422 = new SequenceGUID(927795555); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_423 = new SequenceGUID(-1119858015); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_424 = new SequenceGUID(939389643); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_425 = new SequenceGUID(198545930); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_426 = new SequenceGUID(-2075330989); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_427 = new SequenceGUID(1828098744); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_11 = new SequenceGUID(214957372); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_428 = new SequenceGUID(-467389191); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_429 = new SequenceGUID(-235237580); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_430 = new SequenceGUID(-1660576432); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_431 = new SequenceGUID(-1052964690); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_432 = new SequenceGUID(-28259478); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_433 = new SequenceGUID(-896950351); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_12 = new SequenceGUID(-1282767743); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_4 = new SequenceGUID(-786276437); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_434 = new SequenceGUID(-1460889660); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_435 = new SequenceGUID(-361436554); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_436 = new SequenceGUID(1367767557); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_13 = new SequenceGUID(1497391006); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_5 = new SequenceGUID(1058962781); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_437 = new SequenceGUID(427070708); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_438 = new SequenceGUID(964834814); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_14 = new SequenceGUID(-1206978497); public static readonly SequenceGUID SEQ_Shared_Throw_Cast_LEGACY_2 = new SequenceGUID(-1141665257); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY_2 = new SequenceGUID(-1590094005); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_439 = new SequenceGUID(-678163439); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_440 = new SequenceGUID(1502992726); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_441 = new SequenceGUID(1196763875); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_442 = new SequenceGUID(-1416650051); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_443 = new SequenceGUID(-1156297395); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_444 = new SequenceGUID(1065226944); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_445 = new SequenceGUID(-1102908311); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_15 = new SequenceGUID(1786903030); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_446 = new SequenceGUID(2119132293); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_447 = new SequenceGUID(-615946505); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_448 = new SequenceGUID(-2122360769); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_449 = new SequenceGUID(1278396665); public static readonly SequenceGUID SEQ_Fireball_Cast_01 = new SequenceGUID(-1765901933); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_450 = new SequenceGUID(681567151); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_451 = new SequenceGUID(-1498422487); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_452 = new SequenceGUID(-1229961011); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_453 = new SequenceGUID(4185808); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_454 = new SequenceGUID(1943390737); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_455 = new SequenceGUID(322788331); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_456 = new SequenceGUID(1856841690); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast = new SequenceGUID(489746516); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_457 = new SequenceGUID(444080512); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_458 = new SequenceGUID(1422009654); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_459 = new SequenceGUID(1889409396); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY = new SequenceGUID(1470814628); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_16 = new SequenceGUID(-1834006490); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_460 = new SequenceGUID(-1002772458); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_461 = new SequenceGUID(-1612610209); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_462 = new SequenceGUID(1590433648); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_463 = new SequenceGUID(-139280756); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_464 = new SequenceGUID(-1671036992); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_465 = new SequenceGUID(-247271306); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_466 = new SequenceGUID(-1011352783); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_467 = new SequenceGUID(-754087053); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_468 = new SequenceGUID(-665200321); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_469 = new SequenceGUID(228379066); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_470 = new SequenceGUID(-1265428345); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_471 = new SequenceGUID(830674364); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_472 = new SequenceGUID(-321717715); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_473 = new SequenceGUID(98578014); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_474 = new SequenceGUID(-1373450069); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_475 = new SequenceGUID(-201055898); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_476 = new SequenceGUID(-16828913); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_477 = new SequenceGUID(-1556851157); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_478 = new SequenceGUID(-1736274529); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_479 = new SequenceGUID(385043589); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_480 = new SequenceGUID(-806390346); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_481 = new SequenceGUID(1153705823); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_482 = new SequenceGUID(702633913); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_483 = new SequenceGUID(1183801791); public static readonly SequenceGUID SEQ_Shared_Roll = new SequenceGUID(-638257703); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_484 = new SequenceGUID(1434614380); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_485 = new SequenceGUID(1185054729); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_486 = new SequenceGUID(-498549675); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_487 = new SequenceGUID(2108354486); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_488 = new SequenceGUID(1784561582); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_489 = new SequenceGUID(-787814311); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY_3 = new SequenceGUID(-1627358676); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_490 = new SequenceGUID(-1384378739); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_491 = new SequenceGUID(-1488213083); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_17 = new SequenceGUID(-522013626); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY_4 = new SequenceGUID(-2108199474); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_492 = new SequenceGUID(36176986); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_493 = new SequenceGUID(-977520464); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_494 = new SequenceGUID(1802087021); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_495 = new SequenceGUID(-801786613); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_18 = new SequenceGUID(-1030575736); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_496 = new SequenceGUID(1109453398); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_497 = new SequenceGUID(-1322259657); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_498 = new SequenceGUID(-1621382938); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_499 = new SequenceGUID(-537919714); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_500 = new SequenceGUID(-1742282998); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_501 = new SequenceGUID(-384987890); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_502 = new SequenceGUID(611525649); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_503 = new SequenceGUID(1656528998); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_504 = new SequenceGUID(-706696074); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_505 = new SequenceGUID(1233330761); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_506 = new SequenceGUID(811848623); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_507 = new SequenceGUID(-755350684); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_19 = new SequenceGUID(-923118079); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_508 = new SequenceGUID(-792484890); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_509 = new SequenceGUID(-157294700); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_510 = new SequenceGUID(-1828187282); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_511 = new SequenceGUID(1992207473); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_512 = new SequenceGUID(2075512169); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_513 = new SequenceGUID(-951677449); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_514 = new SequenceGUID(532143795); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_515 = new SequenceGUID(-1659346542); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_516 = new SequenceGUID(-1565769679); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_517 = new SequenceGUID(-1624924094); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_518 = new SequenceGUID(-129432631); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_519 = new SequenceGUID(940972249); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_520 = new SequenceGUID(1887596614); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_521 = new SequenceGUID(-963799344); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_522 = new SequenceGUID(-2045941901); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_523 = new SequenceGUID(1986615885); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_524 = new SequenceGUID(-1547939969); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_525 = new SequenceGUID(-879903654); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_526 = new SequenceGUID(813935395); public static readonly SequenceGUID SEQ_Shared_Roll_1 = new SequenceGUID(1002987151); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_527 = new SequenceGUID(-2113772681); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_528 = new SequenceGUID(-724314612); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_529 = new SequenceGUID(1696188019); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_530 = new SequenceGUID(1745309751); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_531 = new SequenceGUID(-901213645); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_532 = new SequenceGUID(-705113555); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_533 = new SequenceGUID(-480628043); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_7 = new SequenceGUID(1863379856); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_534 = new SequenceGUID(-1657939549); public static readonly SequenceGUID SEQ_Shared_Roll_2 = new SequenceGUID(1670254031); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_535 = new SequenceGUID(469645546); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_536 = new SequenceGUID(1913005618); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_537 = new SequenceGUID(1260327895); public static readonly SequenceGUID SEQ_Charm_ReleaseTarget_Cast = new SequenceGUID(-568047818); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_538 = new SequenceGUID(1555887174); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_539 = new SequenceGUID(-517390831); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_540 = new SequenceGUID(1097175162); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_541 = new SequenceGUID(-834806247); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_542 = new SequenceGUID(1430832580); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast_1 = new SequenceGUID(-1012558688); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_543 = new SequenceGUID(-2143579237); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_544 = new SequenceGUID(1917227161); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_545 = new SequenceGUID(1250144957); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_546 = new SequenceGUID(-1415480136); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_547 = new SequenceGUID(-908499647); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_548 = new SequenceGUID(1120107179); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_549 = new SequenceGUID(-124592141); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_550 = new SequenceGUID(525563876); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_551 = new SequenceGUID(448936062); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_552 = new SequenceGUID(1359313304); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_553 = new SequenceGUID(2020032027); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_554 = new SequenceGUID(566305038); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_555 = new SequenceGUID(1328941862); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_556 = new SequenceGUID(-925596324); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_557 = new SequenceGUID(-564879850); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_558 = new SequenceGUID(-1250612913); public static readonly SequenceGUID SEQ_Vampire_Mace_Slam_Cast01 = new SequenceGUID(1114645460); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_559 = new SequenceGUID(1770748708); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_560 = new SequenceGUID(-1496835699); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_561 = new SequenceGUID(1219184724); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_562 = new SequenceGUID(-1494011749); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_563 = new SequenceGUID(2554867); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_564 = new SequenceGUID(-2080229020); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_565 = new SequenceGUID(-760736325); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_566 = new SequenceGUID(-2065632673); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_567 = new SequenceGUID(-1131596371); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_568 = new SequenceGUID(96787767); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_569 = new SequenceGUID(-13014808); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_570 = new SequenceGUID(-117531141); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_571 = new SequenceGUID(348878531); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_572 = new SequenceGUID(-1940798627); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_573 = new SequenceGUID(-22254120); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_574 = new SequenceGUID(-1752558455); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_575 = new SequenceGUID(127021441); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_576 = new SequenceGUID(-387831760); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_577 = new SequenceGUID(1057380332); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_578 = new SequenceGUID(-957796574); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_579 = new SequenceGUID(868926004); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_580 = new SequenceGUID(121297987); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_581 = new SequenceGUID(-2105055114); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_582 = new SequenceGUID(-752474466); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_583 = new SequenceGUID(1114646777); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_584 = new SequenceGUID(1152864661); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_585 = new SequenceGUID(1985165363); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_586 = new SequenceGUID(1870603444); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_13 = new SequenceGUID(1073792130); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_587 = new SequenceGUID(-1582217647); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_588 = new SequenceGUID(-1855003720); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_589 = new SequenceGUID(-24482498); public static readonly SequenceGUID SEQ_Shared_Roll_3 = new SequenceGUID(1598232958); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_590 = new SequenceGUID(1035112235); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_591 = new SequenceGUID(-1822098292); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_592 = new SequenceGUID(907358075); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_593 = new SequenceGUID(-1958972434); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_594 = new SequenceGUID(963151793); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_595 = new SequenceGUID(-1318399481); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_596 = new SequenceGUID(1396962567); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_597 = new SequenceGUID(-735013410); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_598 = new SequenceGUID(1266284906); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_599 = new SequenceGUID(-1220361080); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_600 = new SequenceGUID(-1771169213); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_601 = new SequenceGUID(598719856); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_602 = new SequenceGUID(1991190977); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_20 = new SequenceGUID(-1844063658); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_603 = new SequenceGUID(-1200453096); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_604 = new SequenceGUID(-1347571675); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_605 = new SequenceGUID(1428063048); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_606 = new SequenceGUID(1580569347); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_607 = new SequenceGUID(-241403990); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_608 = new SequenceGUID(888380782); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_21 = new SequenceGUID(-1204141636); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_609 = new SequenceGUID(491077720); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_610 = new SequenceGUID(431470426); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_611 = new SequenceGUID(-1815951431); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_612 = new SequenceGUID(2032757957); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_613 = new SequenceGUID(-502074802); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_614 = new SequenceGUID(1190652850); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_615 = new SequenceGUID(-1412169891); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_616 = new SequenceGUID(1192365524); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_617 = new SequenceGUID(-269633934); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_618 = new SequenceGUID(-2108010064); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_619 = new SequenceGUID(1716238335); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_620 = new SequenceGUID(-1022565210); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_621 = new SequenceGUID(960430933); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_622 = new SequenceGUID(74074336); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_623 = new SequenceGUID(797815438); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_624 = new SequenceGUID(-795282092); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_625 = new SequenceGUID(207147850); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_22 = new SequenceGUID(1424452740); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_626 = new SequenceGUID(-735151288); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_627 = new SequenceGUID(-297155874); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_628 = new SequenceGUID(1792805585); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_629 = new SequenceGUID(882036174); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_630 = new SequenceGUID(-334157492); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_631 = new SequenceGUID(1585712274); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_632 = new SequenceGUID(-959824176); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_633 = new SequenceGUID(-605591964); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_634 = new SequenceGUID(1900523017); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_635 = new SequenceGUID(992904057); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_636 = new SequenceGUID(1218283491); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_637 = new SequenceGUID(-599160387); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_638 = new SequenceGUID(1603603573); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_639 = new SequenceGUID(1546219047); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_640 = new SequenceGUID(-1765389656); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_641 = new SequenceGUID(1145018282); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_642 = new SequenceGUID(-2134447305); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast_2 = new SequenceGUID(1417022186); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_643 = new SequenceGUID(922455830); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_644 = new SequenceGUID(-883149179); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_645 = new SequenceGUID(-892661956); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_646 = new SequenceGUID(113113137); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_647 = new SequenceGUID(-1152338161); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_648 = new SequenceGUID(-1824565788); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_649 = new SequenceGUID(-2013452094); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Secondary_Cast = new SequenceGUID(403845731); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_650 = new SequenceGUID(-1609170129); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_651 = new SequenceGUID(-194714875); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_652 = new SequenceGUID(747125345); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_653 = new SequenceGUID(-1198373003); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_654 = new SequenceGUID(520760902); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_655 = new SequenceGUID(2132514866); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_656 = new SequenceGUID(1134991195); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_657 = new SequenceGUID(-2056358305); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_658 = new SequenceGUID(1521240905); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_659 = new SequenceGUID(736985144); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_660 = new SequenceGUID(603698322); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_661 = new SequenceGUID(-1861489647); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_662 = new SequenceGUID(-517410838); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_663 = new SequenceGUID(1021487402); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_664 = new SequenceGUID(-1294500534); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_665 = new SequenceGUID(-1457025857); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_666 = new SequenceGUID(-1580554236); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_667 = new SequenceGUID(340903465); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_668 = new SequenceGUID(753378220); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_669 = new SequenceGUID(-9801437); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_670 = new SequenceGUID(-1370157533); public static readonly SequenceGUID SEQ_Subdue_ReleaseTarget_Cast = new SequenceGUID(333766456); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_671 = new SequenceGUID(-1967924429); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_672 = new SequenceGUID(-1308997645); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Attack_Cast_1 = new SequenceGUID(1363800444); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_673 = new SequenceGUID(-1179119321); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_674 = new SequenceGUID(-774500516); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_675 = new SequenceGUID(2091532205); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_676 = new SequenceGUID(-408257773); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_677 = new SequenceGUID(109568227); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_678 = new SequenceGUID(946716280); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_679 = new SequenceGUID(328720741); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_680 = new SequenceGUID(120005043); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_681 = new SequenceGUID(-1962440673); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_682 = new SequenceGUID(-16111092); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_683 = new SequenceGUID(-1162948392); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_684 = new SequenceGUID(-1273621415); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_685 = new SequenceGUID(-1451521646); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_686 = new SequenceGUID(-706000431); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_687 = new SequenceGUID(-269889680); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_688 = new SequenceGUID(-1925701669); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_689 = new SequenceGUID(1061662773); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_690 = new SequenceGUID(-892457129); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_691 = new SequenceGUID(988584533); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_692 = new SequenceGUID(1512159405); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_693 = new SequenceGUID(1975474241); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_694 = new SequenceGUID(-1227765736); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_695 = new SequenceGUID(1347163978); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_696 = new SequenceGUID(828824711); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_697 = new SequenceGUID(1550428571); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_698 = new SequenceGUID(-202110354); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_Moving_2 = new SequenceGUID(-1236140977); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_23 = new SequenceGUID(-1422147750); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_699 = new SequenceGUID(922130062); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_700 = new SequenceGUID(-394097223); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_701 = new SequenceGUID(1480197187); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_24 = new SequenceGUID(-801072000); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_702 = new SequenceGUID(1070592415); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_703 = new SequenceGUID(1191401100); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_704 = new SequenceGUID(1964388890); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_705 = new SequenceGUID(-512646553); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_706 = new SequenceGUID(50799599); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_707 = new SequenceGUID(958398184); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_708 = new SequenceGUID(-538517308); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_709 = new SequenceGUID(-727067828); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_710 = new SequenceGUID(792935573); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_711 = new SequenceGUID(902085750); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_712 = new SequenceGUID(-1110174121); public static readonly SequenceGUID SEQ_Shared_Roll_4 = new SequenceGUID(1658199108); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_713 = new SequenceGUID(368214218); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_714 = new SequenceGUID(-1836767053); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_715 = new SequenceGUID(278855563); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_716 = new SequenceGUID(240670257); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_717 = new SequenceGUID(-455628371); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_718 = new SequenceGUID(493214449); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_6 = new SequenceGUID(-54320394); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_719 = new SequenceGUID(-1254551302); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_720 = new SequenceGUID(2079273370); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_25 = new SequenceGUID(-407197695); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast_3 = new SequenceGUID(478546666); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_721 = new SequenceGUID(-1487252525); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_722 = new SequenceGUID(123752233); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_723 = new SequenceGUID(1043546513); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_724 = new SequenceGUID(1492351527); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_725 = new SequenceGUID(940136107); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_726 = new SequenceGUID(-636670032); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_727 = new SequenceGUID(-171451354); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_728 = new SequenceGUID(-969475608); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_729 = new SequenceGUID(622539302); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_730 = new SequenceGUID(1239299488); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_731 = new SequenceGUID(-1496818097); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_732 = new SequenceGUID(-1774888168); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_733 = new SequenceGUID(-590529799); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_734 = new SequenceGUID(-159777758); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_735 = new SequenceGUID(608817222); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_736 = new SequenceGUID(-1810099157); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_737 = new SequenceGUID(-576106703); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_738 = new SequenceGUID(-1062944348); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_739 = new SequenceGUID(500843592); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_740 = new SequenceGUID(-2124059481); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_741 = new SequenceGUID(-1765376950); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_742 = new SequenceGUID(-726509452); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast_4 = new SequenceGUID(-1946809622); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_743 = new SequenceGUID(1963187738); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_744 = new SequenceGUID(-1069822540); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_745 = new SequenceGUID(-1156832056); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_746 = new SequenceGUID(176150359); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_26 = new SequenceGUID(-861995409); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_747 = new SequenceGUID(577773828); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Secondary_Cast_1 = new SequenceGUID(-1380322431); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Secondary_Cast_2 = new SequenceGUID(-91527825); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_748 = new SequenceGUID(-1454251587); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_749 = new SequenceGUID(1508111972); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_750 = new SequenceGUID(1159669952); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_751 = new SequenceGUID(-287338524); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_752 = new SequenceGUID(155212807); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_753 = new SequenceGUID(-1256957952); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_754 = new SequenceGUID(-671355285); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_755 = new SequenceGUID(1013593768); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_756 = new SequenceGUID(-1672277701); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_757 = new SequenceGUID(-488237423); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_758 = new SequenceGUID(952888319); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_759 = new SequenceGUID(-1616547023); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_760 = new SequenceGUID(1822890411); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_761 = new SequenceGUID(-833354656); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_762 = new SequenceGUID(1211876169); public static readonly SequenceGUID SEQ_Vampire_Feed_Trigger_BiteAbort = new SequenceGUID(-315058446); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_763 = new SequenceGUID(-1020746787); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_764 = new SequenceGUID(-1402069665); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_765 = new SequenceGUID(-1809815942); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_766 = new SequenceGUID(280602753); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_767 = new SequenceGUID(-39374163); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_768 = new SequenceGUID(1893460957); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_769 = new SequenceGUID(-52747676); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_770 = new SequenceGUID(713037609); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_771 = new SequenceGUID(1846123639); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_772 = new SequenceGUID(199816558); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_773 = new SequenceGUID(1040733763); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_27 = new SequenceGUID(-1378665024); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_774 = new SequenceGUID(-278325874); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_775 = new SequenceGUID(1222817891); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_776 = new SequenceGUID(-1424295731); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_777 = new SequenceGUID(901832560); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_28 = new SequenceGUID(1207816229); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_778 = new SequenceGUID(-70119272); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_779 = new SequenceGUID(-876831670); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_780 = new SequenceGUID(-1386482695); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_781 = new SequenceGUID(1047238408); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_782 = new SequenceGUID(-699834764); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast_5 = new SequenceGUID(-1204771145); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_783 = new SequenceGUID(-567234011); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_784 = new SequenceGUID(1357673503); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_785 = new SequenceGUID(-1547146123); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_786 = new SequenceGUID(-869697817); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_Moving_3 = new SequenceGUID(394323588); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_787 = new SequenceGUID(-1179795491); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_788 = new SequenceGUID(-1410372527); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_789 = new SequenceGUID(-496024552); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_29 = new SequenceGUID(1620129175); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_790 = new SequenceGUID(1044701067); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_791 = new SequenceGUID(-2057013573); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_792 = new SequenceGUID(436235528); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_793 = new SequenceGUID(1486230274); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_794 = new SequenceGUID(-660788043); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_795 = new SequenceGUID(-367844205); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_796 = new SequenceGUID(751681632); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_797 = new SequenceGUID(1471212587); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_798 = new SequenceGUID(846892821); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_799 = new SequenceGUID(-969636957); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_800 = new SequenceGUID(1892404115); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_8 = new SequenceGUID(245429836); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_801 = new SequenceGUID(-1305958595); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_802 = new SequenceGUID(1428583284); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_803 = new SequenceGUID(-2113939137); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_804 = new SequenceGUID(556097474); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_805 = new SequenceGUID(1189171019); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_806 = new SequenceGUID(2063635066); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_807 = new SequenceGUID(-1510396016); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_808 = new SequenceGUID(-1797052616); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_809 = new SequenceGUID(535471807); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_810 = new SequenceGUID(95896317); public static readonly SequenceGUID SEQ_Farmlands_Bellringer_RingBell = new SequenceGUID(2079323091); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_811 = new SequenceGUID(-1480833475); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_812 = new SequenceGUID(-1308956000); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_813 = new SequenceGUID(1842908195); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_814 = new SequenceGUID(646831431); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_815 = new SequenceGUID(-373220927); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_816 = new SequenceGUID(-2136966543); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_817 = new SequenceGUID(-79565692); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_818 = new SequenceGUID(1814468579); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_819 = new SequenceGUID(-1141699792); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_820 = new SequenceGUID(1929970338); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_821 = new SequenceGUID(1939737291); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_822 = new SequenceGUID(-2000061983); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_823 = new SequenceGUID(988868465); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_824 = new SequenceGUID(1636053916); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_825 = new SequenceGUID(-659019856); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_826 = new SequenceGUID(-1647677058); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_827 = new SequenceGUID(1152983950); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_828 = new SequenceGUID(312884920); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_829 = new SequenceGUID(-595899893); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_830 = new SequenceGUID(1370471193); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_831 = new SequenceGUID(14103223); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_832 = new SequenceGUID(-917767918); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_833 = new SequenceGUID(1365857661); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_834 = new SequenceGUID(-1108873129); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_835 = new SequenceGUID(-2102478105); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_836 = new SequenceGUID(-515337279); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_837 = new SequenceGUID(940908904); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_838 = new SequenceGUID(1351621246); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_839 = new SequenceGUID(984653438); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_840 = new SequenceGUID(-1485950144); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_841 = new SequenceGUID(-1240657360); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_842 = new SequenceGUID(2030295912); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_843 = new SequenceGUID(1174027891); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_844 = new SequenceGUID(774916121); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_845 = new SequenceGUID(-831591876); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_846 = new SequenceGUID(17746015); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_847 = new SequenceGUID(-608083313); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_848 = new SequenceGUID(-1427880233); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_849 = new SequenceGUID(-1429806173); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Secondary_Cast_3 = new SequenceGUID(2125434288); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_850 = new SequenceGUID(2077636272); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_851 = new SequenceGUID(-2063022085); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_852 = new SequenceGUID(-561911187); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_853 = new SequenceGUID(1182377535); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_854 = new SequenceGUID(1177707044); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_30 = new SequenceGUID(-368209868); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_855 = new SequenceGUID(-285678815); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_856 = new SequenceGUID(21806022); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_857 = new SequenceGUID(281641226); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_858 = new SequenceGUID(-986752592); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_859 = new SequenceGUID(215134964); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_860 = new SequenceGUID(-2143482301); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_861 = new SequenceGUID(1081689844); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_862 = new SequenceGUID(-2049268990); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_863 = new SequenceGUID(318800659); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_864 = new SequenceGUID(1054326042); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_865 = new SequenceGUID(-1026324513); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_866 = new SequenceGUID(-103508741); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_867 = new SequenceGUID(1563995701); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_868 = new SequenceGUID(-691786444); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_869 = new SequenceGUID(803247388); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_870 = new SequenceGUID(501495786); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_1 = new SequenceGUID(-2044360180); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_871 = new SequenceGUID(-488802632); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_872 = new SequenceGUID(873426184); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_873 = new SequenceGUID(-967895964); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_874 = new SequenceGUID(-1300286030); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_875 = new SequenceGUID(-1553282533); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_876 = new SequenceGUID(-542444663); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_877 = new SequenceGUID(-907836902); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_878 = new SequenceGUID(1423514543); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_879 = new SequenceGUID(-1319415419); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_880 = new SequenceGUID(-1561655674); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_881 = new SequenceGUID(-653142839); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_882 = new SequenceGUID(545430810); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_31 = new SequenceGUID(-1680488154); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_883 = new SequenceGUID(-1134381496); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_884 = new SequenceGUID(1141672960); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_885 = new SequenceGUID(1723356184); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_886 = new SequenceGUID(1459607946); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_32 = new SequenceGUID(-1398916594); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_887 = new SequenceGUID(2123560639); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_888 = new SequenceGUID(206016401); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_889 = new SequenceGUID(-1153777099); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_890 = new SequenceGUID(-159771415); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_891 = new SequenceGUID(878519248); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_892 = new SequenceGUID(-1904908634); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_893 = new SequenceGUID(1765771477); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_894 = new SequenceGUID(-2096619470); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_895 = new SequenceGUID(-359628271); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_896 = new SequenceGUID(1661489841); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_897 = new SequenceGUID(835791511); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY_5 = new SequenceGUID(-475873282); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_898 = new SequenceGUID(2009210027); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_899 = new SequenceGUID(440457010); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_900 = new SequenceGUID(242351034); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_901 = new SequenceGUID(1489643213); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_902 = new SequenceGUID(-697146476); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_903 = new SequenceGUID(-263861467); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_904 = new SequenceGUID(-844687791); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_905 = new SequenceGUID(-387437857); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_906 = new SequenceGUID(-1217177445); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_907 = new SequenceGUID(1521340531); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_908 = new SequenceGUID(1754784602); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_909 = new SequenceGUID(-1843298707); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_910 = new SequenceGUID(1269805791); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_911 = new SequenceGUID(-1537348321); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_912 = new SequenceGUID(1012676479); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_913 = new SequenceGUID(-1889689324); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_914 = new SequenceGUID(-64654927); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_915 = new SequenceGUID(1855786641); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_916 = new SequenceGUID(1112868472); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_917 = new SequenceGUID(-245338251); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_33 = new SequenceGUID(-2004929078); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_918 = new SequenceGUID(-102280226); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_919 = new SequenceGUID(-1311835747); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_920 = new SequenceGUID(-1764077496); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_921 = new SequenceGUID(978135636); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_922 = new SequenceGUID(198965844); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_923 = new SequenceGUID(44020500); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_924 = new SequenceGUID(376620751); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_925 = new SequenceGUID(125750299); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_926 = new SequenceGUID(993810320); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_927 = new SequenceGUID(-1158656479); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_928 = new SequenceGUID(474541114); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_929 = new SequenceGUID(736556576); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_930 = new SequenceGUID(-993166767); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_931 = new SequenceGUID(1291417247); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_932 = new SequenceGUID(-436242780); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_933 = new SequenceGUID(2045542458); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_34 = new SequenceGUID(993093195); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_934 = new SequenceGUID(-2087158627); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_7 = new SequenceGUID(-436867611); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_935 = new SequenceGUID(535287742); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_936 = new SequenceGUID(884654992); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_937 = new SequenceGUID(-1163215084); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_938 = new SequenceGUID(234011477); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_939 = new SequenceGUID(879362358); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_940 = new SequenceGUID(-241151271); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_941 = new SequenceGUID(-821886171); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_942 = new SequenceGUID(-1767699763); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_943 = new SequenceGUID(-240130011); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_944 = new SequenceGUID(-538567375); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_945 = new SequenceGUID(-1271245186); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_946 = new SequenceGUID(799430898); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_2 = new SequenceGUID(-952234279); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_947 = new SequenceGUID(691455677); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_948 = new SequenceGUID(-1017163228); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Attack_Cast_2 = new SequenceGUID(1286635382); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_949 = new SequenceGUID(1487319136); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_950 = new SequenceGUID(-406287399); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_8 = new SequenceGUID(-363988248); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_951 = new SequenceGUID(-321863064); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_952 = new SequenceGUID(-61774716); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_953 = new SequenceGUID(2035024654); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_954 = new SequenceGUID(-1541745082); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_955 = new SequenceGUID(-270016130); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_956 = new SequenceGUID(-454008163); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_957 = new SequenceGUID(85567570); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_9 = new SequenceGUID(2040350365); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_958 = new SequenceGUID(-1703492642); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_959 = new SequenceGUID(-1747530700); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_960 = new SequenceGUID(1066295073); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_961 = new SequenceGUID(-1201867887); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_962 = new SequenceGUID(453367397); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_963 = new SequenceGUID(-1252395891); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_964 = new SequenceGUID(1258925827); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_965 = new SequenceGUID(-55248650); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_966 = new SequenceGUID(291077815); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_967 = new SequenceGUID(-519272917); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_968 = new SequenceGUID(-1036347288); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_969 = new SequenceGUID(-582419928); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_970 = new SequenceGUID(-1561915607); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_971 = new SequenceGUID(-767111374); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_972 = new SequenceGUID(184327244); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_973 = new SequenceGUID(1447392292); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_974 = new SequenceGUID(-1864414640); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_975 = new SequenceGUID(-253926831); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_976 = new SequenceGUID(1614061578); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_977 = new SequenceGUID(985240034); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_978 = new SequenceGUID(-1746313779); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_979 = new SequenceGUID(-1223062217); public static readonly SequenceGUID SEQ_Paladin_Chargemelee = new SequenceGUID(504519967); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_980 = new SequenceGUID(-1004794907); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_981 = new SequenceGUID(-1704595815); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_982 = new SequenceGUID(-1418104357); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_983 = new SequenceGUID(-426659374); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_984 = new SequenceGUID(661407503); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_985 = new SequenceGUID(-1501169563); public static readonly SequenceGUID SEQ_Paladin_Dash_Cast_01 = new SequenceGUID(500413225); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_986 = new SequenceGUID(1503119476); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_987 = new SequenceGUID(1194365200); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_988 = new SequenceGUID(1784006217); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_989 = new SequenceGUID(-954818695); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_990 = new SequenceGUID(-2127481350); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_991 = new SequenceGUID(-1853413571); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_992 = new SequenceGUID(-1625523423); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_993 = new SequenceGUID(-2061748861); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_994 = new SequenceGUID(-455627768); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_995 = new SequenceGUID(-1384726166); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_996 = new SequenceGUID(1409750590); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_997 = new SequenceGUID(283469401); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_998 = new SequenceGUID(-964733243); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_999 = new SequenceGUID(-1310016877); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1000 = new SequenceGUID(-1350541729); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1001 = new SequenceGUID(-2135582432); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1002 = new SequenceGUID(1034866192); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1003 = new SequenceGUID(277757688); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1004 = new SequenceGUID(2044053459); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1005 = new SequenceGUID(1534277325); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1006 = new SequenceGUID(-574965517); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1007 = new SequenceGUID(1059992997); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1008 = new SequenceGUID(-610968589); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1009 = new SequenceGUID(-2020262262); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1010 = new SequenceGUID(-1043558910); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1011 = new SequenceGUID(-1072292049); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1012 = new SequenceGUID(399312719); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1013 = new SequenceGUID(388304445); public static readonly SequenceGUID SEQ_Shared_Vampire_Dash_10 = new SequenceGUID(-1616128993); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1014 = new SequenceGUID(1224958034); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1015 = new SequenceGUID(-823692243); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1016 = new SequenceGUID(54573788); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1017 = new SequenceGUID(-1382881165); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1018 = new SequenceGUID(-1834142805); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1019 = new SequenceGUID(-1431184245); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1020 = new SequenceGUID(-2101653341); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1021 = new SequenceGUID(363068650); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast_6 = new SequenceGUID(297534059); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1022 = new SequenceGUID(1064332659); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1023 = new SequenceGUID(-1636912600); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1024 = new SequenceGUID(-1931086088); public static readonly SequenceGUID SEQ_Shared_Roll_5 = new SequenceGUID(-1520398746); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1025 = new SequenceGUID(-715261204); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1026 = new SequenceGUID(1582258214); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1027 = new SequenceGUID(841142558); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1028 = new SequenceGUID(1417351776); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1029 = new SequenceGUID(-465257400); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1030 = new SequenceGUID(1620789324); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1031 = new SequenceGUID(-1728685429); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1032 = new SequenceGUID(1857338092); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1033 = new SequenceGUID(-629207204); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1034 = new SequenceGUID(-1399065810); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1035 = new SequenceGUID(-72907920); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1036 = new SequenceGUID(838715527); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1037 = new SequenceGUID(-1547057703); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1038 = new SequenceGUID(738555358); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1039 = new SequenceGUID(-1093432876); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1040 = new SequenceGUID(178888890); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1041 = new SequenceGUID(-132219147); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1042 = new SequenceGUID(-1702439230); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1043 = new SequenceGUID(1993952978); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1044 = new SequenceGUID(-1609240094); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1045 = new SequenceGUID(-162931613); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1046 = new SequenceGUID(761045896); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1047 = new SequenceGUID(-1766852623); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1048 = new SequenceGUID(2060910544); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1049 = new SequenceGUID(1465844165); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1050 = new SequenceGUID(1938025591); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1051 = new SequenceGUID(-1376463980); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1052 = new SequenceGUID(-1124151180); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1053 = new SequenceGUID(-1976956921); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1054 = new SequenceGUID(800836155); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1055 = new SequenceGUID(95733997); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1056 = new SequenceGUID(658275107); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1057 = new SequenceGUID(-1489806206); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1058 = new SequenceGUID(-518271454); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1059 = new SequenceGUID(-1901264763); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1060 = new SequenceGUID(712330234); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1061 = new SequenceGUID(1325655679); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1062 = new SequenceGUID(-470575587); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1063 = new SequenceGUID(-1058259623); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1064 = new SequenceGUID(1023132235); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1065 = new SequenceGUID(-1757490081); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1066 = new SequenceGUID(845624627); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1067 = new SequenceGUID(1799661979); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1068 = new SequenceGUID(492157069); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1069 = new SequenceGUID(1392610131); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Mounted_Cast_9 = new SequenceGUID(-571314249); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1070 = new SequenceGUID(-284509556); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1071 = new SequenceGUID(311046880); public static readonly SequenceGUID SEQ_Shared_Leap_Cast = new SequenceGUID(1612669957); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1072 = new SequenceGUID(-1199830877); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1073 = new SequenceGUID(-946557567); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1074 = new SequenceGUID(1472561995); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1075 = new SequenceGUID(-1861620991); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1076 = new SequenceGUID(-745817600); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1077 = new SequenceGUID(834604440); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1078 = new SequenceGUID(2037887809); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1079 = new SequenceGUID(1955356603); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1080 = new SequenceGUID(-972951878); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1081 = new SequenceGUID(-822927207); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1082 = new SequenceGUID(422265668); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1083 = new SequenceGUID(551396387); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1084 = new SequenceGUID(1420755773); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1085 = new SequenceGUID(1225985667); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1086 = new SequenceGUID(1627936553); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1087 = new SequenceGUID(-282077154); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1088 = new SequenceGUID(623277807); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1089 = new SequenceGUID(592442036); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1090 = new SequenceGUID(-655330801); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1091 = new SequenceGUID(-503772413); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Cast_7 = new SequenceGUID(-1550447894); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1092 = new SequenceGUID(2044347821); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1093 = new SequenceGUID(1048675702); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1094 = new SequenceGUID(1067119553); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1095 = new SequenceGUID(359483372); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T2_Active_FillLevels = new SequenceGUID(-616228601); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T2_Active_FillLevels_1 = new SequenceGUID(717768295); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T3_Active = new SequenceGUID(321156713); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T5_Active_FillLevels = new SequenceGUID(139111371); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T5_Active_FillLevels_1 = new SequenceGUID(-1805065162); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T5_Active_FillLevels_2 = new SequenceGUID(-416769233); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T5_Active = new SequenceGUID(-1657987523); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T4_Active_FillLevels = new SequenceGUID(1990904337); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T4_Active_FillLevels_1 = new SequenceGUID(-970066063); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T4_Active_FillLevels_2 = new SequenceGUID(1686758456); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T4_Active = new SequenceGUID(-1626311028); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T3_Active_FillLevels = new SequenceGUID(-263884748); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T3_Active_FillLevels_1 = new SequenceGUID(1558736030); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T3_Active_FillLevels_2 = new SequenceGUID(-2026608164); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T5_Active_FillLevels_3 = new SequenceGUID(62916781); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T2_Active_FillLevels_2 = new SequenceGUID(1959507006); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T2_Active = new SequenceGUID(-1695067154); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T1_Active_FillLevels = new SequenceGUID(-1740263849); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T1_Active_FillLevels_1 = new SequenceGUID(889319622); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T1_Active_FillLevels_2 = new SequenceGUID(126063620); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T1_Active = new SequenceGUID(663401072); public static readonly SequenceGUID SEQ_Shared_Material_Hit = new SequenceGUID(-2042365609); public static readonly SequenceGUID SEQ_InteractableVegetation_FailedHarvest = new SequenceGUID(-451622721); public static readonly SequenceGUID SEQ_Shared_Material_Hit_1 = new SequenceGUID(728792266); public static readonly SequenceGUID SEQ_InteractableVegetation_FailedHarvest_1 = new SequenceGUID(694741325); public static readonly SequenceGUID SEQ_InteractableVegetation_FailedHarvest_2 = new SequenceGUID(327198118); public static readonly SequenceGUID SEQ_Shared_Material_Hit_2 = new SequenceGUID(-784859877); public static readonly SequenceGUID SEQ_Shared_Material_Hit_3 = new SequenceGUID(-1710827012); public static readonly SequenceGUID SEQ_Shared_Material_Hit_4 = new SequenceGUID(-566381382); public static readonly SequenceGUID SEQ_Gathering_Wood = new SequenceGUID(-834075926); public static readonly SequenceGUID SEQ_Shared_Material_Hit_5 = new SequenceGUID(-288201061); public static readonly SequenceGUID SEQ_Gathering_Stone = new SequenceGUID(-1338181542); public static readonly SequenceGUID SEQ_Flesh_Material_Hit = new SequenceGUID(1520509618); public static readonly SequenceGUID SEQ_Shared_Material_Hit_6 = new SequenceGUID(197932055); public static readonly SequenceGUID SEQ_Shared_Material_Hit_7 = new SequenceGUID(-2056486714); public static readonly SequenceGUID SEQ_Shared_Material_Hit_8 = new SequenceGUID(-1993928016); public static readonly SequenceGUID SEQ_InteractableVegetation_FailedHarvest_3 = new SequenceGUID(699055268); public static readonly SequenceGUID SEQ_Shared_Material_Hit_9 = new SequenceGUID(1400176259); public static readonly SequenceGUID SEQ_Shared_Material_Hit_10 = new SequenceGUID(1584403779); public static readonly SequenceGUID SEQ_Shared_Material_Hit_11 = new SequenceGUID(-1968823902); public static readonly SequenceGUID SEQ_Gathering_Wood_1 = new SequenceGUID(1316709235); public static readonly SequenceGUID SEQ_Shared_Material_Hit_12 = new SequenceGUID(649806669); public static readonly SequenceGUID SEQ_Gathering_Stone_1 = new SequenceGUID(839450799); public static readonly SequenceGUID SEQ_Flesh_Material_Hit_1 = new SequenceGUID(336545593); public static readonly SequenceGUID SEQ_Shared_Material_Hit_13 = new SequenceGUID(1288112277); public static readonly SequenceGUID SEQ_Shared_Material_Hit_14 = new SequenceGUID(48387604); public static readonly SequenceGUID SEQ_Shared_Material_Hit_15 = new SequenceGUID(-1415019258); public static readonly SequenceGUID SEQ_Shared_Material_Hit_16 = new SequenceGUID(1511766743); public static readonly SequenceGUID SEQ_Shared_Material_Hit_17 = new SequenceGUID(-1479067164); public static readonly SequenceGUID SEQ_Shared_Material_Hit_18 = new SequenceGUID(765206320); public static readonly SequenceGUID SEQ_Shared_Material_Hit_19 = new SequenceGUID(-1058372797); public static readonly SequenceGUID SEQ_Shared_Material_Hit_20 = new SequenceGUID(-183918468); public static readonly SequenceGUID SEQ_Shared_Material_Hit_21 = new SequenceGUID(-1676338578); public static readonly SequenceGUID SEQ_Shared_Material_Hit_22 = new SequenceGUID(-1274669862); public static readonly SequenceGUID SEQ_Shared_Material_Hit_23 = new SequenceGUID(481050059); public static readonly SequenceGUID SEQ_Shared_Area_Impact_7 = new SequenceGUID(1530219762); public static readonly SequenceGUID SEQ_Shared_Hit_2 = new SequenceGUID(1893082353); public static readonly SequenceGUID SEQ_Shared_Area_Impact_8 = new SequenceGUID(1136165824); public static readonly SequenceGUID SEQ_Shared_Hit_3 = new SequenceGUID(-1530594944); public static readonly SequenceGUID SEQ_Shared_Area_Impact_9 = new SequenceGUID(-771809416); public static readonly SequenceGUID SEQ_Shared_Hit_4 = new SequenceGUID(-1513964312); public static readonly SequenceGUID SEQ_Shared_Trigger_18 = new SequenceGUID(71588991); public static readonly SequenceGUID SEQ_Shared_Trigger_19 = new SequenceGUID(-629343326); public static readonly SequenceGUID SEQ_Shared_Trigger_20 = new SequenceGUID(473769887); public static readonly SequenceGUID SEQ_Shared_Trigger_21 = new SequenceGUID(271343665); public static readonly SequenceGUID SEQ_Shared_Trigger_22 = new SequenceGUID(1441263345); public static readonly SequenceGUID SEQ_Shared_Trigger_23 = new SequenceGUID(-1837962); public static readonly SequenceGUID SEQ_Shared_Projectile_2 = new SequenceGUID(681930869); public static readonly SequenceGUID SEQ_Shared_Area_Impact_10 = new SequenceGUID(1815194536); public static readonly SequenceGUID SEQ_Shared_Trigger_24 = new SequenceGUID(-1231896956); public static readonly SequenceGUID SEQ_Shared_Trigger_25 = new SequenceGUID(1668256891); public static readonly SequenceGUID SEQ_Shared_Hit_5 = new SequenceGUID(1329996088); public static readonly SequenceGUID SEQ_Shared_Trigger_26 = new SequenceGUID(528368573); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger = new SequenceGUID(120945800); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop = new SequenceGUID(1155543094); public static readonly SequenceGUID SEQ_Shared_Area_Effect_23 = new SequenceGUID(-1360259867); public static readonly SequenceGUID SEQ_Shared_Area_Impact_11 = new SequenceGUID(1633705066); public static readonly SequenceGUID SEQ_Shared_Continious_Area = new SequenceGUID(-1559436007); public static readonly SequenceGUID SEQ_Shared_Projectile_3 = new SequenceGUID(-123457473); public static readonly SequenceGUID SEQ_Shared_Trigger_27 = new SequenceGUID(-1574195062); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss = new SequenceGUID(410810079); public static readonly SequenceGUID SEQ_Shared_Trigger_28 = new SequenceGUID(-134989633); public static readonly SequenceGUID SEQ_Shared_Area_Effect_24 = new SequenceGUID(-2123960669); public static readonly SequenceGUID SEQ_Shared_Hit_6 = new SequenceGUID(-1093921912); public static readonly SequenceGUID SEQ_Shared_Area_Impact_12 = new SequenceGUID(-310051701); public static readonly SequenceGUID SEQ_Shared_Hit_7 = new SequenceGUID(-1488932339); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_1 = new SequenceGUID(-741635057); public static readonly SequenceGUID SEQ_Shared_Hit_8 = new SequenceGUID(-931989431); public static readonly SequenceGUID SEQ_Shared_Projectile_4 = new SequenceGUID(-1965641457); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_2 = new SequenceGUID(-1046508406); public static readonly SequenceGUID SEQ_Shared_Hit_9 = new SequenceGUID(70648139); public static readonly SequenceGUID SEQ_Shared_Projectile_5 = new SequenceGUID(1047195636); public static readonly SequenceGUID SEQ_Shared_Area_Impact_13 = new SequenceGUID(1403116112); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_3 = new SequenceGUID(1388183784); public static readonly SequenceGUID SEQ_Shared_Projectile_6 = new SequenceGUID(529438831); public static readonly SequenceGUID SEQ_Shared_Trigger_29 = new SequenceGUID(492599667); public static readonly SequenceGUID SEQ_Shared_Hit_10 = new SequenceGUID(-1179621125); public static readonly SequenceGUID SEQ_Shared_Projectile_7 = new SequenceGUID(1478611040); public static readonly SequenceGUID SEQ_Shared_Trigger_30 = new SequenceGUID(-1536455952); public static readonly SequenceGUID SEQ_Shared_Trigger_31 = new SequenceGUID(1610972411); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_4 = new SequenceGUID(-987933103); public static readonly SequenceGUID SEQ_Shared_Hit_11 = new SequenceGUID(649707622); public static readonly SequenceGUID SEQ_Shared_Projectile_8 = new SequenceGUID(-276677108); public static readonly SequenceGUID SEQ_Shared_Area_Impact_14 = new SequenceGUID(533199457); public static readonly SequenceGUID SEQ_Shared_Area_Impact_15 = new SequenceGUID(-1585704692); public static readonly SequenceGUID SEQ_Shared_Hit_12 = new SequenceGUID(-1179062658); public static readonly SequenceGUID SEQ_Shared_Trigger_32 = new SequenceGUID(656066341); public static readonly SequenceGUID SEQ_Shared_Projectile_9 = new SequenceGUID(-350915349); public static readonly SequenceGUID SEQ_Shared_Projectile_10 = new SequenceGUID(275416449); public static readonly SequenceGUID SEQ_Shared_Hit_13 = new SequenceGUID(2067733256); public static readonly SequenceGUID SEQ_Shared_Area_Effect_25 = new SequenceGUID(-650270638); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1096 = new SequenceGUID(-1486976449); public static readonly SequenceGUID SEQ_Shared_Trigger_33 = new SequenceGUID(134323480); public static readonly SequenceGUID SEQ_Shared_Object_Hit_68 = new SequenceGUID(-736489258); public static readonly SequenceGUID SEQ_Shared_Area_Impact_16 = new SequenceGUID(-1847631277); public static readonly SequenceGUID SEQ_Shared_Object_Hit_69 = new SequenceGUID(1255964681); public static readonly SequenceGUID SEQ_Shared_Area_Impact_17 = new SequenceGUID(-1910106069); public static readonly SequenceGUID SEQ_Shared_Area_Impact_18 = new SequenceGUID(1929584548); public static readonly SequenceGUID SEQ_Shared_Area_Effect_26 = new SequenceGUID(594910692); public static readonly SequenceGUID SEQ_Shared_Area_Impact_19 = new SequenceGUID(-330527503); public static readonly SequenceGUID SEQ_Shared_Area_Impact_20 = new SequenceGUID(-481611082); public static readonly SequenceGUID SEQ_Shared_Hit_14 = new SequenceGUID(-1039600503); public static readonly SequenceGUID SEQ_Shared_Area_Effect_27 = new SequenceGUID(1549954310); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_5 = new SequenceGUID(-1493666312); public static readonly SequenceGUID SEQ_Shared_Hit_15 = new SequenceGUID(-935639457); public static readonly SequenceGUID SEQ_Shared_Projectile_11 = new SequenceGUID(-598085849); public static readonly SequenceGUID SEQ_Shared_Area_Impact_21 = new SequenceGUID(-786843743); public static readonly SequenceGUID SEQ_Shared_Hit_16 = new SequenceGUID(-1295629449); public static readonly SequenceGUID SEQ_Shared_Trigger_34 = new SequenceGUID(-376926201); public static readonly SequenceGUID SEQ_Shared_Trigger_35 = new SequenceGUID(-1810582374); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_6 = new SequenceGUID(965922946); public static readonly SequenceGUID SEQ_Shared_Hit_17 = new SequenceGUID(-119685109); public static readonly SequenceGUID SEQ_Shared_Projectile_12 = new SequenceGUID(536291731); public static readonly SequenceGUID SEQ_Shared_Hit_18 = new SequenceGUID(-1863471744); public static readonly SequenceGUID SEQ_Shared_Area_Impact_22 = new SequenceGUID(435211593); public static readonly SequenceGUID SEQ_Shared_Area_Impact_23 = new SequenceGUID(2055973055); public static readonly SequenceGUID SEQ_Shared_Hit_19 = new SequenceGUID(-687769456); public static readonly SequenceGUID SEQ_Shared_Hit_20 = new SequenceGUID(1826746847); public static readonly SequenceGUID SEQ_Shared_Hit_21 = new SequenceGUID(693129128); public static readonly SequenceGUID SEQ_Shared_Projectile_13 = new SequenceGUID(-353826341); public static readonly SequenceGUID SEQ_Shared_Projectile_14 = new SequenceGUID(-95292640); public static readonly SequenceGUID SEQ_Shared_Area_Impact_24 = new SequenceGUID(1041767806); public static readonly SequenceGUID SEQ_Shared_Hit_22 = new SequenceGUID(-706218554); public static readonly SequenceGUID SEQ_Shared_Trigger_36 = new SequenceGUID(1772507088); public static readonly SequenceGUID SEQ_Shared_Area_Impact_25 = new SequenceGUID(436130798); public static readonly SequenceGUID SEQ_Shared_Hit_23 = new SequenceGUID(-665818367); public static readonly SequenceGUID SEQ_Shared_Hit_24 = new SequenceGUID(-1492461399); public static readonly SequenceGUID SEQ_Shared_Hit_25 = new SequenceGUID(1760095562); public static readonly SequenceGUID SEQ_Shared_Hit_26 = new SequenceGUID(308866378); public static readonly SequenceGUID SEQ_Shared_Hit_27 = new SequenceGUID(-797668976); public static readonly SequenceGUID SEQ_Chaos_Barrage_Projectile_Channel_01_Moving = new SequenceGUID(85369270); public static readonly SequenceGUID SEQ_Shared_Hit_28 = new SequenceGUID(-624402587); public static readonly SequenceGUID SEQ_Shared_Projectile_15 = new SequenceGUID(145159771); public static readonly SequenceGUID SEQ_Shared_Hit_29 = new SequenceGUID(1760194296); public static readonly SequenceGUID SEQ_Shared_Hit_30 = new SequenceGUID(-711589508); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_7 = new SequenceGUID(-928497507); public static readonly SequenceGUID SEQ_Shared_Projectile_16 = new SequenceGUID(-843246310); public static readonly SequenceGUID SEQ_Shared_Hit_31 = new SequenceGUID(-2116287721); public static readonly SequenceGUID SEQ_Shared_Projectile_17 = new SequenceGUID(-355424160); public static readonly SequenceGUID SEQ_Shared_Projectile_18 = new SequenceGUID(942611726); public static readonly SequenceGUID SEQ_Shared_Area_Impact_26 = new SequenceGUID(-240399170); public static readonly SequenceGUID SEQ_Shared_Hit_32 = new SequenceGUID(2125145569); public static readonly SequenceGUID SEQ_Shared_Area_Impact_27 = new SequenceGUID(-1318414765); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_8 = new SequenceGUID(2120196340); public static readonly SequenceGUID SEQ_Shared_Hit_33 = new SequenceGUID(1365247156); public static readonly SequenceGUID SEQ_Shared_Projectile_19 = new SequenceGUID(1227712016); public static readonly SequenceGUID SEQ_Shared_Hit_34 = new SequenceGUID(514281738); public static readonly SequenceGUID SEQ_Shared_Projectile_20 = new SequenceGUID(1293675688); public static readonly SequenceGUID SEQ_Shared_Hit_35 = new SequenceGUID(-2119717010); public static readonly SequenceGUID SEQ_Shared_Hit_36 = new SequenceGUID(-56444990); public static readonly SequenceGUID SEQ_Shared_Trigger_37 = new SequenceGUID(-127808020); public static readonly SequenceGUID SEQ_Shared_Projectile_21 = new SequenceGUID(327693344); public static readonly SequenceGUID SEQ_Shared_Trigger_38 = new SequenceGUID(-2095023871); public static readonly SequenceGUID SEQ_Shared_Hit_37 = new SequenceGUID(952900268); public static readonly SequenceGUID SEQ_Shared_Trigger_39 = new SequenceGUID(1482416128); public static readonly SequenceGUID SEQ_Shared_Trigger_40 = new SequenceGUID(1856154914); public static readonly SequenceGUID SEQ_Shared_Area_Impact_28 = new SequenceGUID(-1631634301); public static readonly SequenceGUID SEQ_Shared_Area_Impact_29 = new SequenceGUID(1618091550); public static readonly SequenceGUID SEQ_Shared_Hit_38 = new SequenceGUID(1614208671); public static readonly SequenceGUID SEQ_Shared_Trigger_41 = new SequenceGUID(1080631827); public static readonly SequenceGUID SEQ_Shared_Hit_39 = new SequenceGUID(2033519929); public static readonly SequenceGUID SEQ_Shared_Hit_40 = new SequenceGUID(-698162621); public static readonly SequenceGUID SEQ_Shared_Trigger_42 = new SequenceGUID(-59835316); public static readonly SequenceGUID SEQ_Shared_Trigger_43 = new SequenceGUID(2087648332); public static readonly SequenceGUID SEQ_Shared_Hit_41 = new SequenceGUID(-1544584001); public static readonly SequenceGUID SEQ_Shared_Hit_42 = new SequenceGUID(-160057143); public static readonly SequenceGUID SEQ_Shared_Hit_43 = new SequenceGUID(1007461495); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_9 = new SequenceGUID(-299471782); public static readonly SequenceGUID SEQ_Shared_Projectile_22 = new SequenceGUID(-176374477); public static readonly SequenceGUID SEQ_Shared_Hit_44 = new SequenceGUID(-333815152); public static readonly SequenceGUID SEQ_Shared_Projectile_23 = new SequenceGUID(-921714380); public static readonly SequenceGUID SEQ_Shared_Area_Impact_30 = new SequenceGUID(-307471262); public static readonly SequenceGUID SEQ_Shared_Area_Effect_28 = new SequenceGUID(405254903); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_10 = new SequenceGUID(-735663882); public static readonly SequenceGUID SEQ_Shared_Hit_45 = new SequenceGUID(999753152); public static readonly SequenceGUID SEQ_Shared_Hit_46 = new SequenceGUID(1237580971); public static readonly SequenceGUID SEQ_Shared_Area_Ground_4 = new SequenceGUID(1069019048); public static readonly SequenceGUID SEQ_Shared_Area_Impact_31 = new SequenceGUID(-1966529242); public static readonly SequenceGUID SEQ_Vampire_Interact_GetInside_Travel = new SequenceGUID(330063276); public static readonly SequenceGUID SEQ_Shared_Hit_47 = new SequenceGUID(-1105440221); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_11 = new SequenceGUID(-2116516480); public static readonly SequenceGUID SEQ_Shared_Hit_48 = new SequenceGUID(340308323); public static readonly SequenceGUID SEQ_Shared_Projectile_24 = new SequenceGUID(522129164); public static readonly SequenceGUID SEQ_Shared_Area_Impact_32 = new SequenceGUID(2147322849); public static readonly SequenceGUID SEQ_Shared_Hit_49 = new SequenceGUID(-121507506); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_12 = new SequenceGUID(1218353711); public static readonly SequenceGUID SEQ_Shared_Hit_50 = new SequenceGUID(-956199941); public static readonly SequenceGUID SEQ_Shared_Projectile_25 = new SequenceGUID(-1084171601); public static readonly SequenceGUID SEQ_Shared_Area_Effect_29 = new SequenceGUID(1109027258); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1097 = new SequenceGUID(-1299526167); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1098 = new SequenceGUID(1656101179); public static readonly SequenceGUID SEQ_Shared_Hit_51 = new SequenceGUID(-1844298716); public static readonly SequenceGUID SEQ_Shared_Area_Impact_33 = new SequenceGUID(1677154087); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_13 = new SequenceGUID(1958589360); public static readonly SequenceGUID SEQ_Shared_Hit_52 = new SequenceGUID(241462272); public static readonly SequenceGUID SEQ_Shared_Projectile_26 = new SequenceGUID(-2096313487); public static readonly SequenceGUID SEQ_Shared_Trigger_44 = new SequenceGUID(1899281522); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_14 = new SequenceGUID(-1933947620); public static readonly SequenceGUID SEQ_Shared_Hit_53 = new SequenceGUID(3104968); public static readonly SequenceGUID SEQ_Shared_Projectile_27 = new SequenceGUID(1465582579); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_15 = new SequenceGUID(223849044); public static readonly SequenceGUID SEQ_Shared_Projectile_28 = new SequenceGUID(-648150530); public static readonly SequenceGUID SEQ_Shared_Hit_54 = new SequenceGUID(319977629); public static readonly SequenceGUID SEQ_Shared_Hit_55 = new SequenceGUID(-641663367); public static readonly SequenceGUID SEQ_Shared_Trigger_45 = new SequenceGUID(473839926); public static readonly SequenceGUID SEQ_Shared_Hit_56 = new SequenceGUID(-320117247); public static readonly SequenceGUID SEQ_Shared_Hit_57 = new SequenceGUID(1101751809); public static readonly SequenceGUID SEQ_Shared_Area_Impact_34 = new SequenceGUID(-1374320174); public static readonly SequenceGUID SEQ_Shared_Hit_58 = new SequenceGUID(-242029779); public static readonly SequenceGUID SEQ_Shared_Trigger_46 = new SequenceGUID(-333866694); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_16 = new SequenceGUID(832254197); public static readonly SequenceGUID SEQ_Shared_Hit_59 = new SequenceGUID(1547025391); public static readonly SequenceGUID SEQ_Shared_Projectile_29 = new SequenceGUID(-878049528); public static readonly SequenceGUID SEQ_Shared_Area_Ground_5 = new SequenceGUID(-1283913168); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1099 = new SequenceGUID(33484621); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_17 = new SequenceGUID(-448572513); public static readonly SequenceGUID SEQ_Shared_Area_Impact_35 = new SequenceGUID(-1243794189); public static readonly SequenceGUID SEQ_Shared_Hit_60 = new SequenceGUID(2112811474); public static readonly SequenceGUID SEQ_Shared_Projectile_30 = new SequenceGUID(-2105578636); public static readonly SequenceGUID SEQ_Cardinal_Orb_Beam_Buff = new SequenceGUID(586432528); public static readonly SequenceGUID SEQ_Shared_Area_Effect_30 = new SequenceGUID(-454995332); public static readonly SequenceGUID SEQ_Shared_Hit_61 = new SequenceGUID(2004446520); public static readonly SequenceGUID SEQ_Shared_Area_Ground_6 = new SequenceGUID(-1174664063); public static readonly SequenceGUID SEQ_Shared_Area_Impact_36 = new SequenceGUID(1174520759); public static readonly SequenceGUID SEQ_Shared_Area_Impact_37 = new SequenceGUID(-1449432624); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_18 = new SequenceGUID(-1672665635); public static readonly SequenceGUID SEQ_Shared_Hit_62 = new SequenceGUID(1490400792); public static readonly SequenceGUID SEQ_Shared_Projectile_31 = new SequenceGUID(1670583016); public static readonly SequenceGUID SEQ_Shared_Area_Impact_38 = new SequenceGUID(1400751099); public static readonly SequenceGUID SEQ_Blind_Debuff_Placeholder = new SequenceGUID(-285827018); public static readonly SequenceGUID SEQ_Shared_Trigger_47 = new SequenceGUID(1801486739); public static readonly SequenceGUID SEQ_Shared_Area_Effect_31 = new SequenceGUID(-1499498122); public static readonly SequenceGUID SEQ_Shared_Hit_63 = new SequenceGUID(842280252); public static readonly SequenceGUID SEQ_Shared_Hit_64 = new SequenceGUID(-1763488451); public static readonly SequenceGUID SEQ_Shared_Area_Impact_39 = new SequenceGUID(1296748553); public static readonly SequenceGUID SEQ_Shared_Hit_65 = new SequenceGUID(584669946); public static readonly SequenceGUID SEQ_Shared_Area_Effect_32 = new SequenceGUID(1264571536); public static readonly SequenceGUID SEQ_Shared_Hit_66 = new SequenceGUID(1582470680); public static readonly SequenceGUID SEQ_Shared_Hit_67 = new SequenceGUID(264106412); public static readonly SequenceGUID SEQ_Shared_Area_Impact_40 = new SequenceGUID(-319887924); public static readonly SequenceGUID SEQ_Shared_Projectile_32 = new SequenceGUID(-1550162250); public static readonly SequenceGUID SEQ_Shared_Hit_68 = new SequenceGUID(-2141248165); public static readonly SequenceGUID SEQ_Shared_Hit_69 = new SequenceGUID(1651017047); public static readonly SequenceGUID SEQ_Shared_Hit_70 = new SequenceGUID(-920637276); public static readonly SequenceGUID SEQ_Shared_Hit_71 = new SequenceGUID(-638461538); public static readonly SequenceGUID SEQ_Shared_Hit_72 = new SequenceGUID(1061538404); public static readonly SequenceGUID SEQ_Shared_Trigger_48 = new SequenceGUID(399086471); public static readonly SequenceGUID SEQ_Shared_Continious_Area_1 = new SequenceGUID(1158929963); public static readonly SequenceGUID SEQ_Shared_Trigger_49 = new SequenceGUID(-239115204); public static readonly SequenceGUID SEQ_Shared_Trigger_50 = new SequenceGUID(1831884500); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel = new SequenceGUID(1243926232); public static readonly SequenceGUID SEQ_Shared_Area_Impact_41 = new SequenceGUID(1447626422); public static readonly SequenceGUID SEQ_Shared_Hit_73 = new SequenceGUID(-1054077242); public static readonly SequenceGUID SEQ_Shared_Area_Impact_42 = new SequenceGUID(1604991033); public static readonly SequenceGUID SEQ_Shared_Trigger_51 = new SequenceGUID(1886850966); public static readonly SequenceGUID SEQ_Shared_Area_Impact_43 = new SequenceGUID(-2083653527); public static readonly SequenceGUID SEQ_Shared_Area_Impact_44 = new SequenceGUID(-1307087517); public static readonly SequenceGUID SEQ_Shared_Hit_74 = new SequenceGUID(1445284348); public static readonly SequenceGUID SEQ_Shared_Trigger_52 = new SequenceGUID(-1446235092); public static readonly SequenceGUID SEQ_Shared_Area_Impact_45 = new SequenceGUID(-1438304113); public static readonly SequenceGUID SEQ_Shared_Hit_75 = new SequenceGUID(-1983889840); public static readonly SequenceGUID SEQ_Shared_Hit_76 = new SequenceGUID(-132220974); public static readonly SequenceGUID SEQ_Dracula_BloodSoul_Beam_Buff = new SequenceGUID(-1257453556); public static readonly SequenceGUID SEQ_Shared_Area_Impact_46 = new SequenceGUID(734928801); public static readonly SequenceGUID SEQ_Shared_Hit_77 = new SequenceGUID(2146939306); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_19 = new SequenceGUID(1149539071); public static readonly SequenceGUID SEQ_Shared_Hit_78 = new SequenceGUID(-1908851156); public static readonly SequenceGUID SEQ_Shared_Projectile_33 = new SequenceGUID(1831159582); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_20 = new SequenceGUID(281553673); public static readonly SequenceGUID SEQ_Shared_Hit_79 = new SequenceGUID(-355359017); public static readonly SequenceGUID SEQ_Shared_Hit_80 = new SequenceGUID(-292063698); public static readonly SequenceGUID SEQ_Shared_Projectile_34 = new SequenceGUID(-357661471); public static readonly SequenceGUID SEQ_Shared_Area_Impact_47 = new SequenceGUID(-1136987410); public static readonly SequenceGUID SEQ_Shared_Area_Effect_33 = new SequenceGUID(1858602472); public static readonly SequenceGUID SEQ_Shared_Area_Effect_34 = new SequenceGUID(-981908651); public static readonly SequenceGUID SEQ_Shared_Hit_81 = new SequenceGUID(668608670); public static readonly SequenceGUID SEQ_Shared_Projectile_35 = new SequenceGUID(1997079078); public static readonly SequenceGUID SEQ_Shared_Area_Impact_48 = new SequenceGUID(-1299825510); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_21 = new SequenceGUID(-1715624618); public static readonly SequenceGUID SEQ_Shared_Projectile_36 = new SequenceGUID(-322773512); public static readonly SequenceGUID SEQ_Shared_Area_Impact_49 = new SequenceGUID(-1918739804); public static readonly SequenceGUID SEQ_Shared_Area_Impact_50 = new SequenceGUID(228743844); public static readonly SequenceGUID SEQ_Shared_Area_Impact_51 = new SequenceGUID(1126759769); public static readonly SequenceGUID SEQ_Shared_Hit_82 = new SequenceGUID(1325017842); public static readonly SequenceGUID SEQ_Shared_Hit_83 = new SequenceGUID(-419651137); public static readonly SequenceGUID SEQ_Shared_Hit_84 = new SequenceGUID(-1609102402); public static readonly SequenceGUID SEQ_Shared_Area_Effect_35 = new SequenceGUID(-704459); public static readonly SequenceGUID SEQ_Shared_Trigger_53 = new SequenceGUID(-1740806028); public static readonly SequenceGUID SEQ_Shared_Trigger_54 = new SequenceGUID(-41945009); public static readonly SequenceGUID SEQ_Shared_Area_Effect_36 = new SequenceGUID(-1745327185); public static readonly SequenceGUID SEQ_Shared_Area_Impact_52 = new SequenceGUID(-16403681); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_22 = new SequenceGUID(1860339001); public static readonly SequenceGUID SEQ_Shared_Hit_85 = new SequenceGUID(-62138628); public static readonly SequenceGUID SEQ_Shared_Projectile_37 = new SequenceGUID(-1923866893); public static readonly SequenceGUID SEQ_Shared_Area_Impact_53 = new SequenceGUID(2107577595); public static readonly SequenceGUID SEQ_Shared_Hit_86 = new SequenceGUID(-2094459760); public static readonly SequenceGUID SEQ_Shared_Hit_87 = new SequenceGUID(-196530943); public static readonly SequenceGUID SEQ_Shared_Projectile_38 = new SequenceGUID(-1532619609); public static readonly SequenceGUID SEQ_Shared_Hit_88 = new SequenceGUID(889057332); public static readonly SequenceGUID SEQ_Shared_Hit_89 = new SequenceGUID(-1953687018); public static readonly SequenceGUID SEQ_Shared_Area_Impact_54 = new SequenceGUID(-1199361966); public static readonly SequenceGUID SEQ_Shared_Hit_90 = new SequenceGUID(-381742493); public static readonly SequenceGUID SEQ_Shared_Hit_91 = new SequenceGUID(-1574305085); public static readonly SequenceGUID SEQ_Shared_Trigger_55 = new SequenceGUID(-710130283); public static readonly SequenceGUID SEQ_Shared_Projectile_39 = new SequenceGUID(-968794281); public static readonly SequenceGUID SEQ_Shared_Projectile_40 = new SequenceGUID(100487431); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_23 = new SequenceGUID(16782323); public static readonly SequenceGUID SEQ_Shared_Hit_92 = new SequenceGUID(-600884229); public static readonly SequenceGUID SEQ_Shared_Projectile_41 = new SequenceGUID(-538849755); public static readonly SequenceGUID SEQ_Shared_Hit_93 = new SequenceGUID(126284243); public static readonly SequenceGUID SEQ_Shared_Hit_94 = new SequenceGUID(942694542); public static readonly SequenceGUID SEQ_Shared_Hit_95 = new SequenceGUID(1688891810); public static readonly SequenceGUID SEQ_Shared_Hit_96 = new SequenceGUID(277244934); public static readonly SequenceGUID SEQ_Shared_Area_Impact_55 = new SequenceGUID(-814305456); public static readonly SequenceGUID SEQ_Shared_Trigger_56 = new SequenceGUID(1294563775); public static readonly SequenceGUID SEQ_Shared_Trigger_57 = new SequenceGUID(-926131018); public static readonly SequenceGUID SEQ_Shared_Hit_97 = new SequenceGUID(-1107064979); public static readonly SequenceGUID SEQ_Shared_Area_Impact_56 = new SequenceGUID(900017256); public static readonly SequenceGUID SEQ_Shared_Trigger_58 = new SequenceGUID(-882642776); public static readonly SequenceGUID SEQ_Shared_Area_Impact_57 = new SequenceGUID(450146616); public static readonly SequenceGUID SEQ_Shared_Hit_98 = new SequenceGUID(1042812859); public static readonly SequenceGUID SEQ_Shared_Area_Impact_58 = new SequenceGUID(-2084719348); public static readonly SequenceGUID SEQ_Shared_Trigger_59 = new SequenceGUID(1785998169); public static readonly SequenceGUID SEQ_Shared_Area_Impact_59 = new SequenceGUID(-858130051); public static readonly SequenceGUID SEQ_Shared_Hit_99 = new SequenceGUID(1020503816); public static readonly SequenceGUID SEQ_Shared_Trigger_60 = new SequenceGUID(-593366787); public static readonly SequenceGUID SEQ_Shared_Hit_100 = new SequenceGUID(-1848015275); public static readonly SequenceGUID SEQ_Shared_Area_Impact_60 = new SequenceGUID(2135740750); public static readonly SequenceGUID SEQ_Shared_Hit_101 = new SequenceGUID(1708080799); public static readonly SequenceGUID SEQ_Shared_Projectile_42 = new SequenceGUID(1945555652); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_24 = new SequenceGUID(1431235713); public static readonly SequenceGUID SEQ_Shared_Projectile_43 = new SequenceGUID(-1129854763); public static readonly SequenceGUID SEQ_Shared_Hit_102 = new SequenceGUID(-1606367550); public static readonly SequenceGUID SEQ_Shared_Hit_103 = new SequenceGUID(1556094120); public static readonly SequenceGUID SEQ_Shared_Trigger_61 = new SequenceGUID(-1523275746); public static readonly SequenceGUID SEQ_Shared_Trigger_62 = new SequenceGUID(-1149919007); public static readonly SequenceGUID SEQ_Shared_Area_Impact_61 = new SequenceGUID(1385192181); public static readonly SequenceGUID SEQ_Shared_Hit_104 = new SequenceGUID(1427021661); public static readonly SequenceGUID SEQ_Shared_Hit_105 = new SequenceGUID(-1932141190); public static readonly SequenceGUID SEQ_Shared_Projectile_44 = new SequenceGUID(-662496192); public static readonly SequenceGUID SEQ_Shared_Hit_106 = new SequenceGUID(-1507493769); public static readonly SequenceGUID SEQ_Shared_Area_Impact_62 = new SequenceGUID(-1370751); public static readonly SequenceGUID SEQ_Shared_Trigger_63 = new SequenceGUID(2021889387); public static readonly SequenceGUID SEQ_Shared_Hit_107 = new SequenceGUID(-1525869448); public static readonly SequenceGUID SEQ_Shared_Projectile_45 = new SequenceGUID(-214941320); public static readonly SequenceGUID SEQ_Shared_Hit_108 = new SequenceGUID(1338013129); public static readonly SequenceGUID SEQ_Shared_Projectile_46 = new SequenceGUID(1334041335); public static readonly SequenceGUID SEQ_Shared_Area_Ground_7 = new SequenceGUID(1714033163); public static readonly SequenceGUID SEQ_Shared_Area_Impact_63 = new SequenceGUID(-1584915733); public static readonly SequenceGUID SEQ_Shared_Trigger_64 = new SequenceGUID(668246674); public static readonly SequenceGUID SEQ_Shared_Trigger_65 = new SequenceGUID(-659609927); public static readonly SequenceGUID SEQ_Shared_Trigger_66 = new SequenceGUID(-1446168383); public static readonly SequenceGUID SEQ_Shared_Trigger_67 = new SequenceGUID(73523486); public static readonly SequenceGUID SEQ_Shared_Area_Effect_37 = new SequenceGUID(-912113125); public static readonly SequenceGUID SEQ_Shared_Trigger_68 = new SequenceGUID(-1298378053); public static readonly SequenceGUID SEQ_WitheredVampire_Death = new SequenceGUID(858050427); public static readonly SequenceGUID SEQ_Shared_Hit_109 = new SequenceGUID(-635722451); public static readonly SequenceGUID SEQ_Shared_Trigger_69 = new SequenceGUID(396183470); public static readonly SequenceGUID SEQ_Shared_Hit_110 = new SequenceGUID(-1376571694); public static readonly SequenceGUID SEQ_Shared_Area_Effect_38 = new SequenceGUID(2065722205); public static readonly SequenceGUID SEQ_Shared_Area_Impact_64 = new SequenceGUID(-939675003); public static readonly SequenceGUID SEQ_Shared_Hit_111 = new SequenceGUID(1823706627); public static readonly SequenceGUID SEQ_Shared_Trigger_70 = new SequenceGUID(-560271066); public static readonly SequenceGUID SEQ_Shared_Trigger_71 = new SequenceGUID(-797066368); public static readonly SequenceGUID SEQ_Shared_Trigger_72 = new SequenceGUID(-787453741); public static readonly SequenceGUID SEQ_Shared_Trigger_73 = new SequenceGUID(889802797); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_25 = new SequenceGUID(180042015); public static readonly SequenceGUID SEQ_Shared_Hit_112 = new SequenceGUID(-570705383); public static readonly SequenceGUID SEQ_Shared_Projectile_47 = new SequenceGUID(-181660947); public static readonly SequenceGUID SEQ_Shared_Area_Impact_65 = new SequenceGUID(581047103); public static readonly SequenceGUID SEQ_Shared_Area_Effect_39 = new SequenceGUID(1969079929); public static readonly SequenceGUID SEQ_Shared_Hit_113 = new SequenceGUID(744040813); public static readonly SequenceGUID SEQ_Shared_Hit_114 = new SequenceGUID(-672442492); public static readonly SequenceGUID SEQ_Shared_Projectile_48 = new SequenceGUID(-200086740); public static readonly SequenceGUID SEQ_Shared_Object_Hit_70 = new SequenceGUID(-304044499); public static readonly SequenceGUID SEQ_Shared_Area_Impact_66 = new SequenceGUID(2125693220); public static readonly SequenceGUID SEQ_Shared_Trigger_74 = new SequenceGUID(-1845350791); public static readonly SequenceGUID SEQ_Shared_Trigger_75 = new SequenceGUID(-335962272); public static readonly SequenceGUID SEQ_Shared_Hit_115 = new SequenceGUID(-145755273); public static readonly SequenceGUID SEQ_Shared_Area_Impact_67 = new SequenceGUID(-738949010); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_26 = new SequenceGUID(1647273224); public static readonly SequenceGUID SEQ_Shared_Projectile_49 = new SequenceGUID(1385389796); public static readonly SequenceGUID SEQ_Shared_Hit_116 = new SequenceGUID(-637629608); public static readonly SequenceGUID SEQ_Shared_Projectile_50 = new SequenceGUID(-490751209); public static readonly SequenceGUID SEQ_Shared_Hit_117 = new SequenceGUID(54900616); public static readonly SequenceGUID SEQ_Shared_Hit_118 = new SequenceGUID(1476769672); public static readonly SequenceGUID SEQ_Shared_Trigger_76 = new SequenceGUID(185265709); public static readonly SequenceGUID SEQ_Shared_Area_Impact_68 = new SequenceGUID(-1865524192); public static readonly SequenceGUID SEQ_Shared_Area_Impact_69 = new SequenceGUID(-1783653142); public static readonly SequenceGUID SEQ_Shared_Projectile_51 = new SequenceGUID(-1506169106); public static readonly SequenceGUID SEQ_Shared_Area_Impact_70 = new SequenceGUID(1939668737); public static readonly SequenceGUID SEQ_Shared_Area_Impact_71 = new SequenceGUID(1187710942); public static readonly SequenceGUID SEQ_Shared_Hit_119 = new SequenceGUID(-1495228907); public static readonly SequenceGUID SEQ_Shared_Area_Impact_72 = new SequenceGUID(-2014235992); public static readonly SequenceGUID SEQ_Shared_Trigger_77 = new SequenceGUID(-826178848); public static readonly SequenceGUID SEQ_Shared_Hit_120 = new SequenceGUID(-918458435); public static readonly SequenceGUID SEQ_Shared_Hit_121 = new SequenceGUID(252369982); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_27 = new SequenceGUID(-1399067323); public static readonly SequenceGUID SEQ_Shared_Hit_122 = new SequenceGUID(293256954); public static readonly SequenceGUID SEQ_Shared_Projectile_52 = new SequenceGUID(-1112638947); public static readonly SequenceGUID SEQ_Shared_Trigger_78 = new SequenceGUID(-740988051); public static readonly SequenceGUID SEQ_Shared_Projectile_53 = new SequenceGUID(-367807614); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_28 = new SequenceGUID(-1098839926); public static readonly SequenceGUID SEQ_Shared_Hit_123 = new SequenceGUID(1650109332); public static readonly SequenceGUID SEQ_Shared_Projectile_54 = new SequenceGUID(1221560932); public static readonly SequenceGUID SEQ_Shared_Hit_124 = new SequenceGUID(1217020459); public static readonly SequenceGUID SEQ_Shared_Hit_125 = new SequenceGUID(1348668019); public static readonly SequenceGUID SEQ_Shared_GateBoss = new SequenceGUID(169974422); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_29 = new SequenceGUID(1776754283); public static readonly SequenceGUID SEQ_Shared_Hit_126 = new SequenceGUID(1192672058); public static readonly SequenceGUID SEQ_Shared_Projectile_55 = new SequenceGUID(1575537816); public static readonly SequenceGUID SEQ_Shared_Area_Impact_73 = new SequenceGUID(110304475); public static readonly SequenceGUID SEQ_Shared_Area_Impact_74 = new SequenceGUID(1894061612); public static readonly SequenceGUID SEQ_Shared_Area_Impact_75 = new SequenceGUID(-1912809189); public static readonly SequenceGUID SEQ_Shared_Area_Impact_76 = new SequenceGUID(324266480); public static readonly SequenceGUID SEQ_Shared_Hit_127 = new SequenceGUID(-1615265849); public static readonly SequenceGUID SEQ_Shared_Hit_128 = new SequenceGUID(621936619); public static readonly SequenceGUID SEQ_Shared_Hit_129 = new SequenceGUID(-1397927348); public static readonly SequenceGUID SEQ_Shared_Projectile_56 = new SequenceGUID(1029865000); public static readonly SequenceGUID SEQ_Shared_Area_Impact_77 = new SequenceGUID(755189299); public static readonly SequenceGUID SEQ_Shared_Area_Impact_78 = new SequenceGUID(1342265458); public static readonly SequenceGUID SEQ_Shared_Area_Impact_79 = new SequenceGUID(31846401); public static readonly SequenceGUID SEQ_Shared_Area_Effect_40 = new SequenceGUID(-1057875359); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_1 = new SequenceGUID(557703449); public static readonly SequenceGUID SEQ_Shared_Area_Impact_80 = new SequenceGUID(987339901); public static readonly SequenceGUID SEQ_Shared_Hit_130 = new SequenceGUID(1301382260); public static readonly SequenceGUID SEQ_Shared_AdvancedDeath = new SequenceGUID(1498540414); public static readonly SequenceGUID SEQ_Shared_Trigger_79 = new SequenceGUID(1215097227); public static readonly SequenceGUID SEQ_Shared_Area_Impact_81 = new SequenceGUID(-842665755); public static readonly SequenceGUID SEQ_Shared_Projectile_57 = new SequenceGUID(224110939); public static readonly SequenceGUID SEQ_Shared_Projectile_58 = new SequenceGUID(-1844787126); public static readonly SequenceGUID SEQ_Shared_Trigger_80 = new SequenceGUID(-810099132); public static readonly SequenceGUID SEQ_Shared_Trigger_81 = new SequenceGUID(-1503263349); public static readonly SequenceGUID SEQ_Shared_Area_Impact_82 = new SequenceGUID(-564218651); public static readonly SequenceGUID SEQ_Shared_Leap_End = new SequenceGUID(1447239968); public static readonly SequenceGUID SEQ_Shared_Area_Impact_83 = new SequenceGUID(-1994878611); public static readonly SequenceGUID SEQ_Shared_Hit_131 = new SequenceGUID(-943138517); public static readonly SequenceGUID SEQ_Shared_Projectile_59 = new SequenceGUID(-145133316); public static readonly SequenceGUID SEQ_Shared_Trigger_82 = new SequenceGUID(-1039832179); public static readonly SequenceGUID SEQ_Shared_Hit_132 = new SequenceGUID(491192554); public static readonly SequenceGUID SEQ_Shared_Projectile_60 = new SequenceGUID(-768063464); public static readonly SequenceGUID SEQ_Shared_Hit_133 = new SequenceGUID(-898556432); public static readonly SequenceGUID SEQ_Shared_Hit_134 = new SequenceGUID(995384720); public static readonly SequenceGUID SEQ_Shared_Area_Impact_84 = new SequenceGUID(-1540003013); public static readonly SequenceGUID SEQ_Shared_Hit_135 = new SequenceGUID(1369331762); public static readonly SequenceGUID SEQ_Shared_Hit_136 = new SequenceGUID(-1136511812); public static readonly SequenceGUID SEQ_Shared_Area_Impact_85 = new SequenceGUID(-2039221645); public static readonly SequenceGUID SEQ_Shared_Trigger_83 = new SequenceGUID(1323001808); public static readonly SequenceGUID SEQ_Shared_AdvancedDeath_1 = new SequenceGUID(1974082495); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_30 = new SequenceGUID(1048643722); public static readonly SequenceGUID SEQ_Shared_Projectile_61 = new SequenceGUID(-2058071377); public static readonly SequenceGUID SEQ_Shared_Hit_137 = new SequenceGUID(2126456650); public static readonly SequenceGUID SEQ_Shared_Area_Impact_86 = new SequenceGUID(-362420); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_2 = new SequenceGUID(2066080489); public static readonly SequenceGUID SEQ_Shared_Hit_138 = new SequenceGUID(716846149); public static readonly SequenceGUID SEQ_Shared_Projectile_62 = new SequenceGUID(-1934147409); public static readonly SequenceGUID SEQ_Shared_Hit_139 = new SequenceGUID(-1445863498); public static readonly SequenceGUID SEQ_Shared_Continious_Area_2 = new SequenceGUID(-1802224242); public static readonly SequenceGUID SEQ_Shared_Hit_140 = new SequenceGUID(76182879); public static readonly SequenceGUID SEQ_Shared_Hit_141 = new SequenceGUID(-2071300769); public static readonly SequenceGUID SEQ_Shared_Area_Impact_87 = new SequenceGUID(-1869602169); public static readonly SequenceGUID SEQ_Shared_Trigger_84 = new SequenceGUID(191278539); public static readonly SequenceGUID SEQ_Shared_Hit_142 = new SequenceGUID(388901531); public static readonly SequenceGUID SEQ_Shared_Hit_143 = new SequenceGUID(-1495592882); public static readonly SequenceGUID SEQ_Shared_Hit_144 = new SequenceGUID(12085657); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_31 = new SequenceGUID(-863115494); public static readonly SequenceGUID SEQ_Shared_Hit_145 = new SequenceGUID(725902099); public static readonly SequenceGUID SEQ_Shared_Hit_146 = new SequenceGUID(-686881521); public static readonly SequenceGUID SEQ_Shared_Projectile_63 = new SequenceGUID(-663344100); public static readonly SequenceGUID SEQ_Shared_Trigger_85 = new SequenceGUID(1338878126); public static readonly SequenceGUID SEQ_Shared_Warning_Circle = new SequenceGUID(-883663849); public static readonly SequenceGUID SEQ_Shared_Area_Effect_41 = new SequenceGUID(1493589923); public static readonly SequenceGUID SEQ_Shared_Area_Impact_88 = new SequenceGUID(1484068222); public static readonly SequenceGUID SEQ_Shared_Trigger_86 = new SequenceGUID(1364321206); public static readonly SequenceGUID SEQ_Shared_Trigger_87 = new SequenceGUID(208463295); public static readonly SequenceGUID SEQ_Shared_Hit_147 = new SequenceGUID(2038636741); public static readonly SequenceGUID SEQ_Shared_Hit_148 = new SequenceGUID(-5631728); public static readonly SequenceGUID SEQ_Shared_Hit_149 = new SequenceGUID(503650398); public static readonly SequenceGUID SEQ_Shared_Hit_150 = new SequenceGUID(-1354448932); public static readonly SequenceGUID SEQ_Shared_Projectile_64 = new SequenceGUID(-319510912); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_32 = new SequenceGUID(-470070688); public static readonly SequenceGUID SEQ_Shared_Hit_151 = new SequenceGUID(-1015623273); public static readonly SequenceGUID SEQ_Shared_Projectile_65 = new SequenceGUID(213310189); public static readonly SequenceGUID SEQ_Shared_Trigger_88 = new SequenceGUID(1866671181); public static readonly SequenceGUID SEQ_Shared_Buff_OUTDATED = new SequenceGUID(-1912377780); public static readonly SequenceGUID SEQ_Shared_Area_Impact_89 = new SequenceGUID(1490755266); public static readonly SequenceGUID SEQ_Shared_Area_Impact_90 = new SequenceGUID(1627030672); public static readonly SequenceGUID SEQ_Shared_Area_Impact_91 = new SequenceGUID(1062251633); public static readonly SequenceGUID SEQ_Shared_Hit_152 = new SequenceGUID(-977136686); public static readonly SequenceGUID SEQ_Shared_Hit_153 = new SequenceGUID(892091530); public static readonly SequenceGUID SEQ_Shared_Area_Effect_42 = new SequenceGUID(-2057491466); public static readonly SequenceGUID SEQ_Shared_Hit_154 = new SequenceGUID(62738220); public static readonly SequenceGUID SEQ_Shared_Area_Effect_43 = new SequenceGUID(-904487150); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_148 = new SequenceGUID(1392929025); public static readonly SequenceGUID SEQ_Shared_Trigger_89 = new SequenceGUID(-1142928655); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff = new SequenceGUID(1396855762); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_33 = new SequenceGUID(-1657987168); public static readonly SequenceGUID SEQ_Shared_Hit_155 = new SequenceGUID(-1193492861); public static readonly SequenceGUID SEQ_Shared_Projectile_66 = new SequenceGUID(-1626156281); public static readonly SequenceGUID SEQ_Shared_Object_Hit_71 = new SequenceGUID(-59035679); public static readonly SequenceGUID SEQ_Shared_Area_Impact_92 = new SequenceGUID(741124104); public static readonly SequenceGUID SEQ_Shared_Hit_156 = new SequenceGUID(-1707498032); public static readonly SequenceGUID SEQ_Shared_Trigger_90 = new SequenceGUID(-2119036664); public static readonly SequenceGUID SEQ_Shared_Hit_157 = new SequenceGUID(2081556748); public static readonly SequenceGUID SEQ_Shared_Trigger_91 = new SequenceGUID(-1212182650); public static readonly SequenceGUID SEQ_Shared_Area_Impact_93 = new SequenceGUID(-1527517551); public static readonly SequenceGUID SEQ_Shared_Hit_158 = new SequenceGUID(-477843346); public static readonly SequenceGUID SEQ_Shared_Trigger_92 = new SequenceGUID(2004786576); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_34 = new SequenceGUID(-2132007558); public static readonly SequenceGUID SEQ_Shared_Hit_159 = new SequenceGUID(2094768314); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_35 = new SequenceGUID(2102646623); public static readonly SequenceGUID SEQ_Shared_Projectile_67 = new SequenceGUID(1690875858); public static readonly SequenceGUID SEQ_Shared_Area_Impact_94 = new SequenceGUID(1141461416); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_36 = new SequenceGUID(391514356); public static readonly SequenceGUID SEQ_Shared_Hit_160 = new SequenceGUID(-538600660); public static readonly SequenceGUID SEQ_Shared_Projectile_68 = new SequenceGUID(-502584102); public static readonly SequenceGUID SEQ_Shared_Area_Impact_95 = new SequenceGUID(-161678813); public static readonly SequenceGUID SEQ_Shared_Hit_161 = new SequenceGUID(1355021483); public static readonly SequenceGUID SEQ_Shared_Hit_162 = new SequenceGUID(780838669); public static readonly SequenceGUID SEQ_Shared_Hit_163 = new SequenceGUID(940933197); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_37 = new SequenceGUID(775469146); public static readonly SequenceGUID SEQ_Shared_Hit_164 = new SequenceGUID(1353002186); public static readonly SequenceGUID SEQ_Shared_Projectile_69 = new SequenceGUID(-1634227672); public static readonly SequenceGUID SEQ_Shared_GateBoss_1 = new SequenceGUID(-1186254078); public static readonly SequenceGUID SEQ_Shared_Area_Effect_44 = new SequenceGUID(-959145668); public static readonly SequenceGUID SEQ_Shared_Hit_165 = new SequenceGUID(1249744572); public static readonly SequenceGUID SEQ_Shared_Area_Impact_96 = new SequenceGUID(183691701); public static readonly SequenceGUID SEQ_Shared_Projectile_70 = new SequenceGUID(-1993565299); public static readonly SequenceGUID SEQ_Shared_Projectile_71 = new SequenceGUID(-614073665); public static readonly SequenceGUID SEQ_Shared_Projectile_72 = new SequenceGUID(-47939760); public static readonly SequenceGUID SEQ_Shared_Object_Hit_72 = new SequenceGUID(-756685963); public static readonly SequenceGUID SEQ_Shared_Trigger_93 = new SequenceGUID(-591853511); public static readonly SequenceGUID SEQ_Shared_Hit_166 = new SequenceGUID(1295186417); public static readonly SequenceGUID SEQ_Shared_Hit_167 = new SequenceGUID(-2130770819); public static readonly SequenceGUID SEQ_Shared_Area_Impact_97 = new SequenceGUID(1673508125); public static readonly SequenceGUID SEQ_Shared_Area_Impact_98 = new SequenceGUID(107527518); public static readonly SequenceGUID SEQ_Shared_Hit_168 = new SequenceGUID(437595035); public static readonly SequenceGUID SEQ_Shared_Hit_169 = new SequenceGUID(-897972234); public static readonly SequenceGUID SEQ_Shared_Continious_Area_3 = new SequenceGUID(1975926962); public static readonly SequenceGUID SEQ_Shared_Hit_170 = new SequenceGUID(-1989748071); public static readonly SequenceGUID SEQ_Shared_Hit_171 = new SequenceGUID(-351560050); public static readonly SequenceGUID SEQ_Shared_Projectile_73 = new SequenceGUID(-135046155); public static readonly SequenceGUID SEQ_Shared_Area_Effect_45 = new SequenceGUID(-2019776597); public static readonly SequenceGUID SEQ_Shared_Hit_172 = new SequenceGUID(1901996707); public static readonly SequenceGUID SEQ_Shared_Area_Impact_99 = new SequenceGUID(-387843812); public static readonly SequenceGUID SEQ_Shared_Hit_173 = new SequenceGUID(-1622163015); public static readonly SequenceGUID SEQ_Unholy_Wither_Channel = new SequenceGUID(1954015475); public static readonly SequenceGUID SEQ_Shared_Trigger_94 = new SequenceGUID(-1927217031); public static readonly SequenceGUID SEQ_Shared_Trigger_95 = new SequenceGUID(181178404); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_149 = new SequenceGUID(-269804732); public static readonly SequenceGUID SEQ_Shared_Trigger_96 = new SequenceGUID(2139695650); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_38 = new SequenceGUID(-1621980835); public static readonly SequenceGUID SEQ_Shared_Projectile_74 = new SequenceGUID(1667611146); public static readonly SequenceGUID SEQ_Shared_Area_Impact_100 = new SequenceGUID(1464343275); public static readonly SequenceGUID SEQ_Shared_Hit_174 = new SequenceGUID(531890100); public static readonly SequenceGUID SEQ_Shared_Area_Impact_101 = new SequenceGUID(746709876); public static readonly SequenceGUID SEQ_Shared_Hit_175 = new SequenceGUID(1316049053); public static readonly SequenceGUID SEQ_Shared_Area_Impact_102 = new SequenceGUID(-293232098); public static readonly SequenceGUID SEQ_Shared_Hit_176 = new SequenceGUID(-1856172171); public static readonly SequenceGUID SEQ_Shared_Area_Impact_103 = new SequenceGUID(1639025143); public static readonly SequenceGUID SEQ_Shared_Trigger_97 = new SequenceGUID(231157382); public static readonly SequenceGUID SEQ_Shared_AdvancedDeath_2 = new SequenceGUID(-1790763425); public static readonly SequenceGUID SEQ_Shared_Area_Impact_104 = new SequenceGUID(-752646071); public static readonly SequenceGUID SEQ_Shared_Projectile_75 = new SequenceGUID(581576193); public static readonly SequenceGUID SEQ_Shared_Hit_177 = new SequenceGUID(-476072630); public static readonly SequenceGUID SEQ_Shared_Trigger_98 = new SequenceGUID(1734740798); public static readonly SequenceGUID SEQ_Shared_Hit_178 = new SequenceGUID(-856701298); public static readonly SequenceGUID SEQ_Shared_Hit_179 = new SequenceGUID(-141598839); public static readonly SequenceGUID SEQ_Shared_Hit_180 = new SequenceGUID(1472806818); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_39 = new SequenceGUID(-815192735); public static readonly SequenceGUID SEQ_Shared_Hit_181 = new SequenceGUID(-1886707881); public static readonly SequenceGUID SEQ_Shared_Projectile_76 = new SequenceGUID(-1806615252); public static readonly SequenceGUID SEQ_Shared_Hit_182 = new SequenceGUID(2042256591); public static readonly SequenceGUID SEQ_Shared_Hit_183 = new SequenceGUID(-2596681); public static readonly SequenceGUID SEQ_Shared_Hit_184 = new SequenceGUID(755589125); public static readonly SequenceGUID SEQ_Shared_Area_Impact_105 = new SequenceGUID(1283266183); public static readonly SequenceGUID SEQ_Shared_Projectile_77 = new SequenceGUID(407258967); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel_1 = new SequenceGUID(-989580954); public static readonly SequenceGUID SEQ_Shared_Hit_185 = new SequenceGUID(2115570844); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_40 = new SequenceGUID(655346337); public static readonly SequenceGUID SEQ_Shared_Hit_186 = new SequenceGUID(568343835); public static readonly SequenceGUID SEQ_ContestArena_ActiveFlag_Team03 = new SequenceGUID(1162281554); public static readonly SequenceGUID SEQ_Shared_Projectile_78 = new SequenceGUID(-162012178); public static readonly SequenceGUID SEQ_Shared_Area_Impact_106 = new SequenceGUID(1448257963); public static readonly SequenceGUID SEQ_Shared_Area_Impact_107 = new SequenceGUID(-913249938); public static readonly SequenceGUID SEQ_Shared_Hit_187 = new SequenceGUID(-2059727646); public static readonly SequenceGUID SEQ_Shared_Hit_188 = new SequenceGUID(-578973809); public static readonly SequenceGUID SEQ_Shared_Hit_189 = new SequenceGUID(1224113995); public static readonly SequenceGUID SEQ_Shared_Hit_190 = new SequenceGUID(1229875529); public static readonly SequenceGUID SEQ_Shared_Hit_191 = new SequenceGUID(135094603); public static readonly SequenceGUID SEQ_Shared_Hit_192 = new SequenceGUID(-1225389109); public static readonly SequenceGUID SEQ_Shared_Hit_193 = new SequenceGUID(-1054105954); public static readonly SequenceGUID SEQ_Shared_Hit_194 = new SequenceGUID(1630245523); public static readonly SequenceGUID SEQ_Shared_Area_Impact_108 = new SequenceGUID(-2053290015); public static readonly SequenceGUID SEQ_Shared_Area_Effect_46 = new SequenceGUID(570468545); public static readonly SequenceGUID SEQ_Shared_Hit_195 = new SequenceGUID(-86353488); public static readonly SequenceGUID SEQ_Shared_Hit_196 = new SequenceGUID(1671297298); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_41 = new SequenceGUID(1318818436); public static readonly SequenceGUID SEQ_Shared_Hit_197 = new SequenceGUID(27348528); public static readonly SequenceGUID SEQ_Shared_Projectile_79 = new SequenceGUID(-804503493); public static readonly SequenceGUID SEQ_Shared_Hit_198 = new SequenceGUID(369403771); public static readonly SequenceGUID SEQ_WormTerror_Emerge = new SequenceGUID(1350953977); public static readonly SequenceGUID SEQ_Shared_Area_Impact_109 = new SequenceGUID(-2047593101); public static readonly SequenceGUID SEQ_Shared_Hit_199 = new SequenceGUID(-1553787870); public static readonly SequenceGUID SEQ_Shared_Hit_200 = new SequenceGUID(1145717291); public static readonly SequenceGUID SEQ_Shared_Hit_201 = new SequenceGUID(58757242); public static readonly SequenceGUID SEQ_Shared_Trigger_99 = new SequenceGUID(1515126542); public static readonly SequenceGUID SEQ_Shared_Hit_202 = new SequenceGUID(1327250651); public static readonly SequenceGUID SEQ_Shared_Trigger_100 = new SequenceGUID(-1328526178); public static readonly SequenceGUID SEQ_Shared_Projectile_80 = new SequenceGUID(1318309825); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_42 = new SequenceGUID(1317390320); public static readonly SequenceGUID SEQ_Shared_Hit_203 = new SequenceGUID(1857491636); public static readonly SequenceGUID SEQ_Shared_Projectile_81 = new SequenceGUID(-710051891); public static readonly SequenceGUID SEQ_Shared_Area_Impact_110 = new SequenceGUID(-686790684); public static readonly SequenceGUID SEQ_Dracula_BloodSoul_Beam_Buff_1 = new SequenceGUID(673787425); public static readonly SequenceGUID SEQ_Shared_Hit_204 = new SequenceGUID(1577326819); public static readonly SequenceGUID SEQ_Shared_Continious_Area_4 = new SequenceGUID(2114786649); public static readonly SequenceGUID SEQ_Shared_Projectile_82 = new SequenceGUID(779865303); public static readonly SequenceGUID SEQ_Shared_Trigger_101 = new SequenceGUID(1606267015); public static readonly SequenceGUID SEQ_Shared_Hit_205 = new SequenceGUID(-113302180); public static readonly SequenceGUID SEQ_Shared_Projectile_83 = new SequenceGUID(1927038412); public static readonly SequenceGUID SEQ_Shared_Area_Impact_111 = new SequenceGUID(1446184658); public static readonly SequenceGUID SEQ_Shared_Trigger_102 = new SequenceGUID(-1736068949); public static readonly SequenceGUID SEQ_Shared_Hit_206 = new SequenceGUID(-1227192275); public static readonly SequenceGUID SEQ_Shared_Area_Impact_112 = new SequenceGUID(567659223); public static readonly SequenceGUID SEQ_Shared_Area_Impact_113 = new SequenceGUID(-246861984); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_43 = new SequenceGUID(140141315); public static readonly SequenceGUID SEQ_Shared_Hit_207 = new SequenceGUID(-375267417); public static readonly SequenceGUID SEQ_Shared_Projectile_84 = new SequenceGUID(1942321312); public static readonly SequenceGUID SEQ_Shared_Trigger_103 = new SequenceGUID(145527821); public static readonly SequenceGUID SEQ_Shared_Hit_208 = new SequenceGUID(1683449054); public static readonly SequenceGUID SEQ_Shared_Hit_209 = new SequenceGUID(1059443366); public static readonly SequenceGUID SEQ_Shared_Area_Impact_114 = new SequenceGUID(-2077345102); public static readonly SequenceGUID SEQ_Shared_Area_Impact_115 = new SequenceGUID(2007601945); public static readonly SequenceGUID SEQ_Shared_Area_Impact_116 = new SequenceGUID(-2039191026); public static readonly SequenceGUID SEQ_Shared_Hit_210 = new SequenceGUID(-582979860); public static readonly SequenceGUID SEQ_Shared_Area_Impact_117 = new SequenceGUID(-509391922); public static readonly SequenceGUID SEQ_Shared_Hit_211 = new SequenceGUID(107376550); public static readonly SequenceGUID SEQ_Shared_Area_Effect_47 = new SequenceGUID(1971089130); public static readonly SequenceGUID SEQ_Shared_Trigger_104 = new SequenceGUID(-1447755753); public static readonly SequenceGUID SEQ_Shared_Trigger_105 = new SequenceGUID(-1910520424); public static readonly SequenceGUID SEQ_Vampire_LowBlood = new SequenceGUID(1609706734); public static readonly SequenceGUID SEQ_Vampire_Death_1 = new SequenceGUID(-637200840); public static readonly SequenceGUID SEQ_SunDebuff_Cooldown = new SequenceGUID(473535352); public static readonly SequenceGUID SEQ_SunDebuff_BuildUpSunBeam_Shelt = new SequenceGUID(1978724218); public static readonly SequenceGUID SEQ_Shared_Hit_212 = new SequenceGUID(1903583568); public static readonly SequenceGUID SEQ_Shared_Trigger_106 = new SequenceGUID(418433006); public static readonly SequenceGUID SEQ_Shared_Hit_213 = new SequenceGUID(-1039953896); public static readonly SequenceGUID SEQ_Shared_Area_Impact_118 = new SequenceGUID(-1304273380); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_44 = new SequenceGUID(-2122067985); public static readonly SequenceGUID SEQ_Shared_Hit_214 = new SequenceGUID(-666079159); public static readonly SequenceGUID SEQ_Shared_Projectile_85 = new SequenceGUID(-1717226414); public static readonly SequenceGUID SEQ_Shared_Area_Impact_119 = new SequenceGUID(-128329850); public static readonly SequenceGUID SEQ_Shared_Hit_215 = new SequenceGUID(163727268); public static readonly SequenceGUID SEQ_Shared_Hit_216 = new SequenceGUID(-441825721); public static readonly SequenceGUID SEQ_Shared_Area_Effect_48 = new SequenceGUID(1757134623); public static readonly SequenceGUID SEQ_Shared_Hit_217 = new SequenceGUID(-1279356327); public static readonly SequenceGUID SEQ_Shared_Projectile_86 = new SequenceGUID(-2034593649); public static readonly SequenceGUID SEQ_Shared_Hit_218 = new SequenceGUID(-924913634); public static readonly SequenceGUID SEQ_Shared_Area_Impact_120 = new SequenceGUID(-2111562793); public static readonly SequenceGUID SEQ_Shared_Hit_219 = new SequenceGUID(910926544); public static readonly SequenceGUID SEQ_Shared_Projectile_87 = new SequenceGUID(1161421700); public static readonly SequenceGUID SEQ_Shared_Hit_220 = new SequenceGUID(-1757806391); public static readonly SequenceGUID SEQ_Shared_Projectile_88 = new SequenceGUID(395808786); public static readonly SequenceGUID SEQ_Shared_Hit_221 = new SequenceGUID(-758802476); public static readonly SequenceGUID SEQ_Shared_Projectile_89 = new SequenceGUID(1653312938); public static readonly SequenceGUID SEQ_Shared_Area_Impact_121 = new SequenceGUID(1330508417); public static readonly SequenceGUID SEQ_Shared_Area_Impact_122 = new SequenceGUID(-895885589); public static readonly SequenceGUID SEQ_Shared_Hit_222 = new SequenceGUID(421132440); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_45 = new SequenceGUID(1926494370); public static readonly SequenceGUID SEQ_Shared_Hit_223 = new SequenceGUID(-896447398); public static readonly SequenceGUID SEQ_Shared_Projectile_90 = new SequenceGUID(1346028277); public static readonly SequenceGUID SEQ_Shared_Buff_OUTDATED_1 = new SequenceGUID(977288230); public static readonly SequenceGUID SEQ_Beam_OwnerToSelf = new SequenceGUID(478358547); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_46 = new SequenceGUID(-913458188); public static readonly SequenceGUID SEQ_Shared_Hit_224 = new SequenceGUID(525830833); public static readonly SequenceGUID SEQ_Shared_Hit_225 = new SequenceGUID(968775513); public static readonly SequenceGUID SEQ_Shared_Trigger_107 = new SequenceGUID(-1510774152); public static readonly SequenceGUID SEQ_Shared_Hit_226 = new SequenceGUID(66785211); public static readonly SequenceGUID SEQ_Shared_Hit_227 = new SequenceGUID(-1878182924); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_47 = new SequenceGUID(1833146668); public static readonly SequenceGUID SEQ_Shared_Hit_228 = new SequenceGUID(359655097); public static readonly SequenceGUID SEQ_Shared_Projectile_91 = new SequenceGUID(1341939481); public static readonly SequenceGUID SEQ_Shared_Area_Impact_123 = new SequenceGUID(-1284825483); public static readonly SequenceGUID SEQ_Shared_GateBoss_2 = new SequenceGUID(-1525646729); public static readonly SequenceGUID SEQ_Shared_Hit_229 = new SequenceGUID(1457961004); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_48 = new SequenceGUID(477545942); public static readonly SequenceGUID SEQ_Shared_Hit_230 = new SequenceGUID(800345534); public static readonly SequenceGUID SEQ_Shared_Projectile_92 = new SequenceGUID(1088884073); public static readonly SequenceGUID SEQ_Shared_Hit_231 = new SequenceGUID(-550365629); public static readonly SequenceGUID SEQ_Shared_Hit_232 = new SequenceGUID(1915499986); public static readonly SequenceGUID SEQ_Shared_Hit_233 = new SequenceGUID(612848464); public static readonly SequenceGUID SEQ_Shared_Hit_234 = new SequenceGUID(-488706742); public static readonly SequenceGUID SEQ_Shared_Area_Impact_124 = new SequenceGUID(516376347); public static readonly SequenceGUID SEQ_ContestArena_LeavingArea = new SequenceGUID(1889810057); public static readonly SequenceGUID SEQ_Shared_Area_Effect_49 = new SequenceGUID(-693302141); public static readonly SequenceGUID SEQ_Shared_Object_Hit_73 = new SequenceGUID(1199300587); public static readonly SequenceGUID SEQ_Shared_Hit_235 = new SequenceGUID(-1241782242); public static readonly SequenceGUID SEQ_Shared_Trigger_108 = new SequenceGUID(-2138450094); public static readonly SequenceGUID SEQ_Shared_Area_Effect_50 = new SequenceGUID(-26073897); public static readonly SequenceGUID SEQ_Shared_Hit_236 = new SequenceGUID(1234815954); public static readonly SequenceGUID SEQ_Shared_Hit_237 = new SequenceGUID(-1708416453); public static readonly SequenceGUID SEQ_Shared_Hit_238 = new SequenceGUID(-243407592); public static readonly SequenceGUID SEQ_Shared_Hit_239 = new SequenceGUID(-1127556034); public static readonly SequenceGUID SEQ_Shared_Area_Impact_125 = new SequenceGUID(-1522655725); public static readonly SequenceGUID SEQ_Shared_Trigger_109 = new SequenceGUID(1932157180); public static readonly SequenceGUID SEQ_Shared_Trigger_110 = new SequenceGUID(-1891744587); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_49 = new SequenceGUID(-627888668); public static readonly SequenceGUID SEQ_Shared_Hit_240 = new SequenceGUID(2107341778); public static readonly SequenceGUID SEQ_Shared_Object_Hit_74 = new SequenceGUID(1728187487); public static readonly SequenceGUID SEQ_Shared_Hit_241 = new SequenceGUID(-564563238); public static readonly SequenceGUID SEQ_Shared_Projectile_93 = new SequenceGUID(-1034514281); public static readonly SequenceGUID SEQ_Shared_Trigger_111 = new SequenceGUID(781188471); public static readonly SequenceGUID SEQ_Shared_Projectile_94 = new SequenceGUID(-997199279); public static readonly SequenceGUID SEQ_Shared_Trigger_112 = new SequenceGUID(-1551258931); public static readonly SequenceGUID SEQ_Shared_Hit_242 = new SequenceGUID(-952988035); public static readonly SequenceGUID SEQ_Shared_Area_Impact_126 = new SequenceGUID(-114023891); public static readonly SequenceGUID SEQ_Shared_Hit_243 = new SequenceGUID(1947488301); public static readonly SequenceGUID SEQ_Shared_Projectile_95 = new SequenceGUID(2007161467); public static readonly SequenceGUID SEQ_Shared_Hit_244 = new SequenceGUID(-926019284); public static readonly SequenceGUID SEQ_Shared_Area_Impact_127 = new SequenceGUID(1215778580); public static readonly SequenceGUID SEQ_Shared_Hit_245 = new SequenceGUID(-1831804094); public static readonly SequenceGUID SEQ_Shared_Hit_246 = new SequenceGUID(768938474); public static readonly SequenceGUID SEQ_Shared_Area_Impact_128 = new SequenceGUID(1401882476); public static readonly SequenceGUID SEQ_Shared_Hit_247 = new SequenceGUID(512585729); public static readonly SequenceGUID SEQ_Shared_Hit_248 = new SequenceGUID(-1296966783); public static readonly SequenceGUID SEQ_Charm_Capture_Buff = new SequenceGUID(-499048842); public static readonly SequenceGUID SEQ_Shared_Hit_249 = new SequenceGUID(-443883454); public static readonly SequenceGUID SEQ_Shared_Hit_250 = new SequenceGUID(531430164); public static readonly SequenceGUID SEQ_Shared_Area_Impact_129 = new SequenceGUID(1214156149); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_1 = new SequenceGUID(-524869961); public static readonly SequenceGUID SEQ_Shared_Hit_251 = new SequenceGUID(-1516083729); public static readonly SequenceGUID SEQ_Shared_Hit_252 = new SequenceGUID(-972790048); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_50 = new SequenceGUID(-949976837); public static readonly SequenceGUID SEQ_Shared_Hit_253 = new SequenceGUID(-1182703675); public static readonly SequenceGUID SEQ_Shared_Projectile_96 = new SequenceGUID(-616584861); public static readonly SequenceGUID SEQ_Shared_Hit_254 = new SequenceGUID(-250047746); public static readonly SequenceGUID SEQ_Shared_Hit_255 = new SequenceGUID(-1255995201); public static readonly SequenceGUID SEQ_Shared_Hit_256 = new SequenceGUID(-1117583169); public static readonly SequenceGUID SEQ_Shared_Projectile_97 = new SequenceGUID(-1996820362); public static readonly SequenceGUID SEQ_Shared_Area_Impact_130 = new SequenceGUID(1944831163); public static readonly SequenceGUID SEQ_Shared_Hit_257 = new SequenceGUID(-174850960); public static readonly SequenceGUID SEQ_Shared_Hit_258 = new SequenceGUID(-1893253618); public static readonly SequenceGUID SEQ_Shared_Hit_259 = new SequenceGUID(-2075867715); public static readonly SequenceGUID SEQ_Shared_Area_Impact_131 = new SequenceGUID(-1450410682); public static readonly SequenceGUID SEQ_Shared_Area_Impact_132 = new SequenceGUID(-1569314369); public static readonly SequenceGUID SEQ_Shared_Area_Impact_133 = new SequenceGUID(813517286); public static readonly SequenceGUID SEQ_Shared_Hit_260 = new SequenceGUID(-67429527); public static readonly SequenceGUID SEQ_Shared_Area_Impact_134 = new SequenceGUID(234848213); public static readonly SequenceGUID SEQ_Shared_Hit_261 = new SequenceGUID(-2145711020); public static readonly SequenceGUID SEQ_Shared_Hit_262 = new SequenceGUID(580530611); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_51 = new SequenceGUID(-962533249); public static readonly SequenceGUID SEQ_Shared_Hit_263 = new SequenceGUID(-657392103); public static readonly SequenceGUID SEQ_Shared_Hit_264 = new SequenceGUID(-1458544135); public static readonly SequenceGUID SEQ_Shared_Hit_265 = new SequenceGUID(-2124303210); public static readonly SequenceGUID SEQ_Shared_Hit_266 = new SequenceGUID(275316231); public static readonly SequenceGUID SEQ_Shared_Hit_267 = new SequenceGUID(974913117); public static readonly SequenceGUID SEQ_Shared_Area_Impact_135 = new SequenceGUID(522796168); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_3 = new SequenceGUID(-1631055553); public static readonly SequenceGUID SEQ_Shared_Area_Impact_136 = new SequenceGUID(1447070679); public static readonly SequenceGUID SEQ_ContestArena_ActiveFlag_Team04 = new SequenceGUID(2054433658); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_52 = new SequenceGUID(-146409602); public static readonly SequenceGUID SEQ_Shared_Hit_268 = new SequenceGUID(-346315942); public static readonly SequenceGUID SEQ_Shared_Projectile_98 = new SequenceGUID(-1956270706); public static readonly SequenceGUID SEQ_Shared_Hit_269 = new SequenceGUID(-14813706); public static readonly SequenceGUID SEQ_Shared_Trigger_113 = new SequenceGUID(-347339402); public static readonly SequenceGUID SEQ_Shared_Hit_270 = new SequenceGUID(1029358865); public static readonly SequenceGUID SEQ_Shared_Projectile_99 = new SequenceGUID(2055262590); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_53 = new SequenceGUID(-1930064838); public static readonly SequenceGUID SEQ_Shared_Hit_271 = new SequenceGUID(1446556547); public static readonly SequenceGUID SEQ_Shared_Projectile_100 = new SequenceGUID(1171998299); public static readonly SequenceGUID SEQ_Shared_Trigger_114 = new SequenceGUID(-28479361); public static readonly SequenceGUID SEQ_Shared_Trigger_115 = new SequenceGUID(-664354113); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_54 = new SequenceGUID(1079221894); public static readonly SequenceGUID SEQ_Shared_Hit_272 = new SequenceGUID(11887644); public static readonly SequenceGUID SEQ_Shared_Projectile_101 = new SequenceGUID(1428620543); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_55 = new SequenceGUID(-526820649); public static readonly SequenceGUID SEQ_Shared_Hit_273 = new SequenceGUID(-2135052283); public static readonly SequenceGUID SEQ_Shared_Projectile_102 = new SequenceGUID(813109359); public static readonly SequenceGUID SEQ_Shared_Hit_274 = new SequenceGUID(1559031014); public static readonly SequenceGUID SEQ_Shared_Hit_275 = new SequenceGUID(-230124183); public static readonly SequenceGUID SEQ_Shared_Hit_276 = new SequenceGUID(-531090303); public static readonly SequenceGUID SEQ_Shared_Projectile_103 = new SequenceGUID(1876579774); public static readonly SequenceGUID SEQ_Shared_Unholy_Chains_Channel = new SequenceGUID(-1507123345); public static readonly SequenceGUID SEQ_Shared_Trigger_116 = new SequenceGUID(1391202272); public static readonly SequenceGUID SEQ_Shared_Trigger_117 = new SequenceGUID(-270414102); public static readonly SequenceGUID SEQ_Shared_Trigger_118 = new SequenceGUID(144405062); public static readonly SequenceGUID SEQ_Shared_Area_Impact_137 = new SequenceGUID(1923790265); public static readonly SequenceGUID SEQ_Shared_Area_Effect_51 = new SequenceGUID(1780556087); public static readonly SequenceGUID SEQ_Shared_Hit_277 = new SequenceGUID(-289598014); public static readonly SequenceGUID SEQ_Shared_Projectile_104 = new SequenceGUID(-425157549); public static readonly SequenceGUID SEQ_Shared_Hit_278 = new SequenceGUID(-720833399); public static readonly SequenceGUID SEQ_Beam_OwnerToSelf_1 = new SequenceGUID(-1970784492); public static readonly SequenceGUID SEQ_Shared_Area_Impact_138 = new SequenceGUID(1970150445); public static readonly SequenceGUID SEQ_Shared_Trigger_119 = new SequenceGUID(-22805236); public static readonly SequenceGUID SEQ_Shared_Area_Impact_139 = new SequenceGUID(412416476); public static readonly SequenceGUID SEQ_Shared_Hit_279 = new SequenceGUID(-519869424); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_56 = new SequenceGUID(142052901); public static readonly SequenceGUID SEQ_Shared_Hit_280 = new SequenceGUID(-973952654); public static readonly SequenceGUID SEQ_Shared_Projectile_105 = new SequenceGUID(-873534361); public static readonly SequenceGUID SEQ_Shared_Hit_281 = new SequenceGUID(1197710405); public static readonly SequenceGUID SEQ_Shared_Projectile_106 = new SequenceGUID(-934364927); public static readonly SequenceGUID SEQ_Shared_Area_Impact_140 = new SequenceGUID(453927480); public static readonly SequenceGUID SEQ_Shared_Trigger_120 = new SequenceGUID(1120935735); public static readonly SequenceGUID SEQ_Shared_Hit_282 = new SequenceGUID(1812475424); public static readonly SequenceGUID SEQ_Shared_Hit_283 = new SequenceGUID(281324018); public static readonly SequenceGUID SEQ_Shared_Hit_284 = new SequenceGUID(-636952520); public static readonly SequenceGUID SEQ_Shared_Trigger_121 = new SequenceGUID(633485462); public static readonly SequenceGUID SEQ_Shared_Hit_285 = new SequenceGUID(1368868678); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_57 = new SequenceGUID(-1619457671); public static readonly SequenceGUID SEQ_Shared_Hit_286 = new SequenceGUID(984845342); public static readonly SequenceGUID SEQ_Shared_Projectile_107 = new SequenceGUID(216354806); public static readonly SequenceGUID SEQ_Shared_Projectile_108 = new SequenceGUID(1905290070); public static readonly SequenceGUID SEQ_Shared_Hit_287 = new SequenceGUID(-1173877080); public static readonly SequenceGUID SEQ_Shared_Trigger_122 = new SequenceGUID(-1523613209); public static readonly SequenceGUID SEQ_Shared_Trigger_123 = new SequenceGUID(373773327); public static readonly SequenceGUID SEQ_Shared_Hit_288 = new SequenceGUID(1263193644); public static readonly SequenceGUID SEQ_Shared_Trigger_124 = new SequenceGUID(-356911446); public static readonly SequenceGUID SEQ_Shared_Area_Impact_141 = new SequenceGUID(-299964614); public static readonly SequenceGUID SEQ_Shared_Trigger_125 = new SequenceGUID(2092753505); public static readonly SequenceGUID SEQ_Shared_Hit_289 = new SequenceGUID(-75178711); public static readonly SequenceGUID SEQ_Shared_Projectile_109 = new SequenceGUID(1591930482); public static readonly SequenceGUID SEQ_Shared_Trigger_126 = new SequenceGUID(-84909452); public static readonly SequenceGUID SEQ_Shared_Hit_290 = new SequenceGUID(-902185923); public static readonly SequenceGUID SEQ_Shared_Area_Impact_142 = new SequenceGUID(-822772114); public static readonly SequenceGUID SEQ_Shared_Hit_291 = new SequenceGUID(-1299721287); public static readonly SequenceGUID SEQ_Shared_Trigger_127 = new SequenceGUID(-1794368436); public static readonly SequenceGUID SEQ_Shared_Area_Impact_143 = new SequenceGUID(-2133462134); public static readonly SequenceGUID SEQ_Shared_Trigger_128 = new SequenceGUID(-1053570709); public static readonly SequenceGUID SEQ_Shared_Area_Impact_144 = new SequenceGUID(1449038819); public static readonly SequenceGUID SEQ_Shared_Hit_292 = new SequenceGUID(123430522); public static readonly SequenceGUID SEQ_Shared_Trigger_129 = new SequenceGUID(-1459045092); public static readonly SequenceGUID SEQ_Shared_Area_Impact_145 = new SequenceGUID(-845989703); public static readonly SequenceGUID SEQ_Shared_Area_Impact_146 = new SequenceGUID(831478834); public static readonly SequenceGUID SEQ_Shared_Object_Hit_75 = new SequenceGUID(-1410579994); public static readonly SequenceGUID SEQ_Shared_Area_Impact_147 = new SequenceGUID(-1196866646); public static readonly SequenceGUID SEQ_Shared_Trigger_130 = new SequenceGUID(-1556813133); public static readonly SequenceGUID SEQ_Shared_Projectile_110 = new SequenceGUID(-356813079); public static readonly SequenceGUID SEQ_Shared_Trigger_131 = new SequenceGUID(-390916625); public static readonly SequenceGUID SEQ_Shared_Trigger_132 = new SequenceGUID(2061504361); public static readonly SequenceGUID SEQ_Shared_Area_Impact_148 = new SequenceGUID(-415063720); public static readonly SequenceGUID SEQ_Shared_Projectile_111 = new SequenceGUID(292177964); public static readonly SequenceGUID SEQ_Shared_Leap_End_1 = new SequenceGUID(-1165201506); public static readonly SequenceGUID SEQ_Shared_Hit_293 = new SequenceGUID(-365660062); public static readonly SequenceGUID SEQ_Shared_Projectile_112 = new SequenceGUID(1590370870); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_EnemyTarget_Buff = new SequenceGUID(-1279536635); public static readonly SequenceGUID SEQ_Slashers_Camouflage = new SequenceGUID(-282443369); public static readonly SequenceGUID SEQ_Shared_Hit_294 = new SequenceGUID(-29856133); public static readonly SequenceGUID SEQ_Shared_Hit_295 = new SequenceGUID(2146674734); public static readonly SequenceGUID SEQ_Shared_Area_Impact_149 = new SequenceGUID(-39516014); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_58 = new SequenceGUID(-158322136); public static readonly SequenceGUID SEQ_Shared_Hit_296 = new SequenceGUID(884389586); public static readonly SequenceGUID SEQ_Shared_Projectile_113 = new SequenceGUID(1722215105); public static readonly SequenceGUID SEQ_Shared_Hit_297 = new SequenceGUID(-508647474); public static readonly SequenceGUID SEQ_Shared_Area_Impact_150 = new SequenceGUID(-1748437183); public static readonly SequenceGUID SEQ_Shared_Area_Effect_52 = new SequenceGUID(1201114054); public static readonly SequenceGUID SEQ_Shared_Trigger_133 = new SequenceGUID(177088884); public static readonly SequenceGUID SEQ_Shared_Area_Ground_8 = new SequenceGUID(-1426885977); public static readonly SequenceGUID SEQ_Shared_Hit_298 = new SequenceGUID(819925302); public static readonly SequenceGUID SEQ_Shared_Trigger_134 = new SequenceGUID(-632535019); public static readonly SequenceGUID SEQ_Shared_Trigger_135 = new SequenceGUID(792466842); public static readonly SequenceGUID SEQ_Shared_Trigger_136 = new SequenceGUID(1580527885); public static readonly SequenceGUID SEQ_Shared_Area_Impact_151 = new SequenceGUID(-1733319688); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_59 = new SequenceGUID(-115060395); public static readonly SequenceGUID SEQ_Shared_Hit_299 = new SequenceGUID(679341452); public static readonly SequenceGUID SEQ_Shared_Projectile_114 = new SequenceGUID(54519782); public static readonly SequenceGUID SEQ_Shared_Trigger_137 = new SequenceGUID(-1089221531); public static readonly SequenceGUID SEQ_Shared_Area_Effect_53 = new SequenceGUID(931598439); public static readonly SequenceGUID SEQ_Shared_Area_Effect_54 = new SequenceGUID(1728726931); public static readonly SequenceGUID SEQ_Shared_Area_Impact_152 = new SequenceGUID(490230844); public static readonly SequenceGUID SEQ_Shared_Hit_300 = new SequenceGUID(-2008652843); public static readonly SequenceGUID SEQ_Shared_Hit_301 = new SequenceGUID(1257777803); public static readonly SequenceGUID SEQ_Shared_Area_Effect_55 = new SequenceGUID(-1803283107); public static readonly SequenceGUID SEQ_Shared_Area_Effect_56 = new SequenceGUID(96712303); public static readonly SequenceGUID SEQ_Shared_Hit_302 = new SequenceGUID(-514802409); public static readonly SequenceGUID SEQ_Shared_Hit_303 = new SequenceGUID(661047714); public static readonly SequenceGUID SEQ_Shared_Leap_End_2 = new SequenceGUID(-507390059); public static readonly SequenceGUID SEQ_Shared_Trigger_138 = new SequenceGUID(-377405930); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_60 = new SequenceGUID(-408847629); public static readonly SequenceGUID SEQ_Shared_Projectile_115 = new SequenceGUID(1840252691); public static readonly SequenceGUID SEQ_Shared_Trigger_139 = new SequenceGUID(-1755481452); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_61 = new SequenceGUID(1297858572); public static readonly SequenceGUID SEQ_Shared_Hit_304 = new SequenceGUID(1729079907); public static readonly SequenceGUID SEQ_Shared_Projectile_116 = new SequenceGUID(1629763523); public static readonly SequenceGUID SEQ_Shared_Area_Impact_153 = new SequenceGUID(-104670264); public static readonly SequenceGUID SEQ_Shared_Area_Impact_154 = new SequenceGUID(1992480327); public static readonly SequenceGUID SEQ_Shared_Hit_305 = new SequenceGUID(-1164080043); public static readonly SequenceGUID SEQ_Shared_Projectile_117 = new SequenceGUID(1829095194); public static readonly SequenceGUID SEQ_Shared_Area_Impact_155 = new SequenceGUID(657360679); public static readonly SequenceGUID SEQ_Shared_Hit_306 = new SequenceGUID(-1274042671); public static readonly SequenceGUID SEQ_Shared_Hit_307 = new SequenceGUID(-1802028429); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_62 = new SequenceGUID(-1903937142); public static readonly SequenceGUID SEQ_Shared_Hit_308 = new SequenceGUID(-490029388); public static readonly SequenceGUID SEQ_Shared_Hit_309 = new SequenceGUID(-225457716); public static readonly SequenceGUID SEQ_Shared_Projectile_118 = new SequenceGUID(634144302); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_63 = new SequenceGUID(-114256904); public static readonly SequenceGUID SEQ_Shared_Hit_310 = new SequenceGUID(-1496160336); public static readonly SequenceGUID SEQ_Shared_Projectile_119 = new SequenceGUID(624668368); public static readonly SequenceGUID SEQ_Shared_Hit_311 = new SequenceGUID(-430687508); public static readonly SequenceGUID SEQ_Shared_Hit_312 = new SequenceGUID(-1212827501); public static readonly SequenceGUID SEQ_Shared_Projectile_120 = new SequenceGUID(354869403); public static readonly SequenceGUID SEQ_Shared_Hit_313 = new SequenceGUID(-1041709929); public static readonly SequenceGUID SEQ_Shared_Area_Impact_156 = new SequenceGUID(-1673885102); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_150 = new SequenceGUID(712718553); public static readonly SequenceGUID SEQ_Shared_Trigger_140 = new SequenceGUID(-719501964); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_151 = new SequenceGUID(-786530785); public static readonly SequenceGUID SEQ_Shared_Trigger_141 = new SequenceGUID(1401383127); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_14 = new SequenceGUID(661734771); public static readonly SequenceGUID SEQ_Shared_Area_Impact_157 = new SequenceGUID(-1314324953); public static readonly SequenceGUID SEQ_Shared_Projectile_121 = new SequenceGUID(-598503159); public static readonly SequenceGUID SEQ_Shared_Hit_314 = new SequenceGUID(497222087); public static readonly SequenceGUID SEQ_Shared_Projectile_122 = new SequenceGUID(-757754422); public static readonly SequenceGUID SEQ_Shared_Trigger_142 = new SequenceGUID(-1837425375); public static readonly SequenceGUID SEQ_Shared_Area_Impact_158 = new SequenceGUID(-1635546425); public static readonly SequenceGUID SEQ_Shared_Trigger_143 = new SequenceGUID(-2023255038); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_64 = new SequenceGUID(-576585195); public static readonly SequenceGUID SEQ_Shared_Hit_315 = new SequenceGUID(927470421); public static readonly SequenceGUID SEQ_Shared_Hit_316 = new SequenceGUID(442023948); public static readonly SequenceGUID SEQ_Shared_Area_Impact_159 = new SequenceGUID(1437456514); public static readonly SequenceGUID SEQ_Shared_Area_Impact_160 = new SequenceGUID(-1909563710); public static readonly SequenceGUID SEQ_Shared_Trigger_144 = new SequenceGUID(1602604954); public static readonly SequenceGUID SEQ_Shared_Trigger_145 = new SequenceGUID(298626528); public static readonly SequenceGUID SEQ_Shared_Hit_317 = new SequenceGUID(1892060574); public static readonly SequenceGUID SEQ_Shared_Hit_318 = new SequenceGUID(-1465013593); public static readonly SequenceGUID SEQ_Shared_Projectile_123 = new SequenceGUID(-560317095); public static readonly SequenceGUID SEQ_Shared_Area_Impact_161 = new SequenceGUID(180746134); public static readonly SequenceGUID SEQ_Shared_Trigger_146 = new SequenceGUID(-1685628625); public static readonly SequenceGUID SEQ_Shared_Hit_319 = new SequenceGUID(1965514240); public static readonly SequenceGUID SEQ_Shared_Area_Effect_57 = new SequenceGUID(511636122); public static readonly SequenceGUID SEQ_Shared_Hit_320 = new SequenceGUID(751824905); public static readonly SequenceGUID SEQ_Shared_Hit_321 = new SequenceGUID(-1130595605); public static readonly SequenceGUID SEQ_Shared_Trigger_147 = new SequenceGUID(90054171); public static readonly SequenceGUID SEQ_Shared_Area_Impact_162 = new SequenceGUID(1987971968); public static readonly SequenceGUID SEQ_Shared_Area_Impact_163 = new SequenceGUID(-1648116235); public static readonly SequenceGUID SEQ_Shared_Hit_322 = new SequenceGUID(-46185770); public static readonly SequenceGUID SEQ_Shared_Hit_323 = new SequenceGUID(-1167221120); public static readonly SequenceGUID SEQ_Shared_Hit_324 = new SequenceGUID(-224357715); public static readonly SequenceGUID SEQ_Shared_Hit_325 = new SequenceGUID(1062794905); public static readonly SequenceGUID SEQ_Shared_Area_Impact_164 = new SequenceGUID(660540397); public static readonly SequenceGUID SEQ_Shared_Material_Hit_24 = new SequenceGUID(-1540639645); public static readonly SequenceGUID SEQ_Shared_Area_Effect_58 = new SequenceGUID(-722870257); public static readonly SequenceGUID SEQ_Shared_Hit_326 = new SequenceGUID(370552228); public static readonly SequenceGUID SEQ_Shared_Area_Impact_165 = new SequenceGUID(-69695656); public static readonly SequenceGUID SEQ_Shared_Area_Impact_166 = new SequenceGUID(-789591251); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_65 = new SequenceGUID(170335840); public static readonly SequenceGUID SEQ_Shared_Trigger_148 = new SequenceGUID(-1923018828); public static readonly SequenceGUID SEQ_Vampire_Mount_VampireLeap = new SequenceGUID(778908303); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_66 = new SequenceGUID(-1781996844); public static readonly SequenceGUID SEQ_Shared_Hit_327 = new SequenceGUID(-2004079361); public static readonly SequenceGUID SEQ_Shared_Hit_328 = new SequenceGUID(1563768382); public static readonly SequenceGUID SEQ_Shared_Projectile_124 = new SequenceGUID(-805619924); public static readonly SequenceGUID SEQ_Shared_Hit_329 = new SequenceGUID(1108708552); public static readonly SequenceGUID SEQ_Shared_Projectile_125 = new SequenceGUID(183005881); public static readonly SequenceGUID SEQ_Shared_Trigger_149 = new SequenceGUID(-1696208877); public static readonly SequenceGUID SEQ_Shared_Area_Impact_167 = new SequenceGUID(82811212); public static readonly SequenceGUID SEQ_Shared_Hit_330 = new SequenceGUID(-2031629420); public static readonly SequenceGUID SEQ_Shared_Area_Impact_168 = new SequenceGUID(741813344); public static readonly SequenceGUID SEQ_Shared_Trigger_150 = new SequenceGUID(-1081800426); public static readonly SequenceGUID SEQ_Shared_Hit_331 = new SequenceGUID(-235981311); public static readonly SequenceGUID SEQ_Shared_Projectile_126 = new SequenceGUID(1626025811); public static readonly SequenceGUID SEQ_Shared_Area_Effect_59 = new SequenceGUID(716941439); public static readonly SequenceGUID SEQ_Shared_Buff_AdditionalMaterial_OUTDATED = new SequenceGUID(1681240692); public static readonly SequenceGUID SEQ_Shared_Projectile_127 = new SequenceGUID(265635079); public static readonly SequenceGUID SEQ_Shared_Continious_Area_5 = new SequenceGUID(340559403); public static readonly SequenceGUID SEQ_Shared_Hit_332 = new SequenceGUID(1353638562); public static readonly SequenceGUID SEQ_Shared_Projectile_128 = new SequenceGUID(880687218); public static readonly SequenceGUID SEQ_Shared_Trigger_151 = new SequenceGUID(-982273592); public static readonly SequenceGUID SEQ_Shared_Hit_333 = new SequenceGUID(-1272618039); public static readonly SequenceGUID SEQ_Shared_Trigger_152 = new SequenceGUID(115518722); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_67 = new SequenceGUID(1259993570); public static readonly SequenceGUID SEQ_Shared_Hit_334 = new SequenceGUID(-236984050); public static readonly SequenceGUID SEQ_Shared_Projectile_129 = new SequenceGUID(1859454074); public static readonly SequenceGUID SEQ_Shared_Projectile_130 = new SequenceGUID(968887477); public static readonly SequenceGUID SEQ_Shared_Area_Effect_60 = new SequenceGUID(22778600); public static readonly SequenceGUID SEQ_Vampire_Sword_Spin_Channel_01 = new SequenceGUID(211932705); public static readonly SequenceGUID SEQ_Shared_Area_Impact_169 = new SequenceGUID(1646234740); public static readonly SequenceGUID SEQ_Shared_Hit_335 = new SequenceGUID(-566464846); public static readonly SequenceGUID SEQ_Shared_Projectile_131 = new SequenceGUID(356647473); public static readonly SequenceGUID SEQ_Shared_Hit_336 = new SequenceGUID(1997212913); public static readonly SequenceGUID SEQ_Shared_Projectile_132 = new SequenceGUID(1145697065); public static readonly SequenceGUID SEQ_Garlic_Fever_Buff = new SequenceGUID(-789025261); public static readonly SequenceGUID SEQ_Shared_Area_Effect_61 = new SequenceGUID(-918081543); public static readonly SequenceGUID SEQ_Shared_Hit_337 = new SequenceGUID(1482079791); public static readonly SequenceGUID SEQ_Shared_Trigger_153 = new SequenceGUID(276716864); public static readonly SequenceGUID SEQ_Garlic_Exposure_Buff = new SequenceGUID(2101815009); public static readonly SequenceGUID SEQ_Shared_Hit_338 = new SequenceGUID(1765715342); public static readonly SequenceGUID SEQ_Shared_Hit_339 = new SequenceGUID(-96691235); public static readonly SequenceGUID SEQ_Shared_Hit_340 = new SequenceGUID(-138676889); public static readonly SequenceGUID SEQ_Shared_Projectile_133 = new SequenceGUID(925129107); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_68 = new SequenceGUID(-453790900); public static readonly SequenceGUID SEQ_Shared_Hit_341 = new SequenceGUID(-642345385); public static readonly SequenceGUID SEQ_Shared_Projectile_OUTDATED = new SequenceGUID(70032435); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_69 = new SequenceGUID(323945914); public static readonly SequenceGUID SEQ_Shared_Hit_342 = new SequenceGUID(1520268037); public static readonly SequenceGUID SEQ_Shared_Projectile_134 = new SequenceGUID(1662747166); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel_2 = new SequenceGUID(1339085772); public static readonly SequenceGUID SEQ_Shared_Hit_343 = new SequenceGUID(902192086); public static readonly SequenceGUID SEQ_Shared_Area_Impact_170 = new SequenceGUID(1786379616); public static readonly SequenceGUID SEQ_Shared_Hit_344 = new SequenceGUID(-796049151); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_70 = new SequenceGUID(-1452810685); public static readonly SequenceGUID SEQ_Vampire_Mount_VampireLeapDoubleMat = new SequenceGUID(2076528263); public static readonly SequenceGUID SEQ_Shared_Hit_345 = new SequenceGUID(-1203220557); public static readonly SequenceGUID SEQ_Shared_Hit_346 = new SequenceGUID(1940378596); public static readonly SequenceGUID SEQ_Shared_Hit_347 = new SequenceGUID(-1555843804); public static readonly SequenceGUID SEQ_Shared_Hit_348 = new SequenceGUID(2096459555); public static readonly SequenceGUID SEQ_ContestBossCountdown = new SequenceGUID(-679471019); public static readonly SequenceGUID SEQ_Shared_Area_Impact_171 = new SequenceGUID(979388887); public static readonly SequenceGUID SEQ_Shared_Trigger_154 = new SequenceGUID(1218802766); public static readonly SequenceGUID SEQ_Shared_Object_Hit_76 = new SequenceGUID(-409334992); public static readonly SequenceGUID SEQ_Shared_Area_Impact_172 = new SequenceGUID(832864896); public static readonly SequenceGUID SEQ_Shared_Area_Impact_173 = new SequenceGUID(1128568523); public static readonly SequenceGUID SEQ_Shared_Hit_349 = new SequenceGUID(-780067150); public static readonly SequenceGUID SEQ_Shared_Area_Impact_174 = new SequenceGUID(854485916); public static readonly SequenceGUID SEQ_Shared_Trigger_155 = new SequenceGUID(-2127482896); public static readonly SequenceGUID SEQ_Shared_Trigger_156 = new SequenceGUID(2116627954); public static readonly SequenceGUID SEQ_Shared_Area_Impact_175 = new SequenceGUID(-759825212); public static readonly SequenceGUID SEQ_Shared_Hit_350 = new SequenceGUID(-491211135); public static readonly SequenceGUID SEQ_Shared_Projectile_135 = new SequenceGUID(333838285); public static readonly SequenceGUID SEQ_Shared_Hit_351 = new SequenceGUID(-327941713); public static readonly SequenceGUID SEQ_Shared_Area_Effect_62 = new SequenceGUID(-1702021467); public static readonly SequenceGUID SEQ_Shared_Trigger_157 = new SequenceGUID(-923399552); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_152 = new SequenceGUID(-1275227381); public static readonly SequenceGUID SEQ_Shared_Hit_352 = new SequenceGUID(-610957744); public static readonly SequenceGUID SEQ_Shared_Hit_353 = new SequenceGUID(-1983434286); public static readonly SequenceGUID SEQ_Shared_Hit_354 = new SequenceGUID(257355726); public static readonly SequenceGUID SEQ_Shared_Area_Impact_176 = new SequenceGUID(1318282828); public static readonly SequenceGUID SEQ_Shared_Hit_355 = new SequenceGUID(-609611190); public static readonly SequenceGUID SEQ_Shared_Trigger_158 = new SequenceGUID(-1314714696); public static readonly SequenceGUID SEQ_Shared_Area_Impact_177 = new SequenceGUID(1916155631); public static readonly SequenceGUID SEQ_Shared_Hit_356 = new SequenceGUID(-2119415455); public static readonly SequenceGUID SEQ_Shared_Projectile_136 = new SequenceGUID(527176646); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_71 = new SequenceGUID(659236368); public static readonly SequenceGUID SEQ_Shared_Hit_357 = new SequenceGUID(1154818565); public static readonly SequenceGUID SEQ_Shared_Projectile_137 = new SequenceGUID(-269461419); public static readonly SequenceGUID SEQ_Shared_Area_Impact_178 = new SequenceGUID(-1083251942); public static readonly SequenceGUID SEQ_Shared_Area_Ground_9 = new SequenceGUID(-1877145408); public static readonly SequenceGUID SEQ_Shared_Hit_358 = new SequenceGUID(651174925); public static readonly SequenceGUID SEQ_Shared_Area_Impact_179 = new SequenceGUID(-349637421); public static readonly SequenceGUID SEQ_Shared_Area_Effect_63 = new SequenceGUID(-2097350890); public static readonly SequenceGUID SEQ_Shared_Area_Impact_180 = new SequenceGUID(-2040794893); public static readonly SequenceGUID SEQ_Shared_Area_Effect_64 = new SequenceGUID(-2134201249); public static readonly SequenceGUID SEQ_Shared_Area_Effect_65 = new SequenceGUID(1653624784); public static readonly SequenceGUID SEQ_Shared_Area_Impact_181 = new SequenceGUID(-1182146370); public static readonly SequenceGUID SEQ_Shared_Trigger_159 = new SequenceGUID(-1704366925); public static readonly SequenceGUID SEQ_Shared_Object_Hit_77 = new SequenceGUID(324958600); public static readonly SequenceGUID SEQ_Shared_Area_Impact_182 = new SequenceGUID(-785513668); public static readonly SequenceGUID SEQ_Shared_Hit_359 = new SequenceGUID(-1173284306); public static readonly SequenceGUID SEQ_Shared_Hit_360 = new SequenceGUID(-901395287); public static readonly SequenceGUID SEQ_Shared_Hit_361 = new SequenceGUID(-1632121168); public static readonly SequenceGUID SEQ_Shared_Area_Impact_183 = new SequenceGUID(122221349); public static readonly SequenceGUID SEQ_Shared_Hit_362 = new SequenceGUID(1931838117); public static readonly SequenceGUID SEQ_Shared_Hit_363 = new SequenceGUID(-786561766); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_72 = new SequenceGUID(-1351118801); public static readonly SequenceGUID SEQ_Shared_Hit_364 = new SequenceGUID(441698375); public static readonly SequenceGUID SEQ_Shared_Projectile_138 = new SequenceGUID(-1082651509); public static readonly SequenceGUID SEQ_Shared_Area_Impact_184 = new SequenceGUID(-1737137918); public static readonly SequenceGUID SEQ_Shared_Trigger_160 = new SequenceGUID(872199719); public static readonly SequenceGUID SEQ_Shared_Trigger_161 = new SequenceGUID(-179476254); public static readonly SequenceGUID SEQ_Shared_Object_Hit_78 = new SequenceGUID(190822482); public static readonly SequenceGUID SEQ_Shared_Area_Impact_185 = new SequenceGUID(-1829440538); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_73 = new SequenceGUID(-39529915); public static readonly SequenceGUID SEQ_Shared_Hit_365 = new SequenceGUID(-627095498); public static readonly SequenceGUID SEQ_Shared_Projectile_139 = new SequenceGUID(660902660); public static readonly SequenceGUID SEQ_Shared_Object_Hit_79 = new SequenceGUID(1544683575); public static readonly SequenceGUID SEQ_Shared_Area_Impact_186 = new SequenceGUID(-284109364); public static readonly SequenceGUID SEQ_Shared_Trigger_162 = new SequenceGUID(1349759156); public static readonly SequenceGUID SEQ_KnightShield_Buff_DirectionalShield = new SequenceGUID(-1602715329); public static readonly SequenceGUID SEQ_Shared_Area_Impact_187 = new SequenceGUID(338256052); public static readonly SequenceGUID SEQ_Shared_Hit_366 = new SequenceGUID(-2119602518); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_74 = new SequenceGUID(2092678894); public static readonly SequenceGUID SEQ_Shared_Area_Effect_66 = new SequenceGUID(-1749155534); public static readonly SequenceGUID SEQ_Shared_Object_Hit_80 = new SequenceGUID(1751574931); public static readonly SequenceGUID SEQ_Shared_Object_Hit_81 = new SequenceGUID(1060851142); public static readonly SequenceGUID SEQ_Shared_Area_Impact_188 = new SequenceGUID(-1080888081); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_75 = new SequenceGUID(1280329894); public static readonly SequenceGUID SEQ_Shared_Hit_367 = new SequenceGUID(749076602); public static readonly SequenceGUID SEQ_Shared_Projectile_140 = new SequenceGUID(518669382); public static readonly SequenceGUID SEQ_Shared_Hit_368 = new SequenceGUID(-1054313723); public static readonly SequenceGUID SEQ_Shared_Hit_369 = new SequenceGUID(-1147658771); public static readonly SequenceGUID SEQ_Shared_Hit_370 = new SequenceGUID(606148541); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_4 = new SequenceGUID(-2136037619); public static readonly SequenceGUID SEQ_Shared_Area_Impact_189 = new SequenceGUID(-1292709467); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_76 = new SequenceGUID(-7758775); public static readonly SequenceGUID SEQ_Shared_Trigger_163 = new SequenceGUID(-1016294478); public static readonly SequenceGUID SEQ_Shared_Projectile_141 = new SequenceGUID(-1951690119); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_77 = new SequenceGUID(-307210423); public static readonly SequenceGUID SEQ_Shared_Hit_371 = new SequenceGUID(1318073055); public static readonly SequenceGUID SEQ_Shared_Projectile_142 = new SequenceGUID(525090264); public static readonly SequenceGUID SEQ_Shared_Area_Impact_190 = new SequenceGUID(2106754827); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_78 = new SequenceGUID(-960793509); public static readonly SequenceGUID SEQ_Shared_Hit_372 = new SequenceGUID(-815204491); public static readonly SequenceGUID SEQ_Shared_Projectile_143 = new SequenceGUID(-157550687); public static readonly SequenceGUID SEQ_Shared_Trigger_164 = new SequenceGUID(1717780088); public static readonly SequenceGUID SEQ_Shared_Trigger_165 = new SequenceGUID(-381592993); public static readonly SequenceGUID SEQ_Shared_Projectile_144 = new SequenceGUID(-1265863692); public static readonly SequenceGUID SEQ_Shared_Hit_373 = new SequenceGUID(-297193712); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_79 = new SequenceGUID(-78446014); public static readonly SequenceGUID SEQ_Shared_Hit_374 = new SequenceGUID(1387107626); public static readonly SequenceGUID SEQ_Shared_Projectile_145 = new SequenceGUID(20617799); public static readonly SequenceGUID SEQ_Shared_Hit_375 = new SequenceGUID(1151072613); public static readonly SequenceGUID SEQ_Shared_Hit_376 = new SequenceGUID(1648226162); public static readonly SequenceGUID SEQ_Shared_Area_Impact_191 = new SequenceGUID(-1722651197); public static readonly SequenceGUID SEQ_Shared_Area_Impact_192 = new SequenceGUID(-8139168); public static readonly SequenceGUID SEQ_Shared_Hit_377 = new SequenceGUID(1009614095); public static readonly SequenceGUID SEQ_Shared_Hit_378 = new SequenceGUID(509772686); public static readonly SequenceGUID SEQ_Shared_Hit_379 = new SequenceGUID(-645808059); public static readonly SequenceGUID SEQ_Shared_Trigger_166 = new SequenceGUID(1468226228); public static readonly SequenceGUID SEQ_Vampire_Mount_VampireLeap_1 = new SequenceGUID(-464672626); public static readonly SequenceGUID SEQ_Shared_Trigger_167 = new SequenceGUID(104180767); public static readonly SequenceGUID SEQ_Vampire_Mount_VampireLeap_2 = new SequenceGUID(1444490334); public static readonly SequenceGUID SEQ_Shared_Projectile_146 = new SequenceGUID(-2135957648); public static readonly SequenceGUID SEQ_Shared_Trigger_168 = new SequenceGUID(-436592759); public static readonly SequenceGUID SEQ_Shared_Trigger_169 = new SequenceGUID(812800229); public static readonly SequenceGUID SEQ_Shared_Hit_380 = new SequenceGUID(-1324739528); public static readonly SequenceGUID SEQ_Shared_Hit_381 = new SequenceGUID(704908248); public static readonly SequenceGUID SEQ_Shared_Hit_382 = new SequenceGUID(-521175823); public static readonly SequenceGUID SEQ_Shared_Hit_383 = new SequenceGUID(-885267890); public static readonly SequenceGUID SEQ_Shared_Area_Effect_67 = new SequenceGUID(-758260656); public static readonly SequenceGUID SEQ_Shared_Trigger_170 = new SequenceGUID(1768803583); public static readonly SequenceGUID SEQ_Shared_Hit_384 = new SequenceGUID(-657679240); public static readonly SequenceGUID SEQ_Shared_Hit_385 = new SequenceGUID(-740518190); public static readonly SequenceGUID SEQ_Shared_Hit_386 = new SequenceGUID(1910786876); public static readonly SequenceGUID SEQ_Shared_Projectile_147 = new SequenceGUID(347219593); public static readonly SequenceGUID SEQ_Shared_Hit_387 = new SequenceGUID(2066423287); public static readonly SequenceGUID SEQ_Shared_Projectile_148 = new SequenceGUID(711797418); public static readonly SequenceGUID SEQ_Shared_Area_Impact_193 = new SequenceGUID(2138349085); public static readonly SequenceGUID SEQ_Shared_Leap_End_3 = new SequenceGUID(393118634); public static readonly SequenceGUID SEQ_Shared_Area_Effect_68 = new SequenceGUID(1458279625); public static readonly SequenceGUID SEQ_Shared_Area_Impact_194 = new SequenceGUID(-1408816962); public static readonly SequenceGUID SEQ_ContestArena_ActiveFlag_Team01 = new SequenceGUID(744374235); public static readonly SequenceGUID SEQ_Shared_Area_Impact_195 = new SequenceGUID(-1524674310); public static readonly SequenceGUID SEQ_Shared_Hit_388 = new SequenceGUID(425735381); public static readonly SequenceGUID SEQ_Shared_Area_Impact_196 = new SequenceGUID(572128446); public static readonly SequenceGUID SEQ_Shared_Area_Impact_197 = new SequenceGUID(311601869); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_80 = new SequenceGUID(255086250); public static readonly SequenceGUID SEQ_Shared_Hit_389 = new SequenceGUID(-1151257826); public static readonly SequenceGUID SEQ_Shared_Trigger_171 = new SequenceGUID(-1005267832); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_2 = new SequenceGUID(-989489873); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_81 = new SequenceGUID(1448316425); public static readonly SequenceGUID SEQ_Shared_Hit_390 = new SequenceGUID(-1281459857); public static readonly SequenceGUID SEQ_Shared_Projectile_149 = new SequenceGUID(-251260888); public static readonly SequenceGUID SEQ_Shared_Area_Impact_198 = new SequenceGUID(418046465); public static readonly SequenceGUID SEQ_Shared_Hit_391 = new SequenceGUID(447134787); public static readonly SequenceGUID SEQ_Shared_Hit_392 = new SequenceGUID(-1646339579); public static readonly SequenceGUID SEQ_Shared_Hit_393 = new SequenceGUID(498465552); public static readonly SequenceGUID SEQ_Shared_Hit_394 = new SequenceGUID(1140169762); public static readonly SequenceGUID SEQ_Shared_Hit_395 = new SequenceGUID(-1248709392); public static readonly SequenceGUID SEQ_Shared_Hit_396 = new SequenceGUID(645073417); public static readonly SequenceGUID SEQ_Shared_Projectile_150 = new SequenceGUID(1386833557); public static readonly SequenceGUID SEQ_Shared_Hit_397 = new SequenceGUID(862684094); public static readonly SequenceGUID SEQ_Shared_Hit_398 = new SequenceGUID(-1992097319); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_82 = new SequenceGUID(155156924); public static readonly SequenceGUID SEQ_Shared_Projectile_151 = new SequenceGUID(1712375282); public static readonly SequenceGUID SEQ_Shared_Area_Impact_199 = new SequenceGUID(-244092678); public static readonly SequenceGUID SEQ_Shared_Hit_399 = new SequenceGUID(497914660); public static readonly SequenceGUID SEQ_Shared_Hit_400 = new SequenceGUID(-145856263); public static readonly SequenceGUID SEQ_Shared_Hit_401 = new SequenceGUID(-701155270); public static readonly SequenceGUID SEQ_Shared_Trigger_172 = new SequenceGUID(-621926604); public static readonly SequenceGUID SEQ_Shared_Hit_402 = new SequenceGUID(2059539410); public static readonly SequenceGUID SEQ_Shared_Trigger_173 = new SequenceGUID(-185764229); public static readonly SequenceGUID SEQ_Shared_Trigger_174 = new SequenceGUID(1916882476); public static readonly SequenceGUID SEQ_Shared_Hit_403 = new SequenceGUID(-302014314); public static readonly SequenceGUID SEQ_Shared_Projectile_152 = new SequenceGUID(1462712949); public static readonly SequenceGUID SEQ_Shared_Trigger_175 = new SequenceGUID(1993300697); public static readonly SequenceGUID SEQ_Shared_Area_Impact_200 = new SequenceGUID(1478283454); public static readonly SequenceGUID SEQ_Shared_Hit_404 = new SequenceGUID(-1521453020); public static readonly SequenceGUID SEQ_Shared_Hit_405 = new SequenceGUID(263008868); public static readonly SequenceGUID SEQ_Shared_Area_Impact_201 = new SequenceGUID(-1709478954); public static readonly SequenceGUID SEQ_Shared_Hit_406 = new SequenceGUID(-1992640393); public static readonly SequenceGUID SEQ_Shared_Hit_407 = new SequenceGUID(955199664); public static readonly SequenceGUID SEQ_Shared_Trigger_176 = new SequenceGUID(1997416489); public static readonly SequenceGUID SEQ_Shared_Trigger_177 = new SequenceGUID(-2110930032); public static readonly SequenceGUID SEQ_Shared_Trigger_178 = new SequenceGUID(506352336); public static readonly SequenceGUID SEQ_Shared_Trigger_179 = new SequenceGUID(215282364); public static readonly SequenceGUID SEQ_Shared_Trigger_180 = new SequenceGUID(2094785946); public static readonly SequenceGUID SEQ_Shared_Hit_408 = new SequenceGUID(-1645581788); public static readonly SequenceGUID SEQ_Shared_Hit_409 = new SequenceGUID(1450886561); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_153 = new SequenceGUID(95666698); public static readonly SequenceGUID SEQ_Shared_Hit_410 = new SequenceGUID(-1786569841); public static readonly SequenceGUID SEQ_Shared_Projectile_153 = new SequenceGUID(78769016); public static readonly SequenceGUID SEQ_Shared_Hit_411 = new SequenceGUID(-1677351247); public static readonly SequenceGUID SEQ_Shared_Area_Impact_202 = new SequenceGUID(-543143467); public static readonly SequenceGUID SEQ_Shared_Hit_412 = new SequenceGUID(541715017); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_83 = new SequenceGUID(286798170); public static readonly SequenceGUID SEQ_Shared_Hit_413 = new SequenceGUID(1939968022); public static readonly SequenceGUID SEQ_Shared_Projectile_154 = new SequenceGUID(-1561579476); public static readonly SequenceGUID SEQ_Shared_Area_Impact_203 = new SequenceGUID(-277308838); public static readonly SequenceGUID SEQ_Shared_Hit_414 = new SequenceGUID(740426937); public static readonly SequenceGUID SEQ_Shared_Area_Impact_204 = new SequenceGUID(1353925308); public static readonly SequenceGUID SEQ_Shared_Area_Impact_205 = new SequenceGUID(-1552370256); public static readonly SequenceGUID SEQ_ManTrap_Sleep = new SequenceGUID(2085260877); public static readonly SequenceGUID SEQ_ManTrap_WakeUp = new SequenceGUID(9731891); public static readonly SequenceGUID SEQ_Shared_Area_Impact_206 = new SequenceGUID(428149079); public static readonly SequenceGUID SEQ_Shared_Trigger_181 = new SequenceGUID(-467859647); public static readonly SequenceGUID SEQ_Shared_EntityEffect = new SequenceGUID(-1720089940); public static readonly SequenceGUID SEQ_Shared_Projectile_155 = new SequenceGUID(88836072); public static readonly SequenceGUID SEQ_Shared_Hit_415 = new SequenceGUID(-1042340647); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_84 = new SequenceGUID(-445175290); public static readonly SequenceGUID SEQ_Shared_Projectile_156 = new SequenceGUID(-2108802501); public static readonly SequenceGUID SEQ_Shared_Area_Impact_207 = new SequenceGUID(-295480877); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_85 = new SequenceGUID(-509610206); public static readonly SequenceGUID SEQ_Shared_Hit_416 = new SequenceGUID(-1569476635); public static readonly SequenceGUID SEQ_Shared_Projectile_157 = new SequenceGUID(1111778442); public static readonly SequenceGUID SEQ_Shared_Area_Effect_69 = new SequenceGUID(-1747266322); public static readonly SequenceGUID SEQ_Shared_Area_Effect_70 = new SequenceGUID(2069574620); public static readonly SequenceGUID SEQ_Shared_Projectile_158 = new SequenceGUID(1609430984); public static readonly SequenceGUID SEQ_Shared_Hit_417 = new SequenceGUID(653162711); public static readonly SequenceGUID SEQ_Shared_Area_Impact_208 = new SequenceGUID(-1123034958); public static readonly SequenceGUID SEQ_Shared_Trigger_182 = new SequenceGUID(-2001276366); public static readonly SequenceGUID SEQ_Shared_Area_Impact_209 = new SequenceGUID(2043265493); public static readonly SequenceGUID SEQ_Shared_Hit_418 = new SequenceGUID(-1698933432); public static readonly SequenceGUID SEQ_Shared_Hit_419 = new SequenceGUID(352414822); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_86 = new SequenceGUID(-1126663356); public static readonly SequenceGUID SEQ_Shared_Hit_420 = new SequenceGUID(-174741659); public static readonly SequenceGUID SEQ_Shared_Projectile_159 = new SequenceGUID(-1813515638); public static readonly SequenceGUID SEQ_Shared_Hit_421 = new SequenceGUID(562077429); public static readonly SequenceGUID SEQ_Shared_Hit_422 = new SequenceGUID(859283408); public static readonly SequenceGUID SEQ_Shared_Area_Impact_210 = new SequenceGUID(-656570728); public static readonly SequenceGUID SEQ_Shared_Hit_423 = new SequenceGUID(842443083); public static readonly SequenceGUID SEQ_Shared_Hit_424 = new SequenceGUID(-1023684646); public static readonly SequenceGUID SEQ_Shared_Hit_425 = new SequenceGUID(-1696111847); public static readonly SequenceGUID SEQ_Shared_Hit_426 = new SequenceGUID(1353036791); public static readonly SequenceGUID SEQ_Shared_Projectile_160 = new SequenceGUID(1733667772); public static readonly SequenceGUID SEQ_Shared_Object_Hit_82 = new SequenceGUID(-1735546784); public static readonly SequenceGUID SEQ_Shared_Trigger_183 = new SequenceGUID(-1676116415); public static readonly SequenceGUID SEQ_Shared_Projectile_161 = new SequenceGUID(-443694950); public static readonly SequenceGUID SEQ_Shared_Hit_427 = new SequenceGUID(-1173758633); public static readonly SequenceGUID SEQ_Shared_Area_Effect_71 = new SequenceGUID(371838474); public static readonly SequenceGUID SEQ_Shared_Hit_428 = new SequenceGUID(-1108663510); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_87 = new SequenceGUID(484746372); public static readonly SequenceGUID SEQ_Shared_Hit_429 = new SequenceGUID(1935757842); public static readonly SequenceGUID SEQ_Shared_Projectile_162 = new SequenceGUID(-1107708788); public static readonly SequenceGUID SEQ_Shared_Area_Effect_72 = new SequenceGUID(533147641); public static readonly SequenceGUID SEQ_Shared_Trigger_184 = new SequenceGUID(628892143); public static readonly SequenceGUID SEQ_Shared_Hit_430 = new SequenceGUID(1994202814); public static readonly SequenceGUID SEQ_Shared_Projectile_163 = new SequenceGUID(571618706); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_88 = new SequenceGUID(-106513826); public static readonly SequenceGUID SEQ_Shared_Hit_431 = new SequenceGUID(295993357); public static readonly SequenceGUID SEQ_Shared_Projectile_164 = new SequenceGUID(-73935294); public static readonly SequenceGUID SEQ_Shared_Projectile_165 = new SequenceGUID(-267559684); public static readonly SequenceGUID SEQ_Shared_Hit_432 = new SequenceGUID(1615466515); public static readonly SequenceGUID SEQ_Shared_Hit_433 = new SequenceGUID(5500907); public static readonly SequenceGUID SEQ_Shared_Hit_434 = new SequenceGUID(2073167821); public static readonly SequenceGUID SEQ_Shared_Hit_435 = new SequenceGUID(-55945713); public static readonly SequenceGUID SEQ_Shared_Hit_436 = new SequenceGUID(-1996081949); public static readonly SequenceGUID SEQ_Shared_Area_Impact_211 = new SequenceGUID(-1967536641); public static readonly SequenceGUID SEQ_Shared_Area_Impact_212 = new SequenceGUID(214254283); public static readonly SequenceGUID SEQ_Shared_Area_Impact_213 = new SequenceGUID(-825009520); public static readonly SequenceGUID SEQ_Shared_Area_Effect_73 = new SequenceGUID(1621309815); public static readonly SequenceGUID SEQ_Shared_Trigger_185 = new SequenceGUID(124430674); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_89 = new SequenceGUID(-128963040); public static readonly SequenceGUID SEQ_Shared_Hit_437 = new SequenceGUID(-656837926); public static readonly SequenceGUID SEQ_Shared_Object_Hit_83 = new SequenceGUID(1387356886); public static readonly SequenceGUID SEQ_Shared_Hit_438 = new SequenceGUID(-1310389088); public static readonly SequenceGUID SEQ_Shared_Buff_OUTDATED_2 = new SequenceGUID(-684324044); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_90 = new SequenceGUID(-1691427327); public static readonly SequenceGUID SEQ_Shared_Hit_439 = new SequenceGUID(-383456356); public static readonly SequenceGUID SEQ_Shared_Area_Impact_214 = new SequenceGUID(-398651693); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_91 = new SequenceGUID(1253125382); public static readonly SequenceGUID SEQ_Shared_Hit_440 = new SequenceGUID(-1522992158); public static readonly SequenceGUID SEQ_Shared_Projectile_166 = new SequenceGUID(-259638794); public static readonly SequenceGUID SEQ_Shared_Area_Impact_215 = new SequenceGUID(1942647486); public static readonly SequenceGUID SEQ_Shared_Area_Effect_74 = new SequenceGUID(-1402738735); public static readonly SequenceGUID SEQ_Shared_Area_Impact_216 = new SequenceGUID(-1922309923); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_92 = new SequenceGUID(-2143421093); public static readonly SequenceGUID SEQ_Shared_Hit_441 = new SequenceGUID(-2002373379); public static readonly SequenceGUID SEQ_Shared_Projectile_167 = new SequenceGUID(1507162112); public static readonly SequenceGUID SEQ_Shared_Area_Impact_217 = new SequenceGUID(29047852); public static readonly SequenceGUID SEQ_Shared_Trigger_186 = new SequenceGUID(-850839398); public static readonly SequenceGUID SEQ_Shared_Trigger_187 = new SequenceGUID(1054060786); public static readonly SequenceGUID SEQ_Shared_EntityEffect_1 = new SequenceGUID(-1209085365); public static readonly SequenceGUID SEQ_Shared_Hit_442 = new SequenceGUID(1446354375); public static readonly SequenceGUID SEQ_Shared_Hit_443 = new SequenceGUID(-295834795); public static readonly SequenceGUID SEQ_Shared_Projectile_168 = new SequenceGUID(-1465471944); public static readonly SequenceGUID SEQ_Shared_Trigger_188 = new SequenceGUID(2021899851); public static readonly SequenceGUID SEQ_Shared_Hit_444 = new SequenceGUID(-1402364029); public static readonly SequenceGUID SEQ_Shared_Hit_445 = new SequenceGUID(2108293188); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_93 = new SequenceGUID(1230637444); public static readonly SequenceGUID SEQ_Shared_Hit_446 = new SequenceGUID(752147853); public static readonly SequenceGUID SEQ_Shared_Projectile_169 = new SequenceGUID(1612126512); public static readonly SequenceGUID SEQ_Shared_Hit_447 = new SequenceGUID(-364863979); public static readonly SequenceGUID SEQ_Shared_Hit_448 = new SequenceGUID(2079977524); public static readonly SequenceGUID SEQ_Shared_Hit_449 = new SequenceGUID(-89703936); public static readonly SequenceGUID SEQ_Shared_Hit_450 = new SequenceGUID(-1890837844); public static readonly SequenceGUID SEQ_Shared_Trigger_189 = new SequenceGUID(-1468949660); public static readonly SequenceGUID SEQ_Shared_Hit_451 = new SequenceGUID(-603974944); public static readonly SequenceGUID SEQ_Shared_Hit_452 = new SequenceGUID(-1548425908); public static readonly SequenceGUID SEQ_Shared_Trigger_190 = new SequenceGUID(-1839447547); public static readonly SequenceGUID SEQ_Shared_Hit_453 = new SequenceGUID(1446933902); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_94 = new SequenceGUID(-886203852); public static readonly SequenceGUID SEQ_Shared_Projectile_170 = new SequenceGUID(-539134694); public static readonly SequenceGUID SEQ_Shared_Hit_454 = new SequenceGUID(1979579063); public static readonly SequenceGUID SEQ_Shared_Hit_455 = new SequenceGUID(2123743297); public static readonly SequenceGUID SEQ_Shared_Hit_456 = new SequenceGUID(-1075724157); public static readonly SequenceGUID SEQ_Shared_Area_Impact_218 = new SequenceGUID(-1594174404); public static readonly SequenceGUID SEQ_Shared_Area_Impact_219 = new SequenceGUID(1215320837); public static readonly SequenceGUID SEQ_Shared_Area_Impact_220 = new SequenceGUID(1691117750); public static readonly SequenceGUID SEQ_Shared_Area_Impact_221 = new SequenceGUID(1186247926); public static readonly SequenceGUID SEQ_Shared_Area_Impact_222 = new SequenceGUID(-1204436530); public static readonly SequenceGUID SEQ_Shared_Object_Hit_84 = new SequenceGUID(-1911255289); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_95 = new SequenceGUID(-757610954); public static readonly SequenceGUID SEQ_Shared_Hit_457 = new SequenceGUID(1066537520); public static readonly SequenceGUID SEQ_Shared_Projectile_171 = new SequenceGUID(508333246); public static readonly SequenceGUID SEQ_Shared_Hit_458 = new SequenceGUID(1434093777); public static readonly SequenceGUID SEQ_Shared_Hit_459 = new SequenceGUID(2088897608); public static readonly SequenceGUID SEQ_Shared_Projectile_172 = new SequenceGUID(153150642); public static readonly SequenceGUID SEQ_Shared_Area_Impact_223 = new SequenceGUID(-1305702788); public static readonly SequenceGUID SEQ_Shared_Trigger_191 = new SequenceGUID(-877884284); public static readonly SequenceGUID SEQ_Shared_Area_Impact_224 = new SequenceGUID(-317371342); public static readonly SequenceGUID SEQ_Shared_Area_Impact_225 = new SequenceGUID(715661027); public static readonly SequenceGUID SEQ_Shared_Hit_460 = new SequenceGUID(21934044); public static readonly SequenceGUID SEQ_Shared_Area_Impact_226 = new SequenceGUID(-1812206252); public static readonly SequenceGUID SEQ_Shared_Object_Hit_85 = new SequenceGUID(-916407410); public static readonly SequenceGUID SEQ_Shared_Area_Impact_227 = new SequenceGUID(1046836190); public static readonly SequenceGUID SEQ_Shared_Area_Impact_228 = new SequenceGUID(-1095801008); public static readonly SequenceGUID SEQ_Shared_Area_Impact_229 = new SequenceGUID(-676759836); public static readonly SequenceGUID SEQ_Shared_Area_Impact_230 = new SequenceGUID(-1882115509); public static readonly SequenceGUID SEQ_Shared_Hit_461 = new SequenceGUID(-956106190); public static readonly SequenceGUID SEQ_Shared_Area_Impact_231 = new SequenceGUID(1917455223); public static readonly SequenceGUID SEQ_Shared_Hit_462 = new SequenceGUID(1985824124); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_96 = new SequenceGUID(-232727756); public static readonly SequenceGUID SEQ_Shared_Hit_463 = new SequenceGUID(-1642897629); public static readonly SequenceGUID SEQ_Shared_Projectile_173 = new SequenceGUID(2127143994); public static readonly SequenceGUID SEQ_Shared_Area_Impact_232 = new SequenceGUID(-1808447285); public static readonly SequenceGUID SEQ_Shared_Area_Effect_75 = new SequenceGUID(-757174984); public static readonly SequenceGUID SEQ_Shared_Area_Effect_76 = new SequenceGUID(466825115); public static readonly SequenceGUID SEQ_Shared_Projectile_174 = new SequenceGUID(-1064542050); public static readonly SequenceGUID SEQ_Shared_Hit_464 = new SequenceGUID(1700067124); public static readonly SequenceGUID SEQ_Shared_Object_Hit_86 = new SequenceGUID(-850280484); public static readonly SequenceGUID SEQ_Shared_Object_Hit_87 = new SequenceGUID(-2051738371); public static readonly SequenceGUID SEQ_Shared_Area_Impact_233 = new SequenceGUID(1396638998); public static readonly SequenceGUID SEQ_Shared_Object_Hit_88 = new SequenceGUID(-545021518); public static readonly SequenceGUID SEQ_Shared_Trigger_192 = new SequenceGUID(-251619470); public static readonly SequenceGUID SEQ_Shared_Trigger_193 = new SequenceGUID(-1293010694); public static readonly SequenceGUID SEQ_Shared_Hit_465 = new SequenceGUID(441376414); public static readonly SequenceGUID SEQ_Shared_Hit_466 = new SequenceGUID(593946066); public static readonly SequenceGUID SEQ_Shared_Hit_467 = new SequenceGUID(-508608517); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_97 = new SequenceGUID(-1614547086); public static readonly SequenceGUID SEQ_Shared_Projectile_175 = new SequenceGUID(445197822); public static readonly SequenceGUID SEQ_Shared_Hit_468 = new SequenceGUID(1155398342); public static readonly SequenceGUID SEQ_Shared_Hit_469 = new SequenceGUID(1724740219); public static readonly SequenceGUID SEQ_Shared_Hit_470 = new SequenceGUID(388979822); public static readonly SequenceGUID SEQ_Shared_Area_Impact_234 = new SequenceGUID(1639440460); public static readonly SequenceGUID SEQ_Shared_Projectile_176 = new SequenceGUID(1292800720); public static readonly SequenceGUID SEQ_Shared_Continious_Area_6 = new SequenceGUID(2135359147); public static readonly SequenceGUID SEQ_Shared_EntityEffect_2 = new SequenceGUID(865084580); public static readonly SequenceGUID SEQ_Shared_Trigger_194 = new SequenceGUID(913595277); public static readonly SequenceGUID SEQ_Shared_Object_Hit_89 = new SequenceGUID(1907006793); public static readonly SequenceGUID SEQ_Shared_Hit_471 = new SequenceGUID(-2072051232); public static readonly SequenceGUID SEQ_Shared_Hit_472 = new SequenceGUID(1266784257); public static readonly SequenceGUID SEQ_Shared_Hit_473 = new SequenceGUID(1725355009); public static readonly SequenceGUID SEQ_Shared_Area_Effect_77 = new SequenceGUID(-1542992385); public static readonly SequenceGUID SEQ_Shared_Area_Effect_78 = new SequenceGUID(471441146); public static readonly SequenceGUID SEQ_Shared_Hit_474 = new SequenceGUID(859676131); public static readonly SequenceGUID SEQ_Shared_Hit_475 = new SequenceGUID(1103709523); public static readonly SequenceGUID SEQ_Shared_Trigger_195 = new SequenceGUID(2136434612); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_EnemyTarget_Buff_1 = new SequenceGUID(-507760041); public static readonly SequenceGUID SEQ_Shared_Hit_476 = new SequenceGUID(474149520); public static readonly SequenceGUID SEQ_Shared_Hit_477 = new SequenceGUID(-1913760354); public static readonly SequenceGUID SEQ_Shared_Projectile_177 = new SequenceGUID(673118311); public static readonly SequenceGUID SEQ_Shared_Trigger_196 = new SequenceGUID(1432470472); public static readonly SequenceGUID SEQ_Shared_Projectile_178 = new SequenceGUID(660185584); public static readonly SequenceGUID SEQ_Shared_Hit_478 = new SequenceGUID(1219850407); public static readonly SequenceGUID SEQ_Shared_Hit_479 = new SequenceGUID(-490933863); public static readonly SequenceGUID SEQ_Shared_Trigger_197 = new SequenceGUID(-2007873986); public static readonly SequenceGUID SEQ_Shared_Trigger_198 = new SequenceGUID(-1649357064); public static readonly SequenceGUID SEQ_PickupItem_01_15 = new SequenceGUID(-1430997544); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_15 = new SequenceGUID(-1866205286); public static readonly SequenceGUID SEQ_Shared_Trigger_199 = new SequenceGUID(-268309391); public static readonly SequenceGUID SEQ_Shared_Trigger_200 = new SequenceGUID(1774551624); public static readonly SequenceGUID SEQ_Shared_Hit_480 = new SequenceGUID(867844767); public static readonly SequenceGUID SEQ_Shared_Projectile_179 = new SequenceGUID(883028270); public static readonly SequenceGUID SEQ_Shared_Continious_Area_7 = new SequenceGUID(-330789571); public static readonly SequenceGUID SEQ_Shared_Hit_481 = new SequenceGUID(1438847819); public static readonly SequenceGUID SEQ_Shared_Area_Impact_235 = new SequenceGUID(-1367518758); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_98 = new SequenceGUID(970017168); public static readonly SequenceGUID SEQ_Shared_Hit_482 = new SequenceGUID(1648403940); public static readonly SequenceGUID SEQ_Shared_Hit_483 = new SequenceGUID(-1535325978); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_5 = new SequenceGUID(1134983046); public static readonly SequenceGUID SEQ_Shared_Hit_484 = new SequenceGUID(-526147419); public static readonly SequenceGUID SEQ_Shared_Projectile_180 = new SequenceGUID(-404200890); public static readonly SequenceGUID SEQ_Shared_Area_Impact_236 = new SequenceGUID(-1192172972); public static readonly SequenceGUID SEQ_Shared_Hit_485 = new SequenceGUID(-2010282061); public static readonly SequenceGUID SEQ_Shared_Projectile_181 = new SequenceGUID(2120319959); public static readonly SequenceGUID SEQ_Shared_Hit_486 = new SequenceGUID(-2077274365); public static readonly SequenceGUID SEQ_Shared_Hit_487 = new SequenceGUID(1196677029); public static readonly SequenceGUID SEQ_Shared_Hit_488 = new SequenceGUID(-1582963350); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_99 = new SequenceGUID(-273548651); public static readonly SequenceGUID SEQ_Shared_Hit_489 = new SequenceGUID(-1199695021); public static readonly SequenceGUID SEQ_Shared_Trigger_201 = new SequenceGUID(574605216); public static readonly SequenceGUID SEQ_Shared_Area_Impact_237 = new SequenceGUID(-1953036390); public static readonly SequenceGUID SEQ_Shared_Hit_490 = new SequenceGUID(354874505); public static readonly SequenceGUID SEQ_Shared_Trigger_202 = new SequenceGUID(-69691280); public static readonly SequenceGUID SEQ_Shared_Area_Impact_238 = new SequenceGUID(1288991488); public static readonly SequenceGUID SEQ_Shared_Hit_491 = new SequenceGUID(-1749225063); public static readonly SequenceGUID SEQ_Shared_Hit_492 = new SequenceGUID(228304744); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_16 = new SequenceGUID(765825461); public static readonly SequenceGUID SEQ_PickupItem_01_16 = new SequenceGUID(1251259864); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_17 = new SequenceGUID(1176491910); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_100 = new SequenceGUID(-200586267); public static readonly SequenceGUID SEQ_Shared_Hit_493 = new SequenceGUID(776798813); public static readonly SequenceGUID SEQ_Shared_Hit_494 = new SequenceGUID(1720541515); public static readonly SequenceGUID SEQ_Shared_Area_Impact_239 = new SequenceGUID(1413235818); public static readonly SequenceGUID SEQ_Shared_Trigger_203 = new SequenceGUID(-995863070); public static readonly SequenceGUID SEQ_Shared_Trigger_204 = new SequenceGUID(-327810191); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_101 = new SequenceGUID(822496223); public static readonly SequenceGUID SEQ_Shared_Hit_495 = new SequenceGUID(-150566818); public static readonly SequenceGUID SEQ_Shared_Projectile_182 = new SequenceGUID(-536867212); public static readonly SequenceGUID SEQ_Shared_Area_Effect_79 = new SequenceGUID(11753654); public static readonly SequenceGUID SEQ_Subdue_Channel = new SequenceGUID(312301725); public static readonly SequenceGUID SEQ_IronMine_ChasmEruption = new SequenceGUID(756734787); public static readonly SequenceGUID SEQ_Shared_Area_Impact_240 = new SequenceGUID(1719553665); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_102 = new SequenceGUID(-1468272929); public static readonly SequenceGUID SEQ_Shared_Hit_496 = new SequenceGUID(1829079686); public static readonly SequenceGUID SEQ_Shared_Projectile_183 = new SequenceGUID(-309582389); public static readonly SequenceGUID SEQ_Shared_Area_Impact_241 = new SequenceGUID(813243527); public static readonly SequenceGUID SEQ_Shared_Area_Impact_242 = new SequenceGUID(816611669); public static readonly SequenceGUID SEQ_Shared_Area_Impact_243 = new SequenceGUID(1581245170); public static readonly SequenceGUID SEQ_Shared_Hit_497 = new SequenceGUID(1747111645); public static readonly SequenceGUID SEQ_Shared_Area_Impact_244 = new SequenceGUID(-1448020612); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_103 = new SequenceGUID(1102689581); public static readonly SequenceGUID SEQ_Shared_Hit_498 = new SequenceGUID(-2077045235); public static readonly SequenceGUID SEQ_Shared_Projectile_184 = new SequenceGUID(-1401687079); public static readonly SequenceGUID SEQ_Shared_Trigger_205 = new SequenceGUID(-321849538); public static readonly SequenceGUID SEQ_Shared_Area_Impact_245 = new SequenceGUID(63924157); public static readonly SequenceGUID SEQ_Shared_Area_Impact_246 = new SequenceGUID(-764682251); public static readonly SequenceGUID SEQ_Shared_Hit_499 = new SequenceGUID(-125103725); public static readonly SequenceGUID SEQ_Shared_Hit_500 = new SequenceGUID(1992239512); public static readonly SequenceGUID SEQ_Shared_Projectile_185 = new SequenceGUID(-290230347); public static readonly SequenceGUID SEQ_Shared_Object_Hit_90 = new SequenceGUID(-1591645477); public static readonly SequenceGUID SEQ_Shared_Area_Impact_247 = new SequenceGUID(1277248395); public static readonly SequenceGUID SEQ_Shared_Area_Impact_248 = new SequenceGUID(716516394); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_104 = new SequenceGUID(1363218680); public static readonly SequenceGUID SEQ_Shared_Hit_501 = new SequenceGUID(918220649); public static readonly SequenceGUID SEQ_Shared_Projectile_186 = new SequenceGUID(1709409893); public static readonly SequenceGUID SEQ_Shared_Hit_502 = new SequenceGUID(-719908541); public static readonly SequenceGUID SEQ_Shared_Trigger_206 = new SequenceGUID(-536777161); public static readonly SequenceGUID SEQ_TheProfessor_OrbOverlaod_Beam_Buff = new SequenceGUID(1505944384); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_105 = new SequenceGUID(34775666); public static readonly SequenceGUID SEQ_Shared_Projectile_187 = new SequenceGUID(-1958127206); public static readonly SequenceGUID SEQ_Shared_Trigger_207 = new SequenceGUID(-1697146649); public static readonly SequenceGUID SEQ_SpectralGuardian_Beam_Buff = new SequenceGUID(1769063499); public static readonly SequenceGUID SEQ_Shared_Area_Impact_249 = new SequenceGUID(93016570); public static readonly SequenceGUID SEQ_Shared_Area_Impact_250 = new SequenceGUID(529567193); public static readonly SequenceGUID SEQ_Shared_Hit_503 = new SequenceGUID(-454201079); public static readonly SequenceGUID SEQ_Shared_Hit_504 = new SequenceGUID(1366808220); public static readonly SequenceGUID SEQ_Shared_Area_Impact_251 = new SequenceGUID(721349628); public static readonly SequenceGUID SEQ_Shared_Area_Impact_252 = new SequenceGUID(615960480); public static readonly SequenceGUID SEQ_Shared_Projectile_188 = new SequenceGUID(707296953); public static readonly SequenceGUID SEQ_Shared_Area_Impact_253 = new SequenceGUID(1886598453); public static readonly SequenceGUID SEQ_Shared_Area_Effect_80 = new SequenceGUID(1022100586); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_106 = new SequenceGUID(-1168384204); public static readonly SequenceGUID SEQ_Shared_Hit_505 = new SequenceGUID(-243689524); public static readonly SequenceGUID SEQ_Shared_Projectile_189 = new SequenceGUID(1321317137); public static readonly SequenceGUID SEQ_Shared_Trigger_208 = new SequenceGUID(-860731369); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_107 = new SequenceGUID(-619499668); public static readonly SequenceGUID SEQ_Shared_Projectile_190 = new SequenceGUID(-725366258); public static readonly SequenceGUID SEQ_Shared_Area_Impact_254 = new SequenceGUID(-913266457); public static readonly SequenceGUID SEQ_Shared_Trigger_209 = new SequenceGUID(-1766246717); public static readonly SequenceGUID SEQ_Shared_Area_Impact_255 = new SequenceGUID(1097170136); public static readonly SequenceGUID SEQ_Shared_Hit_506 = new SequenceGUID(708290064); public static readonly SequenceGUID SEQ_Shared_Hit_507 = new SequenceGUID(-1515409240); public static readonly SequenceGUID SEQ_Shared_Trigger_210 = new SequenceGUID(-395116774); public static readonly SequenceGUID SEQ_Shared_Hit_508 = new SequenceGUID(1829233356); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_108 = new SequenceGUID(1626288075); public static readonly SequenceGUID SEQ_Shared_Area_Impact_256 = new SequenceGUID(-717727388); public static readonly SequenceGUID SEQ_Shared_Area_Effect_81 = new SequenceGUID(52167440); public static readonly SequenceGUID SEQ_Shared_Hit_509 = new SequenceGUID(-1258190505); public static readonly SequenceGUID SEQ_Shared_Area_Effect_82 = new SequenceGUID(-527358599); public static readonly SequenceGUID SEQ_Shared_Hit_510 = new SequenceGUID(141563393); public static readonly SequenceGUID SEQ_Shared_Area_Impact_257 = new SequenceGUID(-735131857); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_109 = new SequenceGUID(-1690968935); public static readonly SequenceGUID SEQ_Shared_Hit_511 = new SequenceGUID(-2012233508); public static readonly SequenceGUID SEQ_Shared_Projectile_191 = new SequenceGUID(2105396773); public static readonly SequenceGUID SEQ_Shared_Projectile_192 = new SequenceGUID(-1718292996); public static readonly SequenceGUID SEQ_Shared_Hit_512 = new SequenceGUID(-344135674); public static readonly SequenceGUID SEQ_Shared_Hit_513 = new SequenceGUID(1662743002); public static readonly SequenceGUID SEQ_Shared_Hit_514 = new SequenceGUID(1766878233); public static readonly SequenceGUID SEQ_Shared_Projectile_193 = new SequenceGUID(-1250990984); public static readonly SequenceGUID SEQ_Shared_GateBoss_3 = new SequenceGUID(569777929); public static readonly SequenceGUID SEQ_Shared_Trigger_211 = new SequenceGUID(-317257962); public static readonly SequenceGUID SEQ_Shared_Area_Impact_258 = new SequenceGUID(-1989311270); public static readonly SequenceGUID SEQ_Shared_Leap_End_4 = new SequenceGUID(1703364060); public static readonly SequenceGUID SEQ_Shared_Trigger_212 = new SequenceGUID(223622602); public static readonly SequenceGUID SEQ_Shared_Trigger_213 = new SequenceGUID(-199903997); public static readonly SequenceGUID SEQ_Shared_Hit_515 = new SequenceGUID(1720561057); public static readonly SequenceGUID SEQ_Shared_Area_Impact_259 = new SequenceGUID(-1539733650); public static readonly SequenceGUID SEQ_Shared_Hit_516 = new SequenceGUID(-1303062805); public static readonly SequenceGUID SEQ_Shared_Hit_517 = new SequenceGUID(-1075020893); public static readonly SequenceGUID SEQ_Shared_Area_Effect_83 = new SequenceGUID(406406261); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_110 = new SequenceGUID(-584172306); public static readonly SequenceGUID SEQ_Shared_Hit_518 = new SequenceGUID(-2049488126); public static readonly SequenceGUID SEQ_Shared_Projectile_194 = new SequenceGUID(-1769636462); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_111 = new SequenceGUID(847508509); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_112 = new SequenceGUID(-1822069905); public static readonly SequenceGUID SEQ_Shared_Hit_519 = new SequenceGUID(548082617); public static readonly SequenceGUID SEQ_Shared_Projectile_195 = new SequenceGUID(501080314); public static readonly SequenceGUID SEQ_Shared_Hit_520 = new SequenceGUID(-1947078541); public static readonly SequenceGUID SEQ_Shared_Trigger_214 = new SequenceGUID(740800293); public static readonly SequenceGUID SEQ_Shared_Trigger_215 = new SequenceGUID(-478161378); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_113 = new SequenceGUID(1840263279); public static readonly SequenceGUID SEQ_Shared_Hit_521 = new SequenceGUID(-2134604597); public static readonly SequenceGUID SEQ_Shared_Projectile_196 = new SequenceGUID(1142621534); public static readonly SequenceGUID SEQ_Shared_Area_Impact_260 = new SequenceGUID(389017032); public static readonly SequenceGUID SEQ_Shared_Hit_522 = new SequenceGUID(1796807301); public static readonly SequenceGUID SEQ_Shared_Trigger_216 = new SequenceGUID(1808124315); public static readonly SequenceGUID SEQ_Vampire_Death_Dracula = new SequenceGUID(1604092347); public static readonly SequenceGUID SEQ_Knight_Shield_Block_01 = new SequenceGUID(1583439147); public static readonly SequenceGUID SEQ_MilitiaHeavy_Buff_Block = new SequenceGUID(-478682301); public static readonly SequenceGUID SEQ_Shared_Hit_523 = new SequenceGUID(-865094267); public static readonly SequenceGUID SEQ_Shared_Projectile_197 = new SequenceGUID(1925140185); public static readonly SequenceGUID SEQ_Shared_Trigger_217 = new SequenceGUID(1693482161); public static readonly SequenceGUID SEQ_Shared_Hit_524 = new SequenceGUID(-927699517); public static readonly SequenceGUID SEQ_Shared_Hit_525 = new SequenceGUID(-60020250); public static readonly SequenceGUID SEQ_Shared_Hit_526 = new SequenceGUID(-1619351538); public static readonly SequenceGUID SEQ_Shared_Area_Impact_261 = new SequenceGUID(842440759); public static readonly SequenceGUID SEQ_Shared_Hit_527 = new SequenceGUID(-357058674); public static readonly SequenceGUID SEQ_Shared_Hit_528 = new SequenceGUID(-1402462619); public static readonly SequenceGUID SEQ_Shared_Hit_529 = new SequenceGUID(-851847475); public static readonly SequenceGUID SEQ_Shared_Hit_530 = new SequenceGUID(-951622561); public static readonly SequenceGUID SEQ_PickupItem_01_17 = new SequenceGUID(2066003416); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_18 = new SequenceGUID(1142588475); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_114 = new SequenceGUID(1761327172); public static readonly SequenceGUID SEQ_Shared_Hit_531 = new SequenceGUID(-1370050183); public static readonly SequenceGUID SEQ_Shared_Projectile_198 = new SequenceGUID(333804862); public static readonly SequenceGUID SEQ_Shared_Leap_End_5 = new SequenceGUID(1277214305); public static readonly SequenceGUID SEQ_Shared_Area_Impact_262 = new SequenceGUID(954878270); public static readonly SequenceGUID SEQ_Shared_Hit_532 = new SequenceGUID(-767056208); public static readonly SequenceGUID SEQ_Shared_Hit_533 = new SequenceGUID(1887325870); public static readonly SequenceGUID SEQ_Shared_Hit_534 = new SequenceGUID(1151083370); public static readonly SequenceGUID SEQ_Shared_Hit_535 = new SequenceGUID(-220989379); public static readonly SequenceGUID SEQ_Shared_Projectile_199 = new SequenceGUID(1142733945); public static readonly SequenceGUID SEQ_Shared_Area_Ground_10 = new SequenceGUID(76663083); public static readonly SequenceGUID SEQ_Poison_Debuff = new SequenceGUID(-174380957); public static readonly SequenceGUID SEQ_Shared_Trigger_218 = new SequenceGUID(-51189933); public static readonly SequenceGUID SEQ_Shared_Trigger_219 = new SequenceGUID(-1713194917); public static readonly SequenceGUID SEQ_Shared_Area_Impact_263 = new SequenceGUID(-770122380); public static readonly SequenceGUID SEQ_Shared_Object_Hit_91 = new SequenceGUID(1312760984); public static readonly SequenceGUID SEQ_Shared_Area_Impact_264 = new SequenceGUID(1312700725); public static readonly SequenceGUID SEQ_Shared_Area_Impact_265 = new SequenceGUID(576941062); public static readonly SequenceGUID SEQ_Shared_Trigger_220 = new SequenceGUID(-1596913366); public static readonly SequenceGUID SEQ_Shared_Hit_536 = new SequenceGUID(1990256007); public static readonly SequenceGUID SEQ_Shared_Area_Impact_266 = new SequenceGUID(1517269966); public static readonly SequenceGUID SEQ_Shared_Area_Impact_267 = new SequenceGUID(-1602027320); public static readonly SequenceGUID SEQ_Weapon_Spear_Stab = new SequenceGUID(1023965651); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_115 = new SequenceGUID(217928898); public static readonly SequenceGUID SEQ_Shared_Hit_537 = new SequenceGUID(-1619583614); public static readonly SequenceGUID SEQ_Shared_Hit_538 = new SequenceGUID(22968261); public static readonly SequenceGUID SEQ_Shared_Projectile_200 = new SequenceGUID(936402249); public static readonly SequenceGUID SEQ_Shared_Trigger_221 = new SequenceGUID(1984338095); public static readonly SequenceGUID SEQ_Shared_Area_Impact_268 = new SequenceGUID(-391757936); public static readonly SequenceGUID SEQ_Shared_Hit_539 = new SequenceGUID(999358892); public static readonly SequenceGUID SEQ_Shared_Projectile_201 = new SequenceGUID(-375254726); public static readonly SequenceGUID SEQ_Shared_Hit_540 = new SequenceGUID(-10068880); public static readonly SequenceGUID SEQ_Shared_Area_Impact_269 = new SequenceGUID(-1530051811); public static readonly SequenceGUID SEQ_Shared_Area_Impact_270 = new SequenceGUID(1997640006); public static readonly SequenceGUID SEQ_Shared_Trigger_222 = new SequenceGUID(-1246218722); public static readonly SequenceGUID SEQ_Shared_Trigger_223 = new SequenceGUID(2100991243); public static readonly SequenceGUID SEQ_Shared_Hit_541 = new SequenceGUID(299502722); public static readonly SequenceGUID SEQ_Shared_Trigger_224 = new SequenceGUID(-1947061639); public static readonly SequenceGUID SEQ_Shared_Hit_542 = new SequenceGUID(-1241926334); public static readonly SequenceGUID SEQ_Shared_Trigger_225 = new SequenceGUID(1545469867); public static readonly SequenceGUID SEQ_Shared_Trigger_226 = new SequenceGUID(1763923293); public static readonly SequenceGUID SEQ_Shared_Hit_543 = new SequenceGUID(425047164); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_116 = new SequenceGUID(-2007371219); public static readonly SequenceGUID SEQ_Shared_Projectile_202 = new SequenceGUID(1294792188); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_117 = new SequenceGUID(1056468717); public static readonly SequenceGUID SEQ_Shared_Hit_544 = new SequenceGUID(867142421); public static readonly SequenceGUID SEQ_Shared_Projectile_203 = new SequenceGUID(-1864287622); public static readonly SequenceGUID SEQ_Shared_Trigger_227 = new SequenceGUID(746535632); public static readonly SequenceGUID SEQ_Shared_Hit_545 = new SequenceGUID(-199962767); public static readonly SequenceGUID SEQ_Shared_Area_Impact_271 = new SequenceGUID(-42279789); public static readonly SequenceGUID SEQ_Shared_Hit_546 = new SequenceGUID(-1290161058); public static readonly SequenceGUID SEQ_Shared_Hit_547 = new SequenceGUID(1010830073); public static readonly SequenceGUID SEQ_Shared_Hit_548 = new SequenceGUID(594501720); public static readonly SequenceGUID SEQ_Shared_Hit_549 = new SequenceGUID(1581969942); public static readonly SequenceGUID SEQ_Shared_Trigger_228 = new SequenceGUID(-1077172713); public static readonly SequenceGUID SEQ_Shared_Area_Effect_84 = new SequenceGUID(372412770); public static readonly SequenceGUID SEQ_Shared_Area_Impact_272 = new SequenceGUID(1156449364); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_118 = new SequenceGUID(1104549185); public static readonly SequenceGUID SEQ_Shared_Hit_550 = new SequenceGUID(1541256638); public static readonly SequenceGUID SEQ_Shared_Projectile_204 = new SequenceGUID(418894217); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_119 = new SequenceGUID(-180588265); public static readonly SequenceGUID SEQ_Shared_Hit_551 = new SequenceGUID(-1403920329); public static readonly SequenceGUID SEQ_Shared_Object_Hit_92 = new SequenceGUID(-1183544401); public static readonly SequenceGUID SEQ_Shared_Trigger_229 = new SequenceGUID(-704087057); public static readonly SequenceGUID SEQ_Shared_Trigger_230 = new SequenceGUID(-1403671537); public static readonly SequenceGUID SEQ_Shared_Hit_552 = new SequenceGUID(-1168572513); public static readonly SequenceGUID SEQ_Shared_Hit_553 = new SequenceGUID(-57335135); public static readonly SequenceGUID SEQ_Vampire_Equipment_Destroyed = new SequenceGUID(-1423518911); public static readonly SequenceGUID SEQ_Shared_Hit_554 = new SequenceGUID(-907105482); public static readonly SequenceGUID SEQ_Charm_Channel = new SequenceGUID(-541113174); public static readonly SequenceGUID SEQ_Shared_Trigger_231 = new SequenceGUID(839581339); public static readonly SequenceGUID SEQ_Shared_Hit_555 = new SequenceGUID(-1816741359); public static readonly SequenceGUID SEQ_Shared_Hit_556 = new SequenceGUID(1054115185); public static readonly SequenceGUID SEQ_Shared_Hit_557 = new SequenceGUID(685917076); public static readonly SequenceGUID SEQ_ContestDuelCountdown = new SequenceGUID(1618564752); public static readonly SequenceGUID SEQ_Shared_Area_Impact_273 = new SequenceGUID(-293361345); public static readonly SequenceGUID SEQ_Beam_OwnerToSelf_2 = new SequenceGUID(-1439201532); public static readonly SequenceGUID SEQ_Shared_Area_Effect_85 = new SequenceGUID(-2116616007); public static readonly SequenceGUID SEQ_Shared_Hit_558 = new SequenceGUID(-1275290431); public static readonly SequenceGUID SEQ_Shared_Projectile_205 = new SequenceGUID(-2282829); public static readonly SequenceGUID SEQ_Shared_Hit_559 = new SequenceGUID(-1431635272); public static readonly SequenceGUID SEQ_Shared_Hit_560 = new SequenceGUID(-1329455579); public static readonly SequenceGUID SEQ_Shared_Trigger_232 = new SequenceGUID(-1230519565); public static readonly SequenceGUID SEQ_Shared_Area_Effect_86 = new SequenceGUID(333228978); public static readonly SequenceGUID SEQ_Shared_Area_Effect_87 = new SequenceGUID(202829711); public static readonly SequenceGUID SEQ_Shared_Area_Effect_88 = new SequenceGUID(-705768129); public static readonly SequenceGUID SEQ_Shared_Hit_561 = new SequenceGUID(-1438189458); public static readonly SequenceGUID SEQ_Shared_Trigger_233 = new SequenceGUID(-370040995); public static readonly SequenceGUID SEQ_Shared_Trigger_234 = new SequenceGUID(1397330676); public static readonly SequenceGUID SEQ_Shared_Hit_562 = new SequenceGUID(-2076796052); public static readonly SequenceGUID SEQ_Shared_Area_Impact_274 = new SequenceGUID(1128312129); public static readonly SequenceGUID SEQ_Shared_Continious_Area_8 = new SequenceGUID(-1013119289); public static readonly SequenceGUID SEQ_Shared_Trigger_235 = new SequenceGUID(-1180909364); public static readonly SequenceGUID SEQ_Shared_Area_Effect_89 = new SequenceGUID(73003749); public static readonly SequenceGUID SEQ_Shared_Trigger_236 = new SequenceGUID(-1528359106); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_154 = new SequenceGUID(1102885206); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_120 = new SequenceGUID(715895534); public static readonly SequenceGUID SEQ_Shared_Hit_563 = new SequenceGUID(1010469649); public static readonly SequenceGUID SEQ_Shared_Projectile_206 = new SequenceGUID(-1128141524); public static readonly SequenceGUID SEQ_Shared_Area_Effect_90 = new SequenceGUID(-1236104010); public static readonly SequenceGUID SEQ_Shared_Trigger_237 = new SequenceGUID(296000484); public static readonly SequenceGUID SEQ_Shared_Trigger_238 = new SequenceGUID(120221509); public static readonly SequenceGUID SEQ_Shared_Trigger_239 = new SequenceGUID(-854879316); public static readonly SequenceGUID SEQ_Shared_Trigger_240 = new SequenceGUID(1560723347); public static readonly SequenceGUID SEQ_Shared_Area_Impact_275 = new SequenceGUID(-1364277407); public static readonly SequenceGUID SEQ_Shared_Hit_564 = new SequenceGUID(-1349879000); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_1 = new SequenceGUID(-1664102761); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_121 = new SequenceGUID(612655954); public static readonly SequenceGUID SEQ_Shared_Hit_565 = new SequenceGUID(1255146095); public static readonly SequenceGUID SEQ_Shared_Projectile_207 = new SequenceGUID(-562172198); public static readonly SequenceGUID SEQ_Shared_Trigger_241 = new SequenceGUID(-1041166085); public static readonly SequenceGUID SEQ_Shared_Area_Impact_276 = new SequenceGUID(1853273900); public static readonly SequenceGUID SEQ_Shared_Hit_566 = new SequenceGUID(68807099); public static readonly SequenceGUID SEQ_Darkness_Petrify_Buff = new SequenceGUID(1374217512); public static readonly SequenceGUID SEQ_Shared_Projectile_208 = new SequenceGUID(1905034704); public static readonly SequenceGUID SEQ_Shared_Hit_567 = new SequenceGUID(-752531463); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_122 = new SequenceGUID(1232410797); public static readonly SequenceGUID SEQ_Shared_Hit_568 = new SequenceGUID(-1110794412); public static readonly SequenceGUID SEQ_Shared_Projectile_209 = new SequenceGUID(1755152934); public static readonly SequenceGUID SEQ_Shared_Hit_569 = new SequenceGUID(-1613014947); public static readonly SequenceGUID SEQ_Shared_Hit_570 = new SequenceGUID(1746023200); public static readonly SequenceGUID SEQ_Shared_Trigger_242 = new SequenceGUID(-1869614338); public static readonly SequenceGUID SEQ_Shared_Trigger_243 = new SequenceGUID(-332032270); public static readonly SequenceGUID SEQ_Shared_Trigger_244 = new SequenceGUID(-629840546); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_123 = new SequenceGUID(-1228870366); public static readonly SequenceGUID SEQ_Shared_Hit_571 = new SequenceGUID(-1987204557); public static readonly SequenceGUID SEQ_Shared_Projectile_210 = new SequenceGUID(276930057); public static readonly SequenceGUID SEQ_Shared_Trigger_245 = new SequenceGUID(84638466); public static readonly SequenceGUID SEQ_Shared_Area_Impact_277 = new SequenceGUID(357771862); public static readonly SequenceGUID SEQ_Shared_Area_Impact_278 = new SequenceGUID(1101466001); public static readonly SequenceGUID SEQ_Shared_Hit_572 = new SequenceGUID(1761174407); public static readonly SequenceGUID SEQ_Shared_Hit_573 = new SequenceGUID(-626025380); public static readonly SequenceGUID SEQ_Shared_Trigger_246 = new SequenceGUID(740273977); public static readonly SequenceGUID SEQ_Shared_Hit_574 = new SequenceGUID(1142896899); public static readonly SequenceGUID SEQ_Shared_Trigger_247 = new SequenceGUID(202465040); public static readonly SequenceGUID SEQ_Shared_Trigger_248 = new SequenceGUID(752617637); public static readonly SequenceGUID SEQ_Shared_Area_Effect_91 = new SequenceGUID(-645341104); public static readonly SequenceGUID SEQ_Shared_Hit_575 = new SequenceGUID(-602969639); public static readonly SequenceGUID SEQ_Shared_Leap_End_6 = new SequenceGUID(-648329207); public static readonly SequenceGUID SEQ_Shared_Trigger_249 = new SequenceGUID(-1686773479); public static readonly SequenceGUID SEQ_Shared_Area_Impact_279 = new SequenceGUID(-2063011923); public static readonly SequenceGUID SEQ_Shared_Hit_576 = new SequenceGUID(349440533); public static readonly SequenceGUID SEQ_Shared_Trigger_250 = new SequenceGUID(685555119); public static readonly SequenceGUID SEQ_Shared_Area_Impact_280 = new SequenceGUID(-441244995); public static readonly SequenceGUID SEQ_Shared_Hit_577 = new SequenceGUID(556782494); public static readonly SequenceGUID SEQ_Shared_Hit_578 = new SequenceGUID(-398605883); public static readonly SequenceGUID SEQ_Shared_Projectile_211 = new SequenceGUID(-1499136457); public static readonly SequenceGUID SEQ_Shared_Hit_579 = new SequenceGUID(-595358216); public static readonly SequenceGUID SEQ_Shared_Area_Impact_281 = new SequenceGUID(-856475744); public static readonly SequenceGUID SEQ_Shared_Hit_580 = new SequenceGUID(-1613005302); public static readonly SequenceGUID SEQ_Shared_Hit_581 = new SequenceGUID(-1633967988); public static readonly SequenceGUID SEQ_Charm_Debuff = new SequenceGUID(-466121884); public static readonly SequenceGUID SEQ_Shared_Hit_582 = new SequenceGUID(1803982724); public static readonly SequenceGUID SEQ_Shared_Projectile_212 = new SequenceGUID(2080118197); public static readonly SequenceGUID SEQ_Contest_ObserverExit = new SequenceGUID(-148756924); public static readonly SequenceGUID SEQ_Contest_ObserverVisible = new SequenceGUID(810455553); public static readonly SequenceGUID SEQ_Contest_ObserverHide = new SequenceGUID(-1259947865); public static readonly SequenceGUID SEQ_Shared_Trigger_251 = new SequenceGUID(-1200588287); public static readonly SequenceGUID SEQ_Shared_Trigger_252 = new SequenceGUID(-553383528); public static readonly SequenceGUID SEQ_Shared_Trigger_253 = new SequenceGUID(211614626); public static readonly SequenceGUID SEQ_Shared_Object_Hit_93 = new SequenceGUID(-2039880531); public static readonly SequenceGUID SEQ_Shared_Area_Impact_282 = new SequenceGUID(-2112216230); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_124 = new SequenceGUID(1001745296); public static readonly SequenceGUID SEQ_Shared_Hit_583 = new SequenceGUID(-962204403); public static readonly SequenceGUID SEQ_Shared_Projectile_213 = new SequenceGUID(-1764772923); public static readonly SequenceGUID SEQ_Shared_Trigger_254 = new SequenceGUID(-1735628954); public static readonly SequenceGUID SEQ_Shared_Trigger_255 = new SequenceGUID(1859325870); public static readonly SequenceGUID SEQ_Shared_Hit_584 = new SequenceGUID(-415983259); public static readonly SequenceGUID SEQ_Shared_Hit_585 = new SequenceGUID(-1235075100); public static readonly SequenceGUID SEQ_Shared_Area_Impact_283 = new SequenceGUID(-1192783690); public static readonly SequenceGUID SEQ_Shared_GateBoss_4 = new SequenceGUID(1415975628); public static readonly SequenceGUID SEQ_Shared_Hit_586 = new SequenceGUID(-1017467463); public static readonly SequenceGUID SEQ_Shared_Hit_587 = new SequenceGUID(941886791); public static readonly SequenceGUID SEQ_Shared_Trigger_256 = new SequenceGUID(-873954755); public static readonly SequenceGUID SEQ_Shared_Hit_588 = new SequenceGUID(-758913989); public static readonly SequenceGUID SEQ_Shared_Area_Impact_284 = new SequenceGUID(-926446067); public static readonly SequenceGUID SEQ_Shared_Trigger_257 = new SequenceGUID(-957038913); public static readonly SequenceGUID SEQ_Shared_Trigger_258 = new SequenceGUID(-1988240162); public static readonly SequenceGUID SEQ_Shared_Area_Effect_92 = new SequenceGUID(-227907765); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_125 = new SequenceGUID(-1654107403); public static readonly SequenceGUID SEQ_Shared_Hit_589 = new SequenceGUID(2097154864); public static readonly SequenceGUID SEQ_Shared_Projectile_214 = new SequenceGUID(1997203425); public static readonly SequenceGUID SEQ_Shared_Area_Impact_285 = new SequenceGUID(534003605); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_126 = new SequenceGUID(732182922); public static readonly SequenceGUID SEQ_Shared_Projectile_215 = new SequenceGUID(1173167358); public static readonly SequenceGUID SEQ_Shared_Area_Impact_286 = new SequenceGUID(-1775775882); public static readonly SequenceGUID SEQ_Shared_Hit_590 = new SequenceGUID(-752842586); public static readonly SequenceGUID SEQ_Shared_Hit_591 = new SequenceGUID(-1085372498); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_127 = new SequenceGUID(1835708657); public static readonly SequenceGUID SEQ_Shared_Projectile_216 = new SequenceGUID(123636636); public static readonly SequenceGUID SEQ_Shared_Object_Hit_94 = new SequenceGUID(1892438511); public static readonly SequenceGUID SEQ_Shared_Area_Effect_93 = new SequenceGUID(178203631); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_128 = new SequenceGUID(-1719992267); public static readonly SequenceGUID SEQ_Shared_Hit_592 = new SequenceGUID(-1976043923); public static readonly SequenceGUID SEQ_Shared_Projectile_217 = new SequenceGUID(1331124164); public static readonly SequenceGUID SEQ_Shared_Trigger_259 = new SequenceGUID(2104278978); public static readonly SequenceGUID SEQ_Shared_Area_Effect_94 = new SequenceGUID(1961689023); public static readonly SequenceGUID SEQ_Shared_Hit_593 = new SequenceGUID(-1391261211); public static readonly SequenceGUID SEQ_Shared_Area_Impact_287 = new SequenceGUID(-1257290719); public static readonly SequenceGUID SEQ_WarningCircle = new SequenceGUID(2084522387); public static readonly SequenceGUID SEQ_Shared_Area_Impact_288 = new SequenceGUID(-2061519387); public static readonly SequenceGUID SEQ_Shared_Area_Impact_289 = new SequenceGUID(-1810189109); public static readonly SequenceGUID SEQ_Shared_Hit_594 = new SequenceGUID(526904093); public static readonly SequenceGUID SEQ_Shared_Hit_595 = new SequenceGUID(-1262060574); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_129 = new SequenceGUID(1321411907); public static readonly SequenceGUID SEQ_Shared_Projectile_218 = new SequenceGUID(-764735360); public static readonly SequenceGUID SEQ_Shared_Hit_596 = new SequenceGUID(-2058497199); public static readonly SequenceGUID SEQ_Shared_Hit_597 = new SequenceGUID(-1580370845); public static readonly SequenceGUID SEQ_Shared_Hit_598 = new SequenceGUID(-422619776); public static readonly SequenceGUID SEQ_Shared_Hit_599 = new SequenceGUID(38507398); public static readonly SequenceGUID SEQ_Shared_Area_Impact_290 = new SequenceGUID(1444437285); public static readonly SequenceGUID SEQ_Shared_Area_Impact_291 = new SequenceGUID(-1816887814); public static readonly SequenceGUID SEQ_Shared_Area_Impact_292 = new SequenceGUID(1688993142); public static readonly SequenceGUID SEQ_Shared_Projectile_219 = new SequenceGUID(1566060399); public static readonly SequenceGUID SEQ_Shared_Area_Impact_293 = new SequenceGUID(-574461035); public static readonly SequenceGUID SEQ_Shared_Hit_600 = new SequenceGUID(1864507070); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_130 = new SequenceGUID(-1777270768); public static readonly SequenceGUID SEQ_Shared_Projectile_220 = new SequenceGUID(-186976722); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_131 = new SequenceGUID(539453734); public static readonly SequenceGUID SEQ_Shared_Hit_601 = new SequenceGUID(-465524335); public static readonly SequenceGUID SEQ_Shared_Projectile_221 = new SequenceGUID(-146339672); public static readonly SequenceGUID SEQ_Shared_Area_Ground_11 = new SequenceGUID(788073950); public static readonly SequenceGUID SEQ_Shared_Hit_602 = new SequenceGUID(1743662290); public static readonly SequenceGUID SEQ_Shared_Hit_603 = new SequenceGUID(-1110309614); public static readonly SequenceGUID SEQ_Shared_Hit_604 = new SequenceGUID(-1711410514); public static readonly SequenceGUID SEQ_Shared_Projectile_222 = new SequenceGUID(1261785019); public static readonly SequenceGUID SEQ_Shared_Hit_605 = new SequenceGUID(981629392); public static readonly SequenceGUID SEQ_Shared_Area_Impact_294 = new SequenceGUID(427268291); public static readonly SequenceGUID SEQ_Shared_Hit_606 = new SequenceGUID(1877706705); public static readonly SequenceGUID SEQ_Shared_Projectile_223 = new SequenceGUID(676196092); public static readonly SequenceGUID SEQ_Shared_Hit_607 = new SequenceGUID(-2113260347); public static readonly SequenceGUID SEQ_Shared_Area_Impact_295 = new SequenceGUID(-58242291); public static readonly SequenceGUID SEQ_Shared_Area_Effect_95 = new SequenceGUID(1260731425); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_132 = new SequenceGUID(-1499169110); public static readonly SequenceGUID SEQ_Shared_Hit_608 = new SequenceGUID(-667780890); public static readonly SequenceGUID SEQ_Shared_Projectile_224 = new SequenceGUID(-603342987); public static readonly SequenceGUID SEQ_Shared_Area_Impact_296 = new SequenceGUID(-112344639); public static readonly SequenceGUID SEQ_Shared_Area_Impact_297 = new SequenceGUID(-27126783); public static readonly SequenceGUID SEQ_Shared_Hit_609 = new SequenceGUID(1262554032); public static readonly SequenceGUID SEQ_Shared_Hit_610 = new SequenceGUID(-1940372184); public static readonly SequenceGUID SEQ_Shared_Hit_611 = new SequenceGUID(1904258242); public static readonly SequenceGUID SEQ_Shared_Trigger_260 = new SequenceGUID(-1596071815); public static readonly SequenceGUID SEQ_Shared_Area_Impact_298 = new SequenceGUID(-1434550181); public static readonly SequenceGUID SEQ_Shared_Leap_End_7 = new SequenceGUID(2010637471); public static readonly SequenceGUID SEQ_Geomancer_Golem_Beam_Buff = new SequenceGUID(154919966); public static readonly SequenceGUID SEQ_Shared_Trigger_261 = new SequenceGUID(-1843103084); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_133 = new SequenceGUID(-909341687); public static readonly SequenceGUID SEQ_Shared_Hit_612 = new SequenceGUID(-555612692); public static readonly SequenceGUID SEQ_Shared_Projectile_225 = new SequenceGUID(385795910); public static readonly SequenceGUID SEQ_Shared_Hit_613 = new SequenceGUID(-739652912); public static readonly SequenceGUID SEQ_PickupItem_01_18 = new SequenceGUID(-887835176); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_19 = new SequenceGUID(2131282736); public static readonly SequenceGUID SEQ_Shared_Hit_614 = new SequenceGUID(-2074397214); public static readonly SequenceGUID SEQ_Shared_Projectile_226 = new SequenceGUID(-1684929367); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_134 = new SequenceGUID(-957533660); public static readonly SequenceGUID SEQ_Shared_Area_Impact_299 = new SequenceGUID(458594906); public static readonly SequenceGUID SEQ_Shared_Trigger_262 = new SequenceGUID(-774293756); public static readonly SequenceGUID SEQ_Shared_Area_Impact_300 = new SequenceGUID(-315059969); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_6 = new SequenceGUID(517307528); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_135 = new SequenceGUID(516113645); public static readonly SequenceGUID SEQ_Shared_Hit_615 = new SequenceGUID(973471175); public static readonly SequenceGUID SEQ_Shared_Area_Impact_301 = new SequenceGUID(-1399521708); public static readonly SequenceGUID SEQ_Shared_Area_Impact_302 = new SequenceGUID(-1934766366); public static readonly SequenceGUID SEQ_Shared_Hit_616 = new SequenceGUID(1109484814); public static readonly SequenceGUID SEQ_Shared_Hit_617 = new SequenceGUID(-1630607282); public static readonly SequenceGUID SEQ_Shared_Hit_618 = new SequenceGUID(-1080657452); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_136 = new SequenceGUID(-2096713945); public static readonly SequenceGUID SEQ_Shared_Hit_619 = new SequenceGUID(-257247608); public static readonly SequenceGUID SEQ_Shared_Projectile_227 = new SequenceGUID(-1293179151); public static readonly SequenceGUID SEQ_Shared_Hit_620 = new SequenceGUID(-1263778784); public static readonly SequenceGUID SEQ_Shared_Hit_621 = new SequenceGUID(943673119); public static readonly SequenceGUID SEQ_Shared_Projectile_228 = new SequenceGUID(175447411); public static readonly SequenceGUID SEQ_Shared_Area_Ground_12 = new SequenceGUID(1947300758); public static readonly SequenceGUID SEQ_Shared_Trigger_263 = new SequenceGUID(187140748); public static readonly SequenceGUID SEQ_Shared_Area_Impact_303 = new SequenceGUID(-1248386902); public static readonly SequenceGUID SEQ_Bandit_Deadeye_Idle = new SequenceGUID(1644270697); public static readonly SequenceGUID SEQ_Shared_Hit_622 = new SequenceGUID(803803366); public static readonly SequenceGUID SEQ_Shared_Projectile_229 = new SequenceGUID(-427172918); public static readonly SequenceGUID SEQ_Shared_Hit_623 = new SequenceGUID(-160415289); public static readonly SequenceGUID SEQ_Shared_Area_Effect_96 = new SequenceGUID(-1043664559); public static readonly SequenceGUID SEQ_Shared_Trigger_264 = new SequenceGUID(933253719); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_137 = new SequenceGUID(320819514); public static readonly SequenceGUID SEQ_Shared_Hit_624 = new SequenceGUID(-1452723805); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_138 = new SequenceGUID(97038625); public static readonly SequenceGUID SEQ_Shared_Hit_625 = new SequenceGUID(445118858); public static readonly SequenceGUID SEQ_Shared_Projectile_230 = new SequenceGUID(-2111096000); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_139 = new SequenceGUID(1526727792); public static readonly SequenceGUID SEQ_Shared_Hit_626 = new SequenceGUID(-1669280311); public static readonly SequenceGUID SEQ_Shared_Projectile_231 = new SequenceGUID(1084932621); public static readonly SequenceGUID SEQ_Shared_Trigger_265 = new SequenceGUID(1813704946); public static readonly SequenceGUID SEQ_Shared_Hit_627 = new SequenceGUID(1057611815); public static readonly SequenceGUID SEQ_Shared_Projectile_232 = new SequenceGUID(-806000140); public static readonly SequenceGUID SEQ_Shared_Hit_628 = new SequenceGUID(-713971511); public static readonly SequenceGUID SEQ_Shared_Hit_629 = new SequenceGUID(756666815); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_140 = new SequenceGUID(-1973802738); public static readonly SequenceGUID SEQ_Shared_Hit_630 = new SequenceGUID(-1352634682); public static readonly SequenceGUID SEQ_Shared_Projectile_233 = new SequenceGUID(-500727566); public static readonly SequenceGUID SEQ_Shared_Hit_631 = new SequenceGUID(1858582834); public static readonly SequenceGUID SEQ_Shared_Projectile_234 = new SequenceGUID(-525775183); public static readonly SequenceGUID SEQ_Shared_Hit_632 = new SequenceGUID(2140735756); public static readonly SequenceGUID SEQ_Shared_Hit_633 = new SequenceGUID(-167218143); public static readonly SequenceGUID SEQ_Shared_Hit_634 = new SequenceGUID(-961155447); public static readonly SequenceGUID SEQ_Shared_Hit_635 = new SequenceGUID(-1071507623); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_141 = new SequenceGUID(292088714); public static readonly SequenceGUID SEQ_Shared_Hit_636 = new SequenceGUID(856935189); public static readonly SequenceGUID SEQ_Shared_Projectile_235 = new SequenceGUID(492672483); public static readonly SequenceGUID SEQ_Shared_Area_Impact_304 = new SequenceGUID(1972316733); public static readonly SequenceGUID SEQ_Shared_Trigger_266 = new SequenceGUID(207517638); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_142 = new SequenceGUID(1369913151); public static readonly SequenceGUID SEQ_Shared_Hit_637 = new SequenceGUID(2025001629); public static readonly SequenceGUID SEQ_Shared_Projectile_236 = new SequenceGUID(-1049025571); public static readonly SequenceGUID SEQ_Shared_Trigger_267 = new SequenceGUID(917027586); public static readonly SequenceGUID SEQ_Shared_Area_Impact_305 = new SequenceGUID(636322759); public static readonly SequenceGUID SEQ_Shared_Hit_638 = new SequenceGUID(980218565); public static readonly SequenceGUID SEQ_Shared_Projectile_237 = new SequenceGUID(1443425930); public static readonly SequenceGUID SEQ_Shared_Trigger_268 = new SequenceGUID(1758088200); public static readonly SequenceGUID SEQ_Shared_Projectile_238 = new SequenceGUID(-1619969612); public static readonly SequenceGUID SEQ_Shared_Trigger_269 = new SequenceGUID(-494941228); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_3 = new SequenceGUID(-1837849495); public static readonly SequenceGUID SEQ_Shared_Area_Impact_306 = new SequenceGUID(884017114); public static readonly SequenceGUID SEQ_Shared_GateBoss_5 = new SequenceGUID(331464493); public static readonly SequenceGUID SEQ_Shared_Hit_639 = new SequenceGUID(-157539024); public static readonly SequenceGUID SEQ_Shared_Area_Impact_307 = new SequenceGUID(1440152696); public static readonly SequenceGUID SEQ_Shared_Projectile_239 = new SequenceGUID(2016762170); public static readonly SequenceGUID SEQ_Shared_Hit_640 = new SequenceGUID(-1583941490); public static readonly SequenceGUID SEQ_Shared_Area_Impact_308 = new SequenceGUID(-1112999131); public static readonly SequenceGUID SEQ_Shared_Trigger_270 = new SequenceGUID(-773113457); public static readonly SequenceGUID SEQ_Shared_Area_Effect_97 = new SequenceGUID(-1546784812); public static readonly SequenceGUID SEQ_Shared_Hit_641 = new SequenceGUID(1502139201); public static readonly SequenceGUID SEQ_Shared_Hit_642 = new SequenceGUID(-1361051214); public static readonly SequenceGUID SEQ_Shared_Hit_643 = new SequenceGUID(-394175279); public static readonly SequenceGUID SEQ_Shared_Hit_644 = new SequenceGUID(798113573); public static readonly SequenceGUID SEQ_Shared_Hit_645 = new SequenceGUID(1254363771); public static readonly SequenceGUID SEQ_Shared_Hit_646 = new SequenceGUID(1439817783); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_143 = new SequenceGUID(1379753452); public static readonly SequenceGUID SEQ_Shared_Hit_647 = new SequenceGUID(-1574455537); public static readonly SequenceGUID SEQ_Shared_Projectile_240 = new SequenceGUID(-2480677); public static readonly SequenceGUID SEQ_Shared_Hit_648 = new SequenceGUID(56568307); public static readonly SequenceGUID SEQ_Shared_Hit_649 = new SequenceGUID(1864069379); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_144 = new SequenceGUID(-538170298); public static readonly SequenceGUID SEQ_Shared_Projectile_241 = new SequenceGUID(-64476875); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_145 = new SequenceGUID(-466235545); public static readonly SequenceGUID SEQ_Shared_Hit_650 = new SequenceGUID(-367368506); public static readonly SequenceGUID SEQ_Shared_Projectile_242 = new SequenceGUID(544568555); public static readonly SequenceGUID SEQ_Shared_Area_Impact_309 = new SequenceGUID(-1262388544); public static readonly SequenceGUID SEQ_Shared_Hit_651 = new SequenceGUID(-1285445366); public static readonly SequenceGUID SEQ_Shared_Area_Impact_310 = new SequenceGUID(-879442740); public static readonly SequenceGUID SEQ_Shared_Hit_652 = new SequenceGUID(-858754663); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_146 = new SequenceGUID(-1644537609); public static readonly SequenceGUID SEQ_Shared_Hit_653 = new SequenceGUID(-1646911180); public static readonly SequenceGUID SEQ_Shared_Projectile_243 = new SequenceGUID(-1021536580); public static readonly SequenceGUID SEQ_Shared_Hit_654 = new SequenceGUID(-1826881955); public static readonly SequenceGUID SEQ_Shared_Hit_655 = new SequenceGUID(749682683); public static readonly SequenceGUID SEQ_Shared_Hit_656 = new SequenceGUID(2033444608); public static readonly SequenceGUID SEQ_Shared_Leap_End_8 = new SequenceGUID(-1656759555); public static readonly SequenceGUID SEQ_Shared_Trigger_271 = new SequenceGUID(1129642405); public static readonly SequenceGUID SEQ_Shared_Trigger_272 = new SequenceGUID(1525475290); public static readonly SequenceGUID SEQ_Shared_Hit_657 = new SequenceGUID(-1651622008); public static readonly SequenceGUID SEQ_Shared_Trigger_273 = new SequenceGUID(656252480); public static readonly SequenceGUID SEQ_Shared_Hit_658 = new SequenceGUID(-1227925726); public static readonly SequenceGUID SEQ_Shared_Projectile_244 = new SequenceGUID(1103607498); public static readonly SequenceGUID SEQ_Shared_Hit_659 = new SequenceGUID(-1077029630); public static readonly SequenceGUID SEQ_Shared_Hit_660 = new SequenceGUID(-1865071982); public static readonly SequenceGUID SEQ_Shared_Area_Effect_98 = new SequenceGUID(-1176246319); public static readonly SequenceGUID SEQ_Shared_Trigger_274 = new SequenceGUID(1847484864); public static readonly SequenceGUID SEQ_Shared_Area_Impact_311 = new SequenceGUID(-683742003); public static readonly SequenceGUID SEQ_Shared_Hit_661 = new SequenceGUID(639021771); public static readonly SequenceGUID SEQ_Shared_Area_Impact_312 = new SequenceGUID(-2041677020); public static readonly SequenceGUID SEQ_Shared_Trigger_275 = new SequenceGUID(1855891483); public static readonly SequenceGUID SEQ_Shared_Hit_662 = new SequenceGUID(-322906020); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_147 = new SequenceGUID(-1685868587); public static readonly SequenceGUID SEQ_Shared_Hit_663 = new SequenceGUID(-406252925); public static readonly SequenceGUID SEQ_Shared_Projectile_245 = new SequenceGUID(1377734070); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_148 = new SequenceGUID(1768384385); public static readonly SequenceGUID SEQ_Shared_Hit_664 = new SequenceGUID(1341290266); public static readonly SequenceGUID SEQ_Shared_Area_Impact_313 = new SequenceGUID(-890888941); public static readonly SequenceGUID SEQ_Shared_Hit_665 = new SequenceGUID(1532721028); public static readonly SequenceGUID SEQ_Shared_Projectile_246 = new SequenceGUID(241911163); public static readonly SequenceGUID SEQ_Shared_Hit_666 = new SequenceGUID(2098809673); public static readonly SequenceGUID SEQ_Shared_Projectile_247 = new SequenceGUID(1484896474); public static readonly SequenceGUID SEQ_Shared_Hit_667 = new SequenceGUID(-2037234818); public static readonly SequenceGUID SEQ_Shared_Hit_668 = new SequenceGUID(-494799121); public static readonly SequenceGUID SEQ_Shared_Hit_669 = new SequenceGUID(-1694857007); public static readonly SequenceGUID SEQ_VampireLeapAttack_Unarmed_Exec = new SequenceGUID(1341825223); public static readonly SequenceGUID SEQ_Shared_Trigger_276 = new SequenceGUID(-2067327663); public static readonly SequenceGUID SEQ_Workstation_Coffin_Start = new SequenceGUID(1568479954); public static readonly SequenceGUID SEQ_Workstation_TombCoffin_Start = new SequenceGUID(-487051966); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_149 = new SequenceGUID(-1428984801); public static readonly SequenceGUID SEQ_Shared_Hit_670 = new SequenceGUID(-1290859797); public static readonly SequenceGUID SEQ_Shared_Projectile_248 = new SequenceGUID(-2005074342); public static readonly SequenceGUID SEQ_Shared_Area_Impact_314 = new SequenceGUID(-1248393801); public static readonly SequenceGUID SEQ_Shared_Area_Impact_315 = new SequenceGUID(-918261022); public static readonly SequenceGUID SEQ_Shared_Hit_671 = new SequenceGUID(436423844); public static readonly SequenceGUID SEQ_Shared_Trigger_277 = new SequenceGUID(-708757503); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_150 = new SequenceGUID(-385472797); public static readonly SequenceGUID SEQ_Shared_Hit_672 = new SequenceGUID(-661667620); public static readonly SequenceGUID SEQ_Shared_Trigger_278 = new SequenceGUID(223829346); public static readonly SequenceGUID SEQ_Shared_Trigger_279 = new SequenceGUID(1001789586); public static readonly SequenceGUID SEQ_Shared_Hit_673 = new SequenceGUID(-259365030); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_151 = new SequenceGUID(1926625778); public static readonly SequenceGUID SEQ_Shared_Hit_674 = new SequenceGUID(590480466); public static readonly SequenceGUID SEQ_Shared_Projectile_249 = new SequenceGUID(1432503273); public static readonly SequenceGUID SEQ_Shared_Trigger_280 = new SequenceGUID(-646945808); public static readonly SequenceGUID SEQ_Shared_Hit_675 = new SequenceGUID(1379354392); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_152 = new SequenceGUID(-566178316); public static readonly SequenceGUID SEQ_Shared_Hit_676 = new SequenceGUID(1658134858); public static readonly SequenceGUID SEQ_Shared_Projectile_250 = new SequenceGUID(2040849425); public static readonly SequenceGUID SEQ_Shared_Hit_677 = new SequenceGUID(-1719392964); public static readonly SequenceGUID SEQ_Shared_Hit_678 = new SequenceGUID(-1202583251); public static readonly SequenceGUID SEQ_Shared_Trigger_281 = new SequenceGUID(2104477565); public static readonly SequenceGUID SEQ_Shared_Area_Impact_316 = new SequenceGUID(-2146310792); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_DraculaTarget_Buff = new SequenceGUID(1577198996); public static readonly SequenceGUID SEQ_Shared_Hit_679 = new SequenceGUID(396915455); public static readonly SequenceGUID SEQ_Shared_Area_Impact_317 = new SequenceGUID(-691289850); public static readonly SequenceGUID SEQ_Shared_Area_Impact_318 = new SequenceGUID(19886049); public static readonly SequenceGUID SEQ_Shared_Hit_680 = new SequenceGUID(1985159961); public static readonly SequenceGUID SEQ_Shared_Trigger_282 = new SequenceGUID(767437110); public static readonly SequenceGUID SEQ_Shared_Hit_681 = new SequenceGUID(460633176); public static readonly SequenceGUID SEQ_Shared_Projectile_251 = new SequenceGUID(-2078065641); public static readonly SequenceGUID SEQ_Shared_Hit_682 = new SequenceGUID(1636516243); public static readonly SequenceGUID SEQ_Shared_Trigger_283 = new SequenceGUID(-561796950); public static readonly SequenceGUID SEQ_Shared_Trigger_284 = new SequenceGUID(-1260462112); public static readonly SequenceGUID SEQ_Shared_Trigger_285 = new SequenceGUID(604297925); public static readonly SequenceGUID SEQ_Shared_Hit_683 = new SequenceGUID(-2040978189); public static readonly SequenceGUID SEQ_Shared_Hit_684 = new SequenceGUID(828075836); public static readonly SequenceGUID SEQ_Shared_Hit_685 = new SequenceGUID(-964960227); public static readonly SequenceGUID SEQ_Shared_GateBoss_6 = new SequenceGUID(-1970773215); public static readonly SequenceGUID SEQ_Shared_Trigger_286 = new SequenceGUID(-512620760); public static readonly SequenceGUID SEQ_Shared_Trigger_287 = new SequenceGUID(776749382); public static readonly SequenceGUID SEQ_Shared_Hit_686 = new SequenceGUID(-358435308); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_153 = new SequenceGUID(1339114353); public static readonly SequenceGUID SEQ_Shared_Projectile_252 = new SequenceGUID(-968849143); public static readonly SequenceGUID SEQ_Shared_Hit_687 = new SequenceGUID(770021444); public static readonly SequenceGUID SEQ_Shared_Area_Impact_319 = new SequenceGUID(-795381395); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_154 = new SequenceGUID(1702924836); public static readonly SequenceGUID SEQ_Shared_Hit_688 = new SequenceGUID(783057301); public static readonly SequenceGUID SEQ_Shared_Projectile_253 = new SequenceGUID(1030943813); public static readonly SequenceGUID SEQ_Shared_Area_Impact_320 = new SequenceGUID(-1797291799); public static readonly SequenceGUID SEQ_Shared_Area_Impact_321 = new SequenceGUID(1517452861); public static readonly SequenceGUID SEQ_Shared_Area_Effect_99 = new SequenceGUID(-50507029); public static readonly SequenceGUID SEQ_Shared_Area_Impact_322 = new SequenceGUID(1005480878); public static readonly SequenceGUID SEQ_Shared_Hit_689 = new SequenceGUID(1597679673); public static readonly SequenceGUID SEQ_Shared_Projectile_254 = new SequenceGUID(-2046198522); public static readonly SequenceGUID SEQ_Shared_Area_Ground_13 = new SequenceGUID(-1544506746); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_155 = new SequenceGUID(1138823681); public static readonly SequenceGUID SEQ_Shared_Hit_690 = new SequenceGUID(623589038); public static readonly SequenceGUID SEQ_Shared_Projectile_255 = new SequenceGUID(-190215828); public static readonly SequenceGUID SEQ_Shared_Hit_691 = new SequenceGUID(633869628); public static readonly SequenceGUID SEQ_Shared_Trigger_288 = new SequenceGUID(455006712); public static readonly SequenceGUID SEQ_Shared_Trigger_289 = new SequenceGUID(-428273677); public static readonly SequenceGUID SEQ_Shared_Projectile_256 = new SequenceGUID(-855685267); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_156 = new SequenceGUID(146266361); public static readonly SequenceGUID SEQ_Shared_Hit_692 = new SequenceGUID(283863982); public static readonly SequenceGUID SEQ_Shared_Projectile_257 = new SequenceGUID(-461636828); public static readonly SequenceGUID SEQ_Shared_Hit_693 = new SequenceGUID(-1379030430); public static readonly SequenceGUID SEQ_Shared_Trigger_290 = new SequenceGUID(-154091361); public static readonly SequenceGUID SEQ_Shared_Leap_End_9 = new SequenceGUID(-1311906385); public static readonly SequenceGUID SEQ_Shared_Area_Impact_323 = new SequenceGUID(752169926); public static readonly SequenceGUID SEQ_Shared_Area_Ground_14 = new SequenceGUID(-1431634901); public static readonly SequenceGUID SEQ_Shared_Projectile_258 = new SequenceGUID(1183456353); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_157 = new SequenceGUID(-2017760171); public static readonly SequenceGUID SEQ_Shared_Projectile_259 = new SequenceGUID(-264062063); public static readonly SequenceGUID SEQ_Shared_Area_Impact_324 = new SequenceGUID(666965485); public static readonly SequenceGUID SEQ_TileModelEditing_2 = new SequenceGUID(-450089786); public static readonly SequenceGUID SEQ_Shared_Area_Impact_325 = new SequenceGUID(-699953651); public static readonly SequenceGUID SEQ_Shared_Projectile_260 = new SequenceGUID(1252626751); public static readonly SequenceGUID SEQ_Shared_Hit_694 = new SequenceGUID(-1742177198); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_158 = new SequenceGUID(1157863615); public static readonly SequenceGUID SEQ_Shared_Area_Impact_326 = new SequenceGUID(1218074099); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_159 = new SequenceGUID(2087063040); public static readonly SequenceGUID SEQ_Shared_Hit_695 = new SequenceGUID(-1243886094); public static readonly SequenceGUID SEQ_Shared_Projectile_261 = new SequenceGUID(-1235422281); public static readonly SequenceGUID SEQ_Shared_Trigger_291 = new SequenceGUID(790241189); public static readonly SequenceGUID SEQ_Shared_Hit_696 = new SequenceGUID(654754301); public static readonly SequenceGUID SEQ_Shared_Continious_Area_9 = new SequenceGUID(1246876279); public static readonly SequenceGUID SEQ_Shared_Hit_697 = new SequenceGUID(-1324658887); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_160 = new SequenceGUID(1506275300); public static readonly SequenceGUID SEQ_Shared_Hit_698 = new SequenceGUID(-38274757); public static readonly SequenceGUID SEQ_Shared_Hit_699 = new SequenceGUID(315620434); public static readonly SequenceGUID SEQ_Shared_Projectile_262 = new SequenceGUID(-1791449753); public static readonly SequenceGUID SEQ_Shared_Trigger_292 = new SequenceGUID(-308546125); public static readonly SequenceGUID SEQ_Shared_Projectile_263 = new SequenceGUID(1756238686); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_161 = new SequenceGUID(-884175293); public static readonly SequenceGUID SEQ_Shared_Projectile_264 = new SequenceGUID(-167545606); public static readonly SequenceGUID SEQ_Shared_Hit_700 = new SequenceGUID(42304897); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_162 = new SequenceGUID(962977838); public static readonly SequenceGUID SEQ_Shared_Projectile_265 = new SequenceGUID(-1651762318); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_163 = new SequenceGUID(1717245205); public static readonly SequenceGUID SEQ_Shared_Hit_701 = new SequenceGUID(-851163412); public static readonly SequenceGUID SEQ_Shared_Projectile_266 = new SequenceGUID(-2025192507); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_164 = new SequenceGUID(-1501042577); public static readonly SequenceGUID SEQ_Shared_Hit_702 = new SequenceGUID(-227979229); public static readonly SequenceGUID SEQ_Shared_Projectile_267 = new SequenceGUID(208515332); public static readonly SequenceGUID SEQ_Shared_Area_Impact_327 = new SequenceGUID(-998883161); public static readonly SequenceGUID SEQ_Shared_Projectile_268 = new SequenceGUID(-1754081330); public static readonly SequenceGUID SEQ_Shared_Area_Impact_328 = new SequenceGUID(437358207); public static readonly SequenceGUID SEQ_Shared_Trigger_293 = new SequenceGUID(-1331711508); public static readonly SequenceGUID SEQ_Shared_Trigger_294 = new SequenceGUID(826563711); public static readonly SequenceGUID SEQ_Shared_Trigger_295 = new SequenceGUID(951166780); public static readonly SequenceGUID SEQ_PickupItem_01_19 = new SequenceGUID(-904612392); public static readonly SequenceGUID SEQ_Interact_PickupItem_InventoryFull_01_5 = new SequenceGUID(-1589160006); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_20 = new SequenceGUID(1893387836); public static readonly SequenceGUID SEQ_Shared_Projectile_269 = new SequenceGUID(1002242342); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_165 = new SequenceGUID(-2110716840); public static readonly SequenceGUID SEQ_Shared_Hit_703 = new SequenceGUID(-413876359); public static readonly SequenceGUID SEQ_Shared_Projectile_270 = new SequenceGUID(-511859347); public static readonly SequenceGUID SEQ_Shared_Hit_704 = new SequenceGUID(-1451737027); public static readonly SequenceGUID SEQ_Shared_Projectile_271 = new SequenceGUID(-413498217); public static readonly SequenceGUID SEQ_Shared_Hit_705 = new SequenceGUID(-857283118); public static readonly SequenceGUID SEQ_Arena_Timer = new SequenceGUID(-695372390); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_4 = new SequenceGUID(-281080767); public static readonly SequenceGUID SEQ_TileModelDismantling_1 = new SequenceGUID(1820562940); public static readonly SequenceGUID SEQ_TileModelDismantle_8 = new SequenceGUID(189290689); public static readonly SequenceGUID SEQ_TileModelBuilding_8 = new SequenceGUID(1733594134); public static readonly SequenceGUID SEQ_TileModelInvalidEditing_2 = new SequenceGUID(29614748); public static readonly SequenceGUID SEQ_Shared_Hit_706 = new SequenceGUID(1824299820); public static readonly SequenceGUID SEQ_Shared_Hit_707 = new SequenceGUID(-1791461439); public static readonly SequenceGUID SEQ_Shared_Area_Impact_329 = new SequenceGUID(-1492349765); public static readonly SequenceGUID SEQ_Shared_Area_Impact_330 = new SequenceGUID(-153170464); public static readonly SequenceGUID SEQ_Shared_Trigger_296 = new SequenceGUID(1867175859); public static readonly SequenceGUID SEQ_Slashers_Camouflage_1 = new SequenceGUID(-728842698); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_166 = new SequenceGUID(-1801663426); public static readonly SequenceGUID SEQ_Shared_Hit_708 = new SequenceGUID(905293376); public static readonly SequenceGUID SEQ_Shared_Object_Hit_95 = new SequenceGUID(-1134909303); public static readonly SequenceGUID SEQ_Shared_Trigger_297 = new SequenceGUID(27096957); public static readonly SequenceGUID SEQ_Shared_Hit_709 = new SequenceGUID(-1106490990); public static readonly SequenceGUID SEQ_Shared_Trigger_298 = new SequenceGUID(1603312395); public static readonly SequenceGUID SEQ_Shared_Hit_710 = new SequenceGUID(412320386); public static readonly SequenceGUID SEQ_Shared_Area_Impact_331 = new SequenceGUID(-1780352658); public static readonly SequenceGUID SEQ_Shared_Area_Impact_332 = new SequenceGUID(-1277706979); public static readonly SequenceGUID SEQ_Shared_Hit_711 = new SequenceGUID(-859666659); public static readonly SequenceGUID SEQ_Shared_Projectile_272 = new SequenceGUID(-15617104); public static readonly SequenceGUID SEQ_Shared_Area_Effect_100 = new SequenceGUID(-1840320907); public static readonly SequenceGUID SEQ_Shared_Hit_712 = new SequenceGUID(1697020191); public static readonly SequenceGUID SEQ_Shared_Hit_713 = new SequenceGUID(274397697); public static readonly SequenceGUID SEQ_Shared_Hit_714 = new SequenceGUID(-1094404402); public static readonly SequenceGUID SEQ_Shared_Area_Impact_333 = new SequenceGUID(1652020391); public static readonly SequenceGUID SEQ_Shared_Area_Impact_334 = new SequenceGUID(-181092739); public static readonly SequenceGUID SEQ_Shared_Trigger_299 = new SequenceGUID(757616712); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel_3 = new SequenceGUID(-1328588907); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_167 = new SequenceGUID(1831646949); public static readonly SequenceGUID SEQ_Shared_Projectile_273 = new SequenceGUID(230428744); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_168 = new SequenceGUID(-822841555); public static readonly SequenceGUID SEQ_Shared_Hit_715 = new SequenceGUID(-932237426); public static readonly SequenceGUID SEQ_Shared_Projectile_274 = new SequenceGUID(737060215); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_169 = new SequenceGUID(-337077011); public static readonly SequenceGUID SEQ_Shared_Hit_716 = new SequenceGUID(-1854588623); public static readonly SequenceGUID SEQ_Shared_Projectile_275 = new SequenceGUID(-1897492636); public static readonly SequenceGUID SEQ_Shared_Hit_717 = new SequenceGUID(1127270889); public static readonly SequenceGUID SEQ_Shared_Object_Hit_96 = new SequenceGUID(377411323); public static readonly SequenceGUID SEQ_Shared_Area_Impact_335 = new SequenceGUID(-289463052); public static readonly SequenceGUID SEQ_Shared_Trigger_300 = new SequenceGUID(1957357347); public static readonly SequenceGUID SEQ_Shared_Area_Effect_101 = new SequenceGUID(1984376825); public static readonly SequenceGUID SEQ_Shared_Area_Impact_336 = new SequenceGUID(1204790717); public static readonly SequenceGUID SEQ_Shared_Area_Impact_337 = new SequenceGUID(-1952524543); public static readonly SequenceGUID SEQ_Dracula_Feed_PlayerTarget_Buff = new SequenceGUID(1855625052); public static readonly SequenceGUID SEQ_Shared_Trigger_301 = new SequenceGUID(-1750992520); public static readonly SequenceGUID SEQ_Shared_Area_Impact_338 = new SequenceGUID(1669679269); public static readonly SequenceGUID SEQ_Shared_Hit_718 = new SequenceGUID(-39404982); public static readonly SequenceGUID SEQ_Shared_Hit_719 = new SequenceGUID(1337312705); public static readonly SequenceGUID SEQ_Shared_Area_Impact_339 = new SequenceGUID(473008631); public static readonly SequenceGUID SEQ_Shared_Hit_720 = new SequenceGUID(1515457045); public static readonly SequenceGUID SEQ_Shared_Hit_721 = new SequenceGUID(971186480); public static readonly SequenceGUID SEQ_Shared_Area_Impact_340 = new SequenceGUID(-1100313367); public static readonly SequenceGUID SEQ_Shared_Trigger_302 = new SequenceGUID(1092163010); public static readonly SequenceGUID SEQ_Shared_Hit_722 = new SequenceGUID(1531211583); public static readonly SequenceGUID SEQ_Shared_Trigger_303 = new SequenceGUID(-1024229773); public static readonly SequenceGUID SEQ_Shared_Area_Impact_341 = new SequenceGUID(570262327); public static readonly SequenceGUID SEQ_Shared_Area_Effect_102 = new SequenceGUID(-556018100); public static readonly SequenceGUID SEQ_Shared_Hit_723 = new SequenceGUID(-1489820236); public static readonly SequenceGUID SEQ_Shared_Trigger_304 = new SequenceGUID(-1644824108); public static readonly SequenceGUID SEQ_Shared_Trigger_305 = new SequenceGUID(1563579379); public static readonly SequenceGUID SEQ_Shared_Hit_724 = new SequenceGUID(-938148097); public static readonly SequenceGUID SEQ_Shared_Trigger_306 = new SequenceGUID(1659313637); public static readonly SequenceGUID SEQ_Shared_Hit_725 = new SequenceGUID(-1691245808); public static readonly SequenceGUID SEQ_Shared_Trigger_307 = new SequenceGUID(-480445617); public static readonly SequenceGUID SEQ_Shared_Trigger_308 = new SequenceGUID(-735830909); public static readonly SequenceGUID SEQ_Shared_Hit_726 = new SequenceGUID(-571094282); public static readonly SequenceGUID SEQ_Shared_Hit_727 = new SequenceGUID(1667043808); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_170 = new SequenceGUID(1484642122); public static readonly SequenceGUID SEQ_Shared_Hit_728 = new SequenceGUID(-2109500429); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_171 = new SequenceGUID(919434661); public static readonly SequenceGUID SEQ_Shared_Trigger_309 = new SequenceGUID(245684154); public static readonly SequenceGUID SEQ_Shared_Projectile_276 = new SequenceGUID(1006504095); public static readonly SequenceGUID SEQ_Shared_Area_Impact_342 = new SequenceGUID(-1018595705); public static readonly SequenceGUID SEQ_Shared_Hit_729 = new SequenceGUID(1198036252); public static readonly SequenceGUID SEQ_Shared_Trigger_310 = new SequenceGUID(1055965379); public static readonly SequenceGUID SEQ_Shared_Hit_730 = new SequenceGUID(656636475); public static readonly SequenceGUID SEQ_Shared_Hit_731 = new SequenceGUID(565133307); public static readonly SequenceGUID SEQ_Shared_Trigger_311 = new SequenceGUID(-1761827141); public static readonly SequenceGUID SEQ_Shared_Hit_732 = new SequenceGUID(-146973415); public static readonly SequenceGUID SEQ_Shared_Projectile_277 = new SequenceGUID(835600318); public static readonly SequenceGUID SEQ_Shared_Hit_733 = new SequenceGUID(-318772957); public static readonly SequenceGUID SEQ_Shared_Warning_Circle_Lifetime = new SequenceGUID(-2094428085); public static readonly SequenceGUID SEQ_Shared_Trigger_312 = new SequenceGUID(1224649799); public static readonly SequenceGUID SEQ_Shared_Hit_734 = new SequenceGUID(-1271666837); public static readonly SequenceGUID SEQ_Shared_Hit_735 = new SequenceGUID(618091111); public static readonly SequenceGUID SEQ_Shared_Hit_736 = new SequenceGUID(-1547145112); public static readonly SequenceGUID SEQ_Shared_Hit_737 = new SequenceGUID(802504118); public static readonly SequenceGUID SEQ_Shared_Hit_738 = new SequenceGUID(-544682154); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1100 = new SequenceGUID(630923783); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_172 = new SequenceGUID(-827259322); public static readonly SequenceGUID SEQ_Shared_Projectile_278 = new SequenceGUID(1150727832); public static readonly SequenceGUID SEQ_Shared_Area_Impact_343 = new SequenceGUID(-702621971); public static readonly SequenceGUID SEQ_Shared_Trigger_313 = new SequenceGUID(-1283558030); public static readonly SequenceGUID SEQ_WarningCircle_1 = new SequenceGUID(987604598); public static readonly SequenceGUID SEQ_Shared_Projectile_279 = new SequenceGUID(1776660182); public static readonly SequenceGUID SEQ_Shared_Hit_739 = new SequenceGUID(-1430603956); public static readonly SequenceGUID SEQ_Shared_Trigger_314 = new SequenceGUID(-1751411132); public static readonly SequenceGUID SEQ_Shared_Trigger_315 = new SequenceGUID(-1765805299); public static readonly SequenceGUID SEQ_Shared_Trigger_316 = new SequenceGUID(-381330278); public static readonly SequenceGUID SEQ_Shared_Hit_740 = new SequenceGUID(1140119659); public static readonly SequenceGUID SEQ_Shared_Trigger_317 = new SequenceGUID(272342545); public static readonly SequenceGUID SEQ_Shared_Hit_741 = new SequenceGUID(-144388701); public static readonly SequenceGUID SEQ_Shared_Trigger_318 = new SequenceGUID(399752914); public static readonly SequenceGUID SEQ_Shared_Hit_742 = new SequenceGUID(1436316241); public static readonly SequenceGUID SEQ_Morgana_LoomingMists = new SequenceGUID(-1289071968); public static readonly SequenceGUID SEQ_Shared_Hit_743 = new SequenceGUID(1142087384); public static readonly SequenceGUID SEQ_Shared_Area_Impact_344 = new SequenceGUID(277161938); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_173 = new SequenceGUID(-1126585426); public static readonly SequenceGUID SEQ_Shared_Hit_744 = new SequenceGUID(1886305287); public static readonly SequenceGUID SEQ_Shared_Projectile_280 = new SequenceGUID(-354853999); public static readonly SequenceGUID SEQ_Shared_Area_Effect_103 = new SequenceGUID(-591818016); public static readonly SequenceGUID SEQ_Shared_Area_Impact_345 = new SequenceGUID(-241638315); public static readonly SequenceGUID SEQ_Shared_Hit_745 = new SequenceGUID(1598332912); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_174 = new SequenceGUID(1253873362); public static readonly SequenceGUID SEQ_Shared_Projectile_281 = new SequenceGUID(-255575007); public static readonly SequenceGUID SEQ_Shared_Trigger_319 = new SequenceGUID(-1606534848); public static readonly SequenceGUID SEQ_Shared_Hit_746 = new SequenceGUID(599124884); public static readonly SequenceGUID SEQ_Shared_Hit_747 = new SequenceGUID(548656116); public static readonly SequenceGUID SEQ_Shared_Hit_748 = new SequenceGUID(-493777905); public static readonly SequenceGUID SEQ_Shared_Trigger_320 = new SequenceGUID(546000628); public static readonly SequenceGUID SEQ_Shared_Area_Impact_346 = new SequenceGUID(-2086727420); public static readonly SequenceGUID SEQ_Shared_Hit_749 = new SequenceGUID(179711432); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_175 = new SequenceGUID(-1616473630); public static readonly SequenceGUID SEQ_Shared_Hit_750 = new SequenceGUID(1990506358); public static readonly SequenceGUID SEQ_Shared_Projectile_282 = new SequenceGUID(-687272689); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_176 = new SequenceGUID(649602041); public static readonly SequenceGUID SEQ_Shared_Hit_751 = new SequenceGUID(-522705091); public static readonly SequenceGUID SEQ_Shared_Projectile_283 = new SequenceGUID(-988577812); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_177 = new SequenceGUID(-100427585); public static readonly SequenceGUID SEQ_Shared_Hit_752 = new SequenceGUID(-1414726707); public static readonly SequenceGUID SEQ_Shared_Projectile_284 = new SequenceGUID(1661513759); public static readonly SequenceGUID SEQ_ManTrap_Death = new SequenceGUID(1632206738); public static readonly SequenceGUID SEQ_Shared_Hit_753 = new SequenceGUID(-1312616304); public static readonly SequenceGUID SEQ_Shared_Trigger_321 = new SequenceGUID(-1673258727); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_178 = new SequenceGUID(-2008478768); public static readonly SequenceGUID SEQ_Shared_Hit_754 = new SequenceGUID(-826046621); public static readonly SequenceGUID SEQ_Shared_Area_Impact_347 = new SequenceGUID(-1858339727); public static readonly SequenceGUID SEQ_Shared_Hit_755 = new SequenceGUID(-752707300); public static readonly SequenceGUID SEQ_Shared_Projectile_285 = new SequenceGUID(1375522520); public static readonly SequenceGUID SEQ_Shared_Area_Impact_348 = new SequenceGUID(-558507183); public static readonly SequenceGUID SEQ_Shared_Warning_Circle_1 = new SequenceGUID(-787096099); public static readonly SequenceGUID SEQ_Shared_Area_Effect_104 = new SequenceGUID(1770015001); public static readonly SequenceGUID SEQ_Shared_Area_Impact_349 = new SequenceGUID(485561390); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_179 = new SequenceGUID(-657635473); public static readonly SequenceGUID SEQ_Shared_Hit_756 = new SequenceGUID(-966315165); public static readonly SequenceGUID SEQ_Shared_Projectile_286 = new SequenceGUID(-119221972); public static readonly SequenceGUID SEQ_Shared_Trigger_322 = new SequenceGUID(1061350769); public static readonly SequenceGUID SEQ_Shared_Trigger_323 = new SequenceGUID(907434320); public static readonly SequenceGUID SEQ_Workstation_Coffin_Start_1 = new SequenceGUID(-100338444); public static readonly SequenceGUID SEQ_Shared_Leap_End_10 = new SequenceGUID(1049453965); public static readonly SequenceGUID SEQ_Shared_Area_Impact_350 = new SequenceGUID(1049331867); public static readonly SequenceGUID SEQ_Shared_Trigger_324 = new SequenceGUID(584042160); public static readonly SequenceGUID SEQ_Workstation_WoodenCoffin_Respawn = new SequenceGUID(-289713487); public static readonly SequenceGUID SEQ_Shared_Hit_757 = new SequenceGUID(1398096055); public static readonly SequenceGUID SEQ_Shared_Area_Impact_351 = new SequenceGUID(2062933229); public static readonly SequenceGUID SEQ_Shared_Area_Impact_352 = new SequenceGUID(-377060443); public static readonly SequenceGUID SEQ_Workstation_Coffin_Start_2 = new SequenceGUID(650215385); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_180 = new SequenceGUID(607963852); public static readonly SequenceGUID SEQ_Shared_Projectile_287 = new SequenceGUID(654145657); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_181 = new SequenceGUID(-575798880); public static readonly SequenceGUID SEQ_Shared_Hit_758 = new SequenceGUID(-1507806922); public static readonly SequenceGUID SEQ_Shared_Projectile_288 = new SequenceGUID(1432559139); public static readonly SequenceGUID SEQ_Shared_Area_Impact_353 = new SequenceGUID(-824854473); public static readonly SequenceGUID SEQ_Workstation_Coffin_Respawn_1 = new SequenceGUID(633631492); public static readonly SequenceGUID SEQ_Shared_Trigger_325 = new SequenceGUID(1811588433); public static readonly SequenceGUID SEQ_Workstation_Coffin_Respawn_2 = new SequenceGUID(1043723895); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_182 = new SequenceGUID(-494843660); public static readonly SequenceGUID SEQ_Shared_Hit_759 = new SequenceGUID(1532061361); public static readonly SequenceGUID SEQ_Shared_Projectile_289 = new SequenceGUID(-1313817634); public static readonly SequenceGUID SEQ_Shared_Trigger_326 = new SequenceGUID(2068266436); public static readonly SequenceGUID SEQ_Shared_Area_Impact_354 = new SequenceGUID(-908809476); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_183 = new SequenceGUID(-972605630); public static readonly SequenceGUID SEQ_Shared_Hit_760 = new SequenceGUID(1497352668); public static readonly SequenceGUID SEQ_Shared_Projectile_290 = new SequenceGUID(-1506559162); public static readonly SequenceGUID SEQ_Shared_Hit_761 = new SequenceGUID(1686561369); public static readonly SequenceGUID SEQ_Shared_Area_Impact_355 = new SequenceGUID(-2142466977); public static readonly SequenceGUID SEQ_Shared_Trigger_327 = new SequenceGUID(-363373025); public static readonly SequenceGUID SEQ_Shared_Hit_762 = new SequenceGUID(-1138110572); public static readonly SequenceGUID SEQ_Shared_Hit_763 = new SequenceGUID(25460763); public static readonly SequenceGUID SEQ_Shared_Hit_764 = new SequenceGUID(-1478911381); public static readonly SequenceGUID SEQ_Shared_Hit_765 = new SequenceGUID(859583375); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_184 = new SequenceGUID(-1762928397); public static readonly SequenceGUID SEQ_Shared_Hit_766 = new SequenceGUID(850826839); public static readonly SequenceGUID SEQ_Shared_Projectile_291 = new SequenceGUID(798631026); public static readonly SequenceGUID SEQ_Shared_Trigger_328 = new SequenceGUID(-230829805); public static readonly SequenceGUID SEQ_Shared_Trigger_329 = new SequenceGUID(511215068); public static readonly SequenceGUID SEQ_Shared_Area_Impact_356 = new SequenceGUID(1583478109); public static readonly SequenceGUID SEQ_Shared_Hit_767 = new SequenceGUID(2056891617); public static readonly SequenceGUID SEQ_Shared_Hit_768 = new SequenceGUID(-1637057509); public static readonly SequenceGUID SEQ_Shared_Area_Impact_357 = new SequenceGUID(1394605852); public static readonly SequenceGUID SEQ_Shared_Area_Impact_358 = new SequenceGUID(260546836); public static readonly SequenceGUID SEQ_Shared_Area_Impact_359 = new SequenceGUID(174613438); public static readonly SequenceGUID SEQ_Shared_Object_Hit_97 = new SequenceGUID(718600296); public static readonly SequenceGUID SEQ_Shared_Hit_769 = new SequenceGUID(507801867); public static readonly SequenceGUID SEQ_Shared_Area_Effect_105 = new SequenceGUID(-1684627694); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_155 = new SequenceGUID(1914312735); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_185 = new SequenceGUID(-891075310); public static readonly SequenceGUID SEQ_Shared_Hit_770 = new SequenceGUID(717626554); public static readonly SequenceGUID SEQ_Shared_Projectile_292 = new SequenceGUID(-663571786); public static readonly SequenceGUID SEQ_Shared_Hit_771 = new SequenceGUID(-760953216); public static readonly SequenceGUID SEQ_Shared_Hit_772 = new SequenceGUID(1080341655); public static readonly SequenceGUID SEQ_Shared_Projectile_293 = new SequenceGUID(199833785); public static readonly SequenceGUID SEQ_Shared_Area_Impact_360 = new SequenceGUID(2062624338); public static readonly SequenceGUID SEQ_Shared_Trigger_330 = new SequenceGUID(-340545026); public static readonly SequenceGUID SEQ_Shared_Hit_773 = new SequenceGUID(-375813770); public static readonly SequenceGUID SEQ_Shared_Area_Impact_361 = new SequenceGUID(2065868107); public static readonly SequenceGUID SEQ_Shared_Area_Impact_362 = new SequenceGUID(-2068265432); public static readonly SequenceGUID SEQ_Shared_Trigger_331 = new SequenceGUID(-1179273404); public static readonly SequenceGUID SEQ_Shared_Hit_774 = new SequenceGUID(-850937764); public static readonly SequenceGUID SEQ_Shared_Hit_775 = new SequenceGUID(-1567073287); public static readonly SequenceGUID SEQ_Shared_Projectile_294 = new SequenceGUID(1738490718); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_186 = new SequenceGUID(1824213200); public static readonly SequenceGUID SEQ_Shared_Projectile_295 = new SequenceGUID(-1040564474); public static readonly SequenceGUID SEQ_FireExplosion_AoE_01 = new SequenceGUID(-1354802123); public static readonly SequenceGUID SEQ_WarningCircle_2 = new SequenceGUID(615747448); public static readonly SequenceGUID SEQ_Shared_Projectile_296 = new SequenceGUID(-526877175); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_7 = new SequenceGUID(1385697599); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_EnemyTarget_Buff_2 = new SequenceGUID(852218373); public static readonly SequenceGUID SEQ_Shared_Hit_776 = new SequenceGUID(-982425349); public static readonly SequenceGUID SEQ_Shared_Area_Impact_363 = new SequenceGUID(1733363824); public static readonly SequenceGUID SEQ_Shared_Projectile_297 = new SequenceGUID(1857385707); public static readonly SequenceGUID SEQ_Shared_Hit_777 = new SequenceGUID(704831892); public static readonly SequenceGUID SEQ_Shared_Trigger_332 = new SequenceGUID(-161080732); public static readonly SequenceGUID SEQ_Shared_Hit_778 = new SequenceGUID(-875857110); public static readonly SequenceGUID SEQ_Shared_Hit_779 = new SequenceGUID(631105991); public static readonly SequenceGUID SEQ_Shared_Hit_780 = new SequenceGUID(-30994514); public static readonly SequenceGUID SEQ_Shared_Area_Impact_364 = new SequenceGUID(54865220); public static readonly SequenceGUID SEQ_Shared_EntityEffect_3 = new SequenceGUID(450421833); public static readonly SequenceGUID SEQ_Shared_Hit_781 = new SequenceGUID(-1726617980); public static readonly SequenceGUID SEQ_Shared_Area_Impact_365 = new SequenceGUID(2139197268); public static readonly SequenceGUID SEQ_Shared_Vampire_Revive_Dash_And_Channel = new SequenceGUID(331664717); public static readonly SequenceGUID SEQ_Shared_Hit_782 = new SequenceGUID(-412589161); public static readonly SequenceGUID SEQ_Shared_Hit_783 = new SequenceGUID(1275465795); public static readonly SequenceGUID SEQ_Shared_Hit_784 = new SequenceGUID(1559761989); public static readonly SequenceGUID SEQ_Shared_Hit_785 = new SequenceGUID(-496406362); public static readonly SequenceGUID SEQ_Shared_Area_Impact_366 = new SequenceGUID(507710564); public static readonly SequenceGUID SEQ_Shared_Hit_786 = new SequenceGUID(-672196288); public static readonly SequenceGUID SEQ_Shared_Area_Impact_367 = new SequenceGUID(-369990115); public static readonly SequenceGUID SEQ_Shared_Hit_787 = new SequenceGUID(-2080147423); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_187 = new SequenceGUID(2026949172); public static readonly SequenceGUID SEQ_Shared_Hit_788 = new SequenceGUID(-177616701); public static readonly SequenceGUID SEQ_Shared_Projectile_298 = new SequenceGUID(735816682); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_188 = new SequenceGUID(1518913804); public static readonly SequenceGUID SEQ_Shared_Hit_789 = new SequenceGUID(344575118); public static readonly SequenceGUID SEQ_Shared_Projectile_299 = new SequenceGUID(997769905); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_189 = new SequenceGUID(1138059573); public static readonly SequenceGUID SEQ_Shared_Projectile_300 = new SequenceGUID(819056674); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_190 = new SequenceGUID(-619353803); public static readonly SequenceGUID SEQ_Shared_Hit_790 = new SequenceGUID(-15720257); public static readonly SequenceGUID SEQ_Shared_Projectile_301 = new SequenceGUID(1244717070); public static readonly SequenceGUID SEQ_Shared_Hit_791 = new SequenceGUID(-721530227); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_191 = new SequenceGUID(308033843); public static readonly SequenceGUID SEQ_Shared_Hit_792 = new SequenceGUID(-724003440); public static readonly SequenceGUID SEQ_Shared_Projectile_302 = new SequenceGUID(1210802699); public static readonly SequenceGUID SEQ_Shared_Trigger_333 = new SequenceGUID(-986048521); public static readonly SequenceGUID SEQ_Shared_Trigger_334 = new SequenceGUID(906334093); public static readonly SequenceGUID SEQ_Shared_Area_Impact_368 = new SequenceGUID(-546032329); public static readonly SequenceGUID SEQ_Shared_Hit_793 = new SequenceGUID(857526751); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_192 = new SequenceGUID(-2108701355); public static readonly SequenceGUID SEQ_Shared_Projectile_303 = new SequenceGUID(1932524436); public static readonly SequenceGUID SEQ_Shared_Projectile_304 = new SequenceGUID(-1147044209); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_8 = new SequenceGUID(-961849595); public static readonly SequenceGUID SEQ_Shared_Hit_794 = new SequenceGUID(1578294731); public static readonly SequenceGUID SEQ_Shared_Area_Impact_369 = new SequenceGUID(-867606817); public static readonly SequenceGUID SEQ_Shared_Object_Hit_98 = new SequenceGUID(639737297); public static readonly SequenceGUID SEQ_Shared_Area_Impact_370 = new SequenceGUID(1337870610); public static readonly SequenceGUID SEQ_Shared_Area_Impact_371 = new SequenceGUID(-2069176862); public static readonly SequenceGUID SEQ_Shared_Leap_End_11 = new SequenceGUID(1449320806); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_193 = new SequenceGUID(1974628958); public static readonly SequenceGUID SEQ_Shared_Hit_795 = new SequenceGUID(1306845838); public static readonly SequenceGUID SEQ_Shared_Projectile_305 = new SequenceGUID(-620329771); public static readonly SequenceGUID SEQ_Shared_Hit_796 = new SequenceGUID(-1556962869); public static readonly SequenceGUID SEQ_Shared_Trigger_335 = new SequenceGUID(-1314334047); public static readonly SequenceGUID SEQ_Shared_Trigger_336 = new SequenceGUID(-802536078); public static readonly SequenceGUID SEQ_Shared_Area_Impact_372 = new SequenceGUID(-638721008); public static readonly SequenceGUID SEQ_Shared_Hit_797 = new SequenceGUID(785108873); public static readonly SequenceGUID SEQ_Shared_Trigger_337 = new SequenceGUID(-1337440277); public static readonly SequenceGUID SEQ_Shared_Area_Ground_15 = new SequenceGUID(-329264471); public static readonly SequenceGUID SEQ_Shared_Area_Ground_16 = new SequenceGUID(-581486385); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_194 = new SequenceGUID(1986489345); public static readonly SequenceGUID SEQ_Shared_Hit_798 = new SequenceGUID(1727393258); public static readonly SequenceGUID SEQ_Shared_Projectile_306 = new SequenceGUID(1935176306); public static readonly SequenceGUID SEQ_Shared_Object_Hit_99 = new SequenceGUID(-1825029896); public static readonly SequenceGUID SEQ_Shared_Area_Impact_373 = new SequenceGUID(182980562); public static readonly SequenceGUID SEQ_Shared_Area_Impact_374 = new SequenceGUID(-1586071526); public static readonly SequenceGUID SEQ_Shared_Hit_799 = new SequenceGUID(-1406096597); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_9 = new SequenceGUID(862984277); public static readonly SequenceGUID SEQ_Shared_Hit_800 = new SequenceGUID(-105165460); public static readonly SequenceGUID SEQ_Shared_Trigger_338 = new SequenceGUID(-1003559); public static readonly SequenceGUID SEQ_Shared_Area_Impact_375 = new SequenceGUID(-566735707); public static readonly SequenceGUID SEQ_Shared_Trigger_339 = new SequenceGUID(378224118); public static readonly SequenceGUID SEQ_Shared_Hit_801 = new SequenceGUID(1552833717); public static readonly SequenceGUID SEQ_Shared_Projectile_307 = new SequenceGUID(125560801); public static readonly SequenceGUID SEQ_Shared_Area_Impact_376 = new SequenceGUID(-1349065678); public static readonly SequenceGUID SEQ_Shared_Hit_802 = new SequenceGUID(300723039); public static readonly SequenceGUID SEQ_Shared_Area_Impact_377 = new SequenceGUID(1515819302); public static readonly SequenceGUID SEQ_Shared_Hit_803 = new SequenceGUID(90302200); public static readonly SequenceGUID SEQ_Shared_Hit_804 = new SequenceGUID(-1973231789); public static readonly SequenceGUID SEQ_Shared_Hit_805 = new SequenceGUID(-285197580); public static readonly SequenceGUID SEQ_Shared_Hit_806 = new SequenceGUID(-1138120107); public static readonly SequenceGUID SEQ_Shared_Trigger_340 = new SequenceGUID(653389951); public static readonly SequenceGUID SEQ_Shared_Hit_807 = new SequenceGUID(1794504240); public static readonly SequenceGUID SEQ_Shared_Trigger_341 = new SequenceGUID(-645462983); public static readonly SequenceGUID SEQ_Shared_Trigger_342 = new SequenceGUID(1086144602); public static readonly SequenceGUID SEQ_Shared_Hit_808 = new SequenceGUID(-589528007); public static readonly SequenceGUID SEQ_Shared_Hit_809 = new SequenceGUID(1140184527); public static readonly SequenceGUID SEQ_Shared_Area_Impact_378 = new SequenceGUID(-887069282); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_195 = new SequenceGUID(809997591); public static readonly SequenceGUID SEQ_Workstation_VampireCoffin_Actived = new SequenceGUID(72022942); public static readonly SequenceGUID SEQ_Shared_Trigger_343 = new SequenceGUID(-315605052); public static readonly SequenceGUID SEQ_Shared_Area_Impact_379 = new SequenceGUID(685046150); public static readonly SequenceGUID SEQ_Shared_Trigger_344 = new SequenceGUID(1604234598); public static readonly SequenceGUID SEQ_Shared_Area_Impact_380 = new SequenceGUID(218527529); public static readonly SequenceGUID SEQ_Shared_Hit_810 = new SequenceGUID(2099333953); public static readonly SequenceGUID SEQ_Shared_Trigger_345 = new SequenceGUID(-1312099505); public static readonly SequenceGUID SEQ_Shared_Hit_811 = new SequenceGUID(2134482237); public static readonly SequenceGUID SEQ_Shared_Projectile_308 = new SequenceGUID(1712722979); public static readonly SequenceGUID SEQ_Shared_Hit_812 = new SequenceGUID(-2076975393); public static readonly SequenceGUID SEQ_Shared_Projectile_309 = new SequenceGUID(1089168803); public static readonly SequenceGUID SEQ_Shared_Projectile_310 = new SequenceGUID(1946271067); public static readonly SequenceGUID SEQ_Shared_Hit_813 = new SequenceGUID(-1268215343); public static readonly SequenceGUID SEQ_Shared_Hit_814 = new SequenceGUID(635176215); public static readonly SequenceGUID SEQ_Shared_Hit_815 = new SequenceGUID(-1376281093); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_196 = new SequenceGUID(402418848); public static readonly SequenceGUID SEQ_Shared_Hit_816 = new SequenceGUID(1295823516); public static readonly SequenceGUID SEQ_Shared_Projectile_311 = new SequenceGUID(-293641749); public static readonly SequenceGUID SEQ_Shared_Area_Ground_17 = new SequenceGUID(2124480963); public static readonly SequenceGUID SEQ_Shared_Hit_817 = new SequenceGUID(1956485787); public static readonly SequenceGUID SEQ_Shared_Hit_818 = new SequenceGUID(594307366); public static readonly SequenceGUID SEQ_Shared_Object_Hit_100 = new SequenceGUID(-1318167490); public static readonly SequenceGUID SEQ_Shared_Area_Impact_381 = new SequenceGUID(-1588940222); public static readonly SequenceGUID SEQ_Shared_Hit_819 = new SequenceGUID(-166412582); public static readonly SequenceGUID SEQ_Shared_Hit_820 = new SequenceGUID(142907446); public static readonly SequenceGUID SEQ_Shared_Trigger_346 = new SequenceGUID(152266059); public static readonly SequenceGUID SEQ_Shared_Area_Impact_382 = new SequenceGUID(-587560905); public static readonly SequenceGUID SEQ_Shared_Area_Impact_383 = new SequenceGUID(1159565219); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_197 = new SequenceGUID(-1945296778); public static readonly SequenceGUID SEQ_Shared_Hit_821 = new SequenceGUID(-1379548011); public static readonly SequenceGUID SEQ_Shared_Projectile_312 = new SequenceGUID(-972039902); public static readonly SequenceGUID SEQ_Shared_Area_Impact_384 = new SequenceGUID(-1846740593); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_198 = new SequenceGUID(116041927); public static readonly SequenceGUID SEQ_Shared_Hit_822 = new SequenceGUID(314554430); public static readonly SequenceGUID SEQ_Shared_Projectile_313 = new SequenceGUID(-1881579502); public static readonly SequenceGUID SEQ_Shared_Trigger_347 = new SequenceGUID(-1308458736); public static readonly SequenceGUID SEQ_Shared_Area_Impact_385 = new SequenceGUID(-1938967738); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_156 = new SequenceGUID(-1497761265); public static readonly SequenceGUID SEQ_Charm_Capture_Buff_1 = new SequenceGUID(1755862888); public static readonly SequenceGUID SEQ_Shared_Area_Impact_386 = new SequenceGUID(1287647507); public static readonly SequenceGUID SEQ_Shared_Hit_823 = new SequenceGUID(-1487178093); public static readonly SequenceGUID SEQ_Shared_Trigger_348 = new SequenceGUID(1586837550); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_199 = new SequenceGUID(-348637634); public static readonly SequenceGUID SEQ_Shared_Hit_824 = new SequenceGUID(-425327113); public static readonly SequenceGUID SEQ_Shared_Projectile_314 = new SequenceGUID(953846627); public static readonly SequenceGUID SEQ_Shared_Trigger_349 = new SequenceGUID(672133792); public static readonly SequenceGUID SEQ_Shared_Trigger_350 = new SequenceGUID(-1535312990); public static readonly SequenceGUID SEQ_Shared_Trigger_351 = new SequenceGUID(1289595955); public static readonly SequenceGUID SEQ_Shared_Hit_825 = new SequenceGUID(-2001376517); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_200 = new SequenceGUID(1546504); public static readonly SequenceGUID SEQ_Shared_Hit_826 = new SequenceGUID(479989068); public static readonly SequenceGUID SEQ_Shared_Projectile_315 = new SequenceGUID(-743305815); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_10 = new SequenceGUID(1055196734); public static readonly SequenceGUID SEQ_Shared_Projectile_316 = new SequenceGUID(-2098408618); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_201 = new SequenceGUID(1943341717); public static readonly SequenceGUID SEQ_Shared_Hit_827 = new SequenceGUID(1798071784); public static readonly SequenceGUID SEQ_Shared_Projectile_317 = new SequenceGUID(697882043); public static readonly SequenceGUID SEQ_Shared_Hit_828 = new SequenceGUID(1501852893); public static readonly SequenceGUID SEQ_Shared_Trigger_352 = new SequenceGUID(-1199178267); public static readonly SequenceGUID SEQ_Shared_Area_Impact_387 = new SequenceGUID(-177057539); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_202 = new SequenceGUID(722660797); public static readonly SequenceGUID SEQ_Shared_Hit_829 = new SequenceGUID(1378773653); public static readonly SequenceGUID SEQ_Shared_Hit_830 = new SequenceGUID(-473731332); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_203 = new SequenceGUID(-728446753); public static readonly SequenceGUID SEQ_Shared_Projectile_318 = new SequenceGUID(1916069777); public static readonly SequenceGUID SEQ_Shared_Hit_831 = new SequenceGUID(-265165353); public static readonly SequenceGUID SEQ_Shared_Hit_832 = new SequenceGUID(1224973811); public static readonly SequenceGUID SEQ_Shared_Trigger_353 = new SequenceGUID(560466504); public static readonly SequenceGUID SEQ_Shared_Hit_833 = new SequenceGUID(653378670); public static readonly SequenceGUID SEQ_Shared_Projectile_319 = new SequenceGUID(2009072580); public static readonly SequenceGUID SEQ_Shared_Area_Impact_388 = new SequenceGUID(-1554910761); public static readonly SequenceGUID SEQ_Shared_Hit_834 = new SequenceGUID(-1527491808); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_204 = new SequenceGUID(-820893760); public static readonly SequenceGUID SEQ_Shared_Hit_835 = new SequenceGUID(-2041759549); public static readonly SequenceGUID SEQ_Shared_Projectile_320 = new SequenceGUID(407601105); public static readonly SequenceGUID SEQ_Entryway_TravelEnd = new SequenceGUID(1853386687); public static readonly SequenceGUID SEQ_Shared_Trigger_354 = new SequenceGUID(-1851441331); public static readonly SequenceGUID SEQ_Shared_AdvancedDeath_GhostDissolve = new SequenceGUID(-1856986142); public static readonly SequenceGUID SEQ_Shared_Trigger_355 = new SequenceGUID(-502267499); public static readonly SequenceGUID SEQ_Shared_Hit_836 = new SequenceGUID(-1902380491); public static readonly SequenceGUID SEQ_Shared_Area_Impact_389 = new SequenceGUID(828531541); public static readonly SequenceGUID SEQ_Shared_Trigger_356 = new SequenceGUID(2110906012); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_205 = new SequenceGUID(-1078086736); public static readonly SequenceGUID SEQ_Shared_Hit_837 = new SequenceGUID(-2134034058); public static readonly SequenceGUID SEQ_Shared_Projectile_321 = new SequenceGUID(1371642896); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_157 = new SequenceGUID(505036300); public static readonly SequenceGUID SEQ_Shared_Hit_838 = new SequenceGUID(-70852007); public static readonly SequenceGUID SEQ_Shared_Area_Impact_390 = new SequenceGUID(-646102126); public static readonly SequenceGUID SEQ_Shared_Trigger_357 = new SequenceGUID(1960045317); public static readonly SequenceGUID SEQ_Shared_Hit_839 = new SequenceGUID(-471232196); public static readonly SequenceGUID SEQ_Shared_Projectile_322 = new SequenceGUID(1290176706); public static readonly SequenceGUID SEQ_Shared_Hit_840 = new SequenceGUID(-1070370430); public static readonly SequenceGUID SEQ_Shared_Projectile_323 = new SequenceGUID(85194290); public static readonly SequenceGUID SEQ_Shared_Hit_841 = new SequenceGUID(-669650938); public static readonly SequenceGUID SEQ_Shared_Area_Impact_391 = new SequenceGUID(-366232906); public static readonly SequenceGUID SEQ_Shared_Hit_842 = new SequenceGUID(-2084719463); public static readonly SequenceGUID SEQ_Beam_OwnerToSelf_3 = new SequenceGUID(-1367465710); public static readonly SequenceGUID SEQ_Shared_Hit_843 = new SequenceGUID(417794008); public static readonly SequenceGUID SEQ_Shared_Projectile_324 = new SequenceGUID(-1701411166); public static readonly SequenceGUID SEQ_Shared_Hit_844 = new SequenceGUID(292835951); public static readonly SequenceGUID SEQ_Shared_Hit_845 = new SequenceGUID(1733498388); public static readonly SequenceGUID SEQ_Shared_Area_Impact_392 = new SequenceGUID(-1632481964); public static readonly SequenceGUID SEQ_Shared_Hit_846 = new SequenceGUID(-1477075641); public static readonly SequenceGUID SEQ_Shared_Projectile_325 = new SequenceGUID(1098959822); public static readonly SequenceGUID SEQ_Shared_Trigger_358 = new SequenceGUID(1943960255); public static readonly SequenceGUID SEQ_Shared_Area_Impact_393 = new SequenceGUID(-565106658); public static readonly SequenceGUID SEQ_Shared_Hit_847 = new SequenceGUID(103603695); public static readonly SequenceGUID SEQ_WarningCircle_3 = new SequenceGUID(485299312); public static readonly SequenceGUID SEQ_Shared_Hit_848 = new SequenceGUID(127967309); public static readonly SequenceGUID SEQ_Shared_Hit_849 = new SequenceGUID(1044231321); public static readonly SequenceGUID SEQ_Shared_GateBoss_7 = new SequenceGUID(-1024763884); public static readonly SequenceGUID SEQ_Shared_Trigger_359 = new SequenceGUID(1137637168); public static readonly SequenceGUID SEQ_Shared_Trigger_360 = new SequenceGUID(655046778); public static readonly SequenceGUID SEQ_Shared_Trigger_361 = new SequenceGUID(1776404973); public static readonly SequenceGUID SEQ_Shared_Trigger_362 = new SequenceGUID(357153825); public static readonly SequenceGUID SEQ_Shared_Trigger_363 = new SequenceGUID(1303953528); public static readonly SequenceGUID SEQ_Shared_Area_Impact_394 = new SequenceGUID(-1582043055); public static readonly SequenceGUID SEQ_Shared_Hit_850 = new SequenceGUID(736995645); public static readonly SequenceGUID SEQ_Shared_GateBoss_8 = new SequenceGUID(-1052705959); public static readonly SequenceGUID SEQ_Shared_Projectile_326 = new SequenceGUID(-2117069411); public static readonly SequenceGUID SEQ_Shared_Trigger_364 = new SequenceGUID(-931628083); public static readonly SequenceGUID SEQ_Shared_Area_Impact_395 = new SequenceGUID(-488729295); public static readonly SequenceGUID SEQ_Shared_Hit_851 = new SequenceGUID(-1013645963); public static readonly SequenceGUID SEQ_Shared_Area_Impact_396 = new SequenceGUID(399932012); public static readonly SequenceGUID SEQ_Shared_Hit_852 = new SequenceGUID(1802685503); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_206 = new SequenceGUID(-1845326516); public static readonly SequenceGUID SEQ_Shared_Projectile_327 = new SequenceGUID(1105068542); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_207 = new SequenceGUID(-15775784); public static readonly SequenceGUID SEQ_Shared_Hit_853 = new SequenceGUID(-66002512); public static readonly SequenceGUID SEQ_Shared_Projectile_328 = new SequenceGUID(90075080); public static readonly SequenceGUID SEQ_Shared_Hit_854 = new SequenceGUID(-829484592); public static readonly SequenceGUID SEQ_Shared_Trigger_365 = new SequenceGUID(58023528); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_208 = new SequenceGUID(58012225); public static readonly SequenceGUID SEQ_Shared_Hit_855 = new SequenceGUID(-1383727156); public static readonly SequenceGUID SEQ_Shared_Projectile_329 = new SequenceGUID(48652029); public static readonly SequenceGUID SEQ_Shared_Hit_856 = new SequenceGUID(41392927); public static readonly SequenceGUID SEQ_Shared_Hit_857 = new SequenceGUID(630959109); public static readonly SequenceGUID SEQ_ContestArena_ActiveFlag_Team02 = new SequenceGUID(1427675323); public static readonly SequenceGUID SEQ_Shared_Hit_858 = new SequenceGUID(-1741271454); public static readonly SequenceGUID SEQ_Shared_Hit_859 = new SequenceGUID(1694038518); public static readonly SequenceGUID SEQ_Shared_Hit_860 = new SequenceGUID(-1721898791); public static readonly SequenceGUID SEQ_Shared_Hit_861 = new SequenceGUID(-909263084); public static readonly SequenceGUID SEQ_Shared_Area_Effect_106 = new SequenceGUID(-214703257); public static readonly SequenceGUID SEQ_Shared_Hit_862 = new SequenceGUID(1005512179); public static readonly SequenceGUID SEQ_Shared_Trigger_366 = new SequenceGUID(-1930454224); public static readonly SequenceGUID SEQ_Shared_Area_Impact_397 = new SequenceGUID(767086192); public static readonly SequenceGUID SEQ_Shared_Hit_863 = new SequenceGUID(1941027782); public static readonly SequenceGUID SEQ_Shared_Trigger_367 = new SequenceGUID(757146082); public static readonly SequenceGUID SEQ_VbloodGhost_Tracked = new SequenceGUID(-254867355); public static readonly SequenceGUID SEQ_Shared_Area_Impact_398 = new SequenceGUID(-1087632285); public static readonly SequenceGUID SEQ_Shared_Area_Impact_399 = new SequenceGUID(-858099622); public static readonly SequenceGUID SEQ_Shared_Hit_864 = new SequenceGUID(-601672982); public static readonly SequenceGUID SEQ_Shared_Projectile_330 = new SequenceGUID(-840288388); public static readonly SequenceGUID SEQ_Shared_Trigger_368 = new SequenceGUID(-1640419355); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1101 = new SequenceGUID(1499076305); public static readonly SequenceGUID SEQ_Shared_Hit_865 = new SequenceGUID(566941603); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_2 = new SequenceGUID(1338343463); public static readonly SequenceGUID SEQ_Shared_Trigger_369 = new SequenceGUID(2096432442); public static readonly SequenceGUID SEQ_Shared_Trigger_370 = new SequenceGUID(-274465823); public static readonly SequenceGUID SEQ_Shared_Hit_866 = new SequenceGUID(1672467352); public static readonly SequenceGUID SEQ_Shared_Projectile_331 = new SequenceGUID(-546210318); public static readonly SequenceGUID SEQ_Shared_Trigger_371 = new SequenceGUID(-1469492512); public static readonly SequenceGUID SEQ_Shared_Trigger_372 = new SequenceGUID(770778228); public static readonly SequenceGUID SEQ_Shared_Area_Impact_400 = new SequenceGUID(-1905885561); public static readonly SequenceGUID SEQ_Shared_Trigger_373 = new SequenceGUID(1027626630); public static readonly SequenceGUID SEQ_Shared_GateBoss_9 = new SequenceGUID(1261341613); public static readonly SequenceGUID SEQ_Shared_Hit_867 = new SequenceGUID(-816499821); public static readonly SequenceGUID SEQ_Shared_Projectile_332 = new SequenceGUID(-1625871294); public static readonly SequenceGUID SEQ_Shared_Hit_868 = new SequenceGUID(752777583); public static readonly SequenceGUID SEQ_Shared_Projectile_333 = new SequenceGUID(15627524); public static readonly SequenceGUID SEQ_Shared_Object_Hit_101 = new SequenceGUID(513899840); public static readonly SequenceGUID SEQ_Shared_Area_Impact_401 = new SequenceGUID(-878827550); public static readonly SequenceGUID SEQ_Shared_Hit_869 = new SequenceGUID(-940076466); public static readonly SequenceGUID SEQ_Shared_Projectile_334 = new SequenceGUID(1512412049); public static readonly SequenceGUID SEQ_Shared_Hit_870 = new SequenceGUID(937384646); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_209 = new SequenceGUID(-1135736330); public static readonly SequenceGUID SEQ_Shared_Hit_871 = new SequenceGUID(884165406); public static readonly SequenceGUID SEQ_Shared_Projectile_335 = new SequenceGUID(1594467049); public static readonly SequenceGUID SEQ_Shared_Area_Impact_402 = new SequenceGUID(-377400125); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_210 = new SequenceGUID(-2084312141); public static readonly SequenceGUID SEQ_Shared_Hit_872 = new SequenceGUID(1603782999); public static readonly SequenceGUID SEQ_Shared_Projectile_336 = new SequenceGUID(-1705225100); public static readonly SequenceGUID SEQ_Shared_Trigger_374 = new SequenceGUID(1801943727); public static readonly SequenceGUID SEQ_Shared_Hit_873 = new SequenceGUID(388300192); public static readonly SequenceGUID SEQ_Shared_Hit_874 = new SequenceGUID(-779872583); public static readonly SequenceGUID SEQ_Shared_Trigger_375 = new SequenceGUID(-453267136); public static readonly SequenceGUID SEQ_Shared_Area_Impact_403 = new SequenceGUID(1531470782); public static readonly SequenceGUID SEQ_Shared_Area_Impact_404 = new SequenceGUID(-1613030432); public static readonly SequenceGUID SEQ_Shared_Hit_875 = new SequenceGUID(-905244392); public static readonly SequenceGUID SEQ_Shared_Projectile_337 = new SequenceGUID(1190704112); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_211 = new SequenceGUID(1241771093); public static readonly SequenceGUID SEQ_Shared_Hit_876 = new SequenceGUID(-415843202); public static readonly SequenceGUID SEQ_Shared_Projectile_338 = new SequenceGUID(1628576021); public static readonly SequenceGUID SEQ_Shared_Area_Effect_107 = new SequenceGUID(1186575383); public static readonly SequenceGUID SEQ_Shared_Area_Impact_405 = new SequenceGUID(-1509966223); public static readonly SequenceGUID SEQ_Shared_Hit_877 = new SequenceGUID(-988077664); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_212 = new SequenceGUID(-1489628451); public static readonly SequenceGUID SEQ_Shared_Projectile_339 = new SequenceGUID(700355205); public static readonly SequenceGUID SEQ_Shared_Area_Impact_406 = new SequenceGUID(736272200); public static readonly SequenceGUID SEQ_Shared_Hit_878 = new SequenceGUID(1987816978); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_213 = new SequenceGUID(-356054324); public static readonly SequenceGUID SEQ_Shared_Projectile_340 = new SequenceGUID(-1198846605); public static readonly SequenceGUID SEQ_Shared_Trigger_376 = new SequenceGUID(-1081000372); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_158 = new SequenceGUID(1451156891); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_214 = new SequenceGUID(-650295171); public static readonly SequenceGUID SEQ_Shared_Hit_879 = new SequenceGUID(-32384460); public static readonly SequenceGUID SEQ_Shared_Projectile_341 = new SequenceGUID(-1044004767); public static readonly SequenceGUID SEQ_Shared_Trigger_377 = new SequenceGUID(974502308); public static readonly SequenceGUID SEQ_Shared_Trigger_378 = new SequenceGUID(-1541968047); public static readonly SequenceGUID SEQ_Shared_Trigger_379 = new SequenceGUID(-1719341924); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel_4 = new SequenceGUID(-496294451); public static readonly SequenceGUID SEQ_Shared_Area_Impact_407 = new SequenceGUID(930861214); public static readonly SequenceGUID SEQ_Shared_Area_Impact_408 = new SequenceGUID(612264381); public static readonly SequenceGUID SEQ_Shared_Hit_880 = new SequenceGUID(-526315302); public static readonly SequenceGUID SEQ_Shared_Area_Impact_409 = new SequenceGUID(1575359125); public static readonly SequenceGUID SEQ_Shared_Hit_881 = new SequenceGUID(-1437001997); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_215 = new SequenceGUID(-585921015); public static readonly SequenceGUID SEQ_Shared_Hit_882 = new SequenceGUID(-1405052446); public static readonly SequenceGUID SEQ_Shared_Hit_883 = new SequenceGUID(1116575482); public static readonly SequenceGUID SEQ_Shared_Projectile_342 = new SequenceGUID(997155228); public static readonly SequenceGUID SEQ_Shared_Area_Impact_410 = new SequenceGUID(-1061689513); public static readonly SequenceGUID SEQ_Shared_Hit_884 = new SequenceGUID(-1095578357); public static readonly SequenceGUID SEQ_Shared_Trigger_380 = new SequenceGUID(1431531453); public static readonly SequenceGUID SEQ_Shared_Trigger_381 = new SequenceGUID(-1967122493); public static readonly SequenceGUID SEQ_Shared_Hit_885 = new SequenceGUID(-2001780741); public static readonly SequenceGUID SEQ_Shared_Trigger_382 = new SequenceGUID(-1826719704); public static readonly SequenceGUID SEQ_Shared_Hit_886 = new SequenceGUID(1429159931); public static readonly SequenceGUID SEQ_Shared_Area_Impact_411 = new SequenceGUID(-1277529693); public static readonly SequenceGUID SEQ_Shared_Projectile_343 = new SequenceGUID(959501213); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_3 = new SequenceGUID(1752712302); public static readonly SequenceGUID SEQ_Shared_Hit_887 = new SequenceGUID(-1294216192); public static readonly SequenceGUID SEQ_Shared_Area_Impact_412 = new SequenceGUID(-1498483208); public static readonly SequenceGUID SEQ_Shared_Hit_888 = new SequenceGUID(207521948); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_216 = new SequenceGUID(477959104); public static readonly SequenceGUID SEQ_Shared_Hit_889 = new SequenceGUID(-1284006405); public static readonly SequenceGUID SEQ_Shared_Projectile_344 = new SequenceGUID(-187286479); public static readonly SequenceGUID SEQ_Shared_Hit_890 = new SequenceGUID(561176539); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_217 = new SequenceGUID(-961703199); public static readonly SequenceGUID SEQ_Shared_Hit_891 = new SequenceGUID(-895062136); public static readonly SequenceGUID SEQ_Shared_Projectile_345 = new SequenceGUID(1205985575); public static readonly SequenceGUID SEQ_Shared_Hit_892 = new SequenceGUID(2072556351); public static readonly SequenceGUID SEQ_Shared_Hit_893 = new SequenceGUID(2063365097); public static readonly SequenceGUID SEQ_Shared_Hit_894 = new SequenceGUID(1154809384); public static readonly SequenceGUID SEQ_Shared_Hit_895 = new SequenceGUID(961528044); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_218 = new SequenceGUID(-945395361); public static readonly SequenceGUID SEQ_Shared_Projectile_346 = new SequenceGUID(-1997881758); public static readonly SequenceGUID SEQ_Shared_Area_Effect_108 = new SequenceGUID(516875039); public static readonly SequenceGUID SEQ_Shared_Hit_896 = new SequenceGUID(591978547); public static readonly SequenceGUID SEQ_Shared_Buff_OUTDATED_3 = new SequenceGUID(-878132294); public static readonly SequenceGUID SEQ_Shared_Area_Effect_109 = new SequenceGUID(-1041699297); public static readonly SequenceGUID SEQ_Shared_Hit_897 = new SequenceGUID(-2093117766); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_219 = new SequenceGUID(-655935837); public static readonly SequenceGUID SEQ_Shared_Hit_898 = new SequenceGUID(-1769951891); public static readonly SequenceGUID SEQ_Shared_Projectile_347 = new SequenceGUID(1635262606); public static readonly SequenceGUID SEQ_Shared_Trigger_383 = new SequenceGUID(-674350467); public static readonly SequenceGUID SEQ_Shared_Hit_899 = new SequenceGUID(-1077906708); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_220 = new SequenceGUID(-864549045); public static readonly SequenceGUID SEQ_Shared_Hit_900 = new SequenceGUID(-1938321822); public static readonly SequenceGUID SEQ_Shared_Projectile_348 = new SequenceGUID(-1961440783); public static readonly SequenceGUID SEQ_Shared_Hit_901 = new SequenceGUID(1386168302); public static readonly SequenceGUID SEQ_Shared_Hit_902 = new SequenceGUID(-1146816041); public static readonly SequenceGUID SEQ_Shared_Hit_903 = new SequenceGUID(-1913783763); public static readonly SequenceGUID SEQ_Shared_Hit_904 = new SequenceGUID(-1051352820); public static readonly SequenceGUID SEQ_Shared_Hit_905 = new SequenceGUID(-2057958319); public static readonly SequenceGUID SEQ_Shared_Trigger_384 = new SequenceGUID(-1094188166); public static readonly SequenceGUID SEQ_Shared_Area_Impact_413 = new SequenceGUID(-144185123); public static readonly SequenceGUID SEQ_Shared_Hit_906 = new SequenceGUID(906703590); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_21 = new SequenceGUID(1073792130); public static readonly SequenceGUID SEQ_Shared_Trigger_385 = new SequenceGUID(-1967779847); public static readonly SequenceGUID SEQ_Shared_Hit_907 = new SequenceGUID(-83870486); public static readonly SequenceGUID SEQ_Shared_Hit_908 = new SequenceGUID(1546714346); public static readonly SequenceGUID SEQ_Shared_Area_Impact_414 = new SequenceGUID(-1810929195); public static readonly SequenceGUID SEQ_GeneralTeleport_Travel = new SequenceGUID(-1336772966); public static readonly SequenceGUID SEQ_Shared_Area_Impact_415 = new SequenceGUID(1288225395); public static readonly SequenceGUID SEQ_Shared_Hit_909 = new SequenceGUID(-121541386); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_221 = new SequenceGUID(232880883); public static readonly SequenceGUID SEQ_Shared_Projectile_349 = new SequenceGUID(533378616); public static readonly SequenceGUID SEQ_Vampire_Death_VBlood = new SequenceGUID(-1805254135); public static readonly SequenceGUID SEQ_Shared_Area_Impact_416 = new SequenceGUID(542150105); public static readonly SequenceGUID SEQ_Shared_Hit_910 = new SequenceGUID(521122926); public static readonly SequenceGUID SEQ_Shared_Hit_911 = new SequenceGUID(1943223750); public static readonly SequenceGUID SEQ_Shared_Area_Impact_417 = new SequenceGUID(76439650); public static readonly SequenceGUID SEQ_Shared_Trigger_386 = new SequenceGUID(-1671084736); public static readonly SequenceGUID SEQ_Shared_Object_Hit_102 = new SequenceGUID(-1009701515); public static readonly SequenceGUID SEQ_Shared_Area_Impact_418 = new SequenceGUID(-1173762598); public static readonly SequenceGUID SEQ_Shared_Hit_912 = new SequenceGUID(-1759219302); public static readonly SequenceGUID SEQ_Shared_Hit_913 = new SequenceGUID(-2037938824); public static readonly SequenceGUID SEQ_Shared_Object_Hit_103 = new SequenceGUID(-1879108704); public static readonly SequenceGUID SEQ_Shared_Hit_914 = new SequenceGUID(-1289941499); public static readonly SequenceGUID SEQ_Shared_Projectile_350 = new SequenceGUID(-760705691); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel_5 = new SequenceGUID(1252487256); public static readonly SequenceGUID SEQ_Shared_Hit_915 = new SequenceGUID(-913046790); public static readonly SequenceGUID SEQ_Shared_Hit_916 = new SequenceGUID(1038214919); public static readonly SequenceGUID SEQ_Shared_Area_Effect_110 = new SequenceGUID(-825182769); public static readonly SequenceGUID SEQ_Shared_Trigger_387 = new SequenceGUID(2025879920); public static readonly SequenceGUID SEQ_Shared_Hit_917 = new SequenceGUID(1975443350); public static readonly SequenceGUID SEQ_Shared_Hit_918 = new SequenceGUID(1124270846); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_5 = new SequenceGUID(-1998003360); public static readonly SequenceGUID SEQ_Shared_EntityEffect_4 = new SequenceGUID(1311207701); public static readonly SequenceGUID SEQ_Shared_Area_Impact_419 = new SequenceGUID(1658924577); public static readonly SequenceGUID SEQ_Shared_Area_Impact_420 = new SequenceGUID(-1923619883); public static readonly SequenceGUID SEQ_Shared_Area_Impact_421 = new SequenceGUID(1668561919); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_222 = new SequenceGUID(-1881876236); public static readonly SequenceGUID SEQ_Shared_Hit_919 = new SequenceGUID(-1599646944); public static readonly SequenceGUID SEQ_Shared_Projectile_351 = new SequenceGUID(-1592514096); public static readonly SequenceGUID SEQ_Consumable_DrinkPotion_Trigger_11 = new SequenceGUID(-1103365543); public static readonly SequenceGUID SEQ_Shared_Trigger_388 = new SequenceGUID(411398986); public static readonly SequenceGUID SEQ_Shared_Area_Effect_111 = new SequenceGUID(281483236); public static readonly SequenceGUID SEQ_Shared_Hit_920 = new SequenceGUID(971625062); public static readonly SequenceGUID SEQ_Shared_Trigger_389 = new SequenceGUID(1529239026); public static readonly SequenceGUID SEQ_Shared_Hit_921 = new SequenceGUID(-716312879); public static readonly SequenceGUID SEQ_Shared_Hit_922 = new SequenceGUID(999952465); public static readonly SequenceGUID SEQ_Shared_Hit_923 = new SequenceGUID(774861621); public static readonly SequenceGUID SEQ_Shared_Hit_924 = new SequenceGUID(-1998809390); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_223 = new SequenceGUID(-1636372619); public static readonly SequenceGUID SEQ_Shared_Hit_925 = new SequenceGUID(1711681150); public static readonly SequenceGUID SEQ_Shared_Projectile_352 = new SequenceGUID(-822361900); public static readonly SequenceGUID SEQ_Shared_GateBoss_10 = new SequenceGUID(-500303068); public static readonly SequenceGUID SEQ_Shared_Trigger_390 = new SequenceGUID(-1191106637); public static readonly SequenceGUID SEQ_Shared_Hit_926 = new SequenceGUID(-1653760349); public static readonly SequenceGUID SEQ_Shared_Hit_927 = new SequenceGUID(1606213029); public static readonly SequenceGUID SEQ_Shared_Area_Impact_422 = new SequenceGUID(1784586074); public static readonly SequenceGUID SEQ_Shared_Hit_928 = new SequenceGUID(-1541705924); public static readonly SequenceGUID SEQ_Shared_Hit_929 = new SequenceGUID(-1535450921); public static readonly SequenceGUID SEQ_Shared_Hit_930 = new SequenceGUID(1038820138); public static readonly SequenceGUID SEQ_Shared_Hit_931 = new SequenceGUID(2021448770); public static readonly SequenceGUID SEQ_Shared_Trigger_391 = new SequenceGUID(-1282385162); public static readonly SequenceGUID SEQ_Shared_Area_Impact_423 = new SequenceGUID(279847562); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel_6 = new SequenceGUID(1009823861); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_224 = new SequenceGUID(2028948314); public static readonly SequenceGUID SEQ_Shared_Area_Impact_424 = new SequenceGUID(-476085562); public static readonly SequenceGUID SEQ_Shared_Area_Impact_425 = new SequenceGUID(-1666770267); public static readonly SequenceGUID SEQ_Shared_Vampire_Revive_AllyTarget_Buff = new SequenceGUID(-1491486422); public static readonly SequenceGUID SEQ_Shared_Trigger_392 = new SequenceGUID(1887273452); public static readonly SequenceGUID SEQ_Shared_Hit_932 = new SequenceGUID(-457858708); public static readonly SequenceGUID SEQ_Shared_Hit_933 = new SequenceGUID(1916739283); public static readonly SequenceGUID SEQ_Shared_Area_Effect_112 = new SequenceGUID(-1711402940); public static readonly SequenceGUID SEQ_Shared_Hit_934 = new SequenceGUID(1313237550); public static readonly SequenceGUID SEQ_Shared_Trigger_393 = new SequenceGUID(620310501); public static readonly SequenceGUID SEQ_Shared_Hit_935 = new SequenceGUID(-1711280335); public static readonly SequenceGUID SEQ_Shared_Area_Effect_113 = new SequenceGUID(244901594); public static readonly SequenceGUID SEQ_Shared_Hit_936 = new SequenceGUID(-805565177); public static readonly SequenceGUID SEQ_Shared_Hit_937 = new SequenceGUID(-1749509509); public static readonly SequenceGUID SEQ_Shared_Hit_938 = new SequenceGUID(2011536109); public static readonly SequenceGUID SEQ_Shared_Hit_939 = new SequenceGUID(1059599973); public static readonly SequenceGUID SEQ_Shared_Buff_OUTDATED_4 = new SequenceGUID(1458288926); public static readonly SequenceGUID SEQ_Shared_Area_Impact_426 = new SequenceGUID(428743168); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_225 = new SequenceGUID(1118087570); public static readonly SequenceGUID SEQ_Shared_Hit_940 = new SequenceGUID(1011006355); public static readonly SequenceGUID SEQ_Shared_Projectile_353 = new SequenceGUID(1847586641); public static readonly SequenceGUID SEQ_Shared_Hit_941 = new SequenceGUID(1490419956); public static readonly SequenceGUID SEQ_ChainLightning_Beam_Buff = new SequenceGUID(1057585450); public static readonly SequenceGUID SEQ_Shared_Trigger_394 = new SequenceGUID(1550946854); public static readonly SequenceGUID SEQ_Shared_Trigger_395 = new SequenceGUID(46419494); public static readonly SequenceGUID SEQ_Shared_Trigger_396 = new SequenceGUID(-255270221); public static readonly SequenceGUID SEQ_Shared_Trigger_397 = new SequenceGUID(1034870643); public static readonly SequenceGUID SEQ_Shared_Buff_OUTDATED_5 = new SequenceGUID(-2013131434); public static readonly SequenceGUID SEQ_Shared_Hit_942 = new SequenceGUID(-1138387148); public static readonly SequenceGUID SEQ_Shared_Area_Impact_427 = new SequenceGUID(401822200); public static readonly SequenceGUID SEQ_Shared_Object_Hit_104 = new SequenceGUID(1994889547); public static readonly SequenceGUID SEQ_Shared_Area_Impact_428 = new SequenceGUID(-2057986290); public static readonly SequenceGUID SEQ_Shared_Hit_943 = new SequenceGUID(831122540); public static readonly SequenceGUID SEQ_Shared_Trigger_398 = new SequenceGUID(-1123441705); public static readonly SequenceGUID SEQ_Shared_Area_Impact_429 = new SequenceGUID(-752205439); public static readonly SequenceGUID SEQ_Shared_Area_Effect_114 = new SequenceGUID(-1461012552); public static readonly SequenceGUID SEQ_Shared_Area_Impact_430 = new SequenceGUID(-871305901); public static readonly SequenceGUID SEQ_Shared_Area_Impact_431 = new SequenceGUID(-1150973260); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_226 = new SequenceGUID(-903926846); public static readonly SequenceGUID SEQ_Shared_Hit_944 = new SequenceGUID(-280251375); public static readonly SequenceGUID SEQ_Shared_Projectile_354 = new SequenceGUID(1962502437); public static readonly SequenceGUID SEQ_Shared_Area_Impact_432 = new SequenceGUID(-462407857); public static readonly SequenceGUID SEQ_Shared_Trigger_399 = new SequenceGUID(-1259649141); public static readonly SequenceGUID SEQ_Stash_Shared_Open = new SequenceGUID(1662654190); public static readonly SequenceGUID SEQ_Emery_Buff_ChargeUp = new SequenceGUID(1960911378); public static readonly SequenceGUID SEQ_Shared_Dissolve = new SequenceGUID(-1602175123); public static readonly SequenceGUID SEQ_Shared_Dissolve_1 = new SequenceGUID(-893952716); public static readonly SequenceGUID SEQ_Stash_Shared_Close = new SequenceGUID(459384622); public static readonly SequenceGUID SEQ_Stash_Shared_Open_1 = new SequenceGUID(15205949); public static readonly SequenceGUID SEQ_Stash_Shared_Close_1 = new SequenceGUID(-261079857); public static readonly SequenceGUID SEQ_Stash_Shared_Open_2 = new SequenceGUID(1650734674); public static readonly SequenceGUID SEQ_Stash_Shared_Close_2 = new SequenceGUID(1072414407); public static readonly SequenceGUID SEQ_Stash_Shared_Open_3 = new SequenceGUID(1848217693); public static readonly SequenceGUID SEQ_Shared_Dissolve_2 = new SequenceGUID(1345098958); public static readonly SequenceGUID SEQ_Stash_Shared_Close_3 = new SequenceGUID(-561731576); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_3 = new SequenceGUID(1225254638); public static readonly SequenceGUID SEQ_Shared_Area_Impact_433 = new SequenceGUID(1246046329); public static readonly SequenceGUID SEQ_Shared_Hit_945 = new SequenceGUID(-355211509); public static readonly SequenceGUID SEQ_Shared_Hit_946 = new SequenceGUID(-676814348); public static readonly SequenceGUID SEQ_HideCharacter = new SequenceGUID(-1374574919); public static readonly SequenceGUID SEQ_Shared_Trigger_400 = new SequenceGUID(-1083213988); public static readonly SequenceGUID SEQ_Shared_Trigger_401 = new SequenceGUID(-514901297); public static readonly SequenceGUID SEQ_InventoryRoute_Blinking = new SequenceGUID(-1515147696); public static readonly SequenceGUID SEQ_InventoryRoute_FixedColor = new SequenceGUID(-1582805740); public static readonly SequenceGUID SEQ_InventoryRoute_Blinking_1 = new SequenceGUID(-1894771623); public static readonly SequenceGUID SEQ_InventoryRoute_Blinking_2 = new SequenceGUID(256811793); public static readonly SequenceGUID SEQ_InventoryRoute_FixedColor_1 = new SequenceGUID(156687910); public static readonly SequenceGUID SEQ_InventoryRoute_Blinking_3 = new SequenceGUID(1913144890); public static readonly SequenceGUID SEQ_Servant_Mission = new SequenceGUID(748747438); public static readonly SequenceGUID SEQ_SequenceTest02_Looping = new SequenceGUID(-1738725088); public static readonly SequenceGUID SEQ_SequenceTest01 = new SequenceGUID(1427994231); public static readonly SequenceGUID SEQ_Rebuilding_TransferEnd = new SequenceGUID(-119872048); public static readonly SequenceGUID SEQ_Rebuilding_TransferStart = new SequenceGUID(1318239939); public static readonly SequenceGUID SEQ_Shared_Trigger_402 = new SequenceGUID(-207035781); public static readonly SequenceGUID SEQ_Servant_Mission_1 = new SequenceGUID(465966709); public static readonly SequenceGUID SEQ_Vampire_EquipWeaponInit = new SequenceGUID(1788566578); public static readonly SequenceGUID TestSequence_Sound = new SequenceGUID(434392337); public static readonly SequenceGUID SEQ_ArenaPlacementBlock_OnRemove = new SequenceGUID(-1395359747); public static readonly SequenceGUID SEQ_ArenaPlacementBlock_OnPlace = new SequenceGUID(2014502890); public static readonly SequenceGUID SEQ_Shared_Projectile_OUTDATED_1 = new SequenceGUID(-397852704); public static readonly SequenceGUID SEQ_Shared_Death = new SequenceGUID(1216931907); public static readonly SequenceGUID SEQ_Shared_Trigger_403 = new SequenceGUID(1234337071); public static readonly SequenceGUID SEQ_Stash_Shared_Open_4 = new SequenceGUID(813833042); public static readonly SequenceGUID SEQ_Stash_Shared_Close_4 = new SequenceGUID(-1357083160); public static readonly SequenceGUID SEQ_Stash_Shared_Open_5 = new SequenceGUID(1135696137); public static readonly SequenceGUID SEQ_Stash_Shared_Close_5 = new SequenceGUID(1147106674); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_4 = new SequenceGUID(1143726954); public static readonly SequenceGUID SEQ_Stash_Shared_Close_6 = new SequenceGUID(2069197716); public static readonly SequenceGUID SEQ_Stash_Shared_Open_6 = new SequenceGUID(1081709044); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_5 = new SequenceGUID(465330382); public static readonly SequenceGUID SEQ_Stash_Shared_Close_7 = new SequenceGUID(813085806); public static readonly SequenceGUID SEQ_Stash_Shared_Open_7 = new SequenceGUID(493091439); public static readonly SequenceGUID SEQ_Stash_Shared_Close_8 = new SequenceGUID(-1583200033); public static readonly SequenceGUID SEQ_Stash_Shared_Open_8 = new SequenceGUID(-1429810565); public static readonly SequenceGUID SEQ_Shared_Trigger_404 = new SequenceGUID(784290646); public static readonly SequenceGUID SEQ_Stash_Shared_Close_9 = new SequenceGUID(2020397425); public static readonly SequenceGUID SEQ_Stash_Shared_Open_9 = new SequenceGUID(-1739976184); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_02 = new SequenceGUID(-1819585670); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Open_02 = new SequenceGUID(-2038469050); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_01 = new SequenceGUID(889053037); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Open_01 = new SequenceGUID(1761746270); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_02_1 = new SequenceGUID(1219677532); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_6 = new SequenceGUID(93473232); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_7 = new SequenceGUID(806737346); public static readonly SequenceGUID SEQ_Shared_Trigger_405 = new SequenceGUID(-1332018906); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Open_01_1 = new SequenceGUID(1724228627); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_01_1 = new SequenceGUID(1127343687); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Open_02_1 = new SequenceGUID(549232955); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_14 = new SequenceGUID(-1789594440); public static readonly SequenceGUID SEQ_Contest_Immaterial = new SequenceGUID(-192572431); public static readonly SequenceGUID SEQ_Contest_Rematerialize = new SequenceGUID(-262774549); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_01_2 = new SequenceGUID(1423529244); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_02_2 = new SequenceGUID(1515863089); public static readonly SequenceGUID SEQ_Stash_Shared_Close_10 = new SequenceGUID(-589239893); public static readonly SequenceGUID SEQ_Stash_Shared_Open_10 = new SequenceGUID(136655142); public static readonly SequenceGUID SEQ_TileModelPhased = new SequenceGUID(-727847943); public static readonly SequenceGUID SEQ_TileModel_Hover_Blocked = new SequenceGUID(-668659474); public static readonly SequenceGUID SEQ_TileModel_Hover_CanDismantle = new SequenceGUID(-1564614306); public static readonly SequenceGUID SEQ_TileModel_Hover_CanEdit = new SequenceGUID(-146356561); public static readonly SequenceGUID SEQ_TileModel_Hover_IsEdited = new SequenceGUID(996303984); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1102 = new SequenceGUID(-1067152407); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1103 = new SequenceGUID(1367044859); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1104 = new SequenceGUID(-434620204); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1105 = new SequenceGUID(1556923685); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1106 = new SequenceGUID(-1636245447); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1107 = new SequenceGUID(346390511); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1108 = new SequenceGUID(1177946523); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1109 = new SequenceGUID(336745132); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1110 = new SequenceGUID(-353368663); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1111 = new SequenceGUID(1799646850); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1112 = new SequenceGUID(156636123); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1113 = new SequenceGUID(1660101925); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1114 = new SequenceGUID(-1844919739); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1115 = new SequenceGUID(-1427512398); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1116 = new SequenceGUID(1306206030); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1117 = new SequenceGUID(-260172649); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1118 = new SequenceGUID(109140133); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1119 = new SequenceGUID(-1289797478); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1120 = new SequenceGUID(-1037964859); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1121 = new SequenceGUID(-2127009197); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1122 = new SequenceGUID(1719007765); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1123 = new SequenceGUID(106625501); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_3 = new SequenceGUID(-23235733); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1124 = new SequenceGUID(2067788884); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1125 = new SequenceGUID(1003814234); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1126 = new SequenceGUID(725102499); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1127 = new SequenceGUID(924881602); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1128 = new SequenceGUID(-783969671); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1129 = new SequenceGUID(416511313); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1130 = new SequenceGUID(403182238); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1131 = new SequenceGUID(-418658400); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1132 = new SequenceGUID(-97814362); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1133 = new SequenceGUID(1915231918); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1134 = new SequenceGUID(2052249814); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1135 = new SequenceGUID(1924072491); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1136 = new SequenceGUID(124683918); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1137 = new SequenceGUID(1410105873); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1138 = new SequenceGUID(1230916655); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1139 = new SequenceGUID(-1450149784); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1140 = new SequenceGUID(-1149576690); public static readonly SequenceGUID SEQ_Vampire_LeapMount_Cast = new SequenceGUID(-1961002211); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1141 = new SequenceGUID(-1659753684); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1142 = new SequenceGUID(-1610295342); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1143 = new SequenceGUID(-908406321); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1144 = new SequenceGUID(1548605233); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1145 = new SequenceGUID(-56133497); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1146 = new SequenceGUID(1900195721); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1147 = new SequenceGUID(-698347987); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1148 = new SequenceGUID(-1581657729); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1149 = new SequenceGUID(-1644082412); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1150 = new SequenceGUID(-699958519); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1151 = new SequenceGUID(2035609828); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1152 = new SequenceGUID(659874056); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1153 = new SequenceGUID(635811412); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1154 = new SequenceGUID(437039709); public static readonly SequenceGUID SEQ_Unit_Bear_OnAggro = new SequenceGUID(-558735799); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1155 = new SequenceGUID(1487709869); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1156 = new SequenceGUID(209285279); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1157 = new SequenceGUID(818465014); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_4 = new SequenceGUID(1513703229); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1158 = new SequenceGUID(1998872211); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1159 = new SequenceGUID(307357409); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1160 = new SequenceGUID(-301497576); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1161 = new SequenceGUID(653343376); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1162 = new SequenceGUID(-1476377483); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1163 = new SequenceGUID(259242509); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1164 = new SequenceGUID(1571653190); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1165 = new SequenceGUID(-278661913); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1166 = new SequenceGUID(777902452); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1167 = new SequenceGUID(-2086711189); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1168 = new SequenceGUID(1700796159); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1169 = new SequenceGUID(-213035064); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1170 = new SequenceGUID(967126933); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1171 = new SequenceGUID(-929255265); public static readonly SequenceGUID SEQ_Shared_Vampire_Cast_DirectionalShield = new SequenceGUID(753293020); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1172 = new SequenceGUID(239968523); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1173 = new SequenceGUID(1957135444); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1174 = new SequenceGUID(-1159913558); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1175 = new SequenceGUID(1561987623); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1176 = new SequenceGUID(-39693347); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1177 = new SequenceGUID(821881108); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1178 = new SequenceGUID(-1699323202); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1179 = new SequenceGUID(460566990); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1180 = new SequenceGUID(-447648348); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1181 = new SequenceGUID(-605825643); public static readonly SequenceGUID SEQ_Wolf_OnAggro = new SequenceGUID(1147896386); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1182 = new SequenceGUID(-1548363720); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1183 = new SequenceGUID(-1978770553); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1184 = new SequenceGUID(313297514); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1185 = new SequenceGUID(1888773112); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1186 = new SequenceGUID(-812105109); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1187 = new SequenceGUID(-36577618); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1188 = new SequenceGUID(-2051749458); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1189 = new SequenceGUID(172246313); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1190 = new SequenceGUID(991533505); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1191 = new SequenceGUID(-2952464); public static readonly SequenceGUID SEQ_Unit_Shared_Step = new SequenceGUID(-206433202); public static readonly SequenceGUID SEQ_Shared_Vampire_Cast_DirectionalShield_1 = new SequenceGUID(215243788); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1192 = new SequenceGUID(1715062005); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1193 = new SequenceGUID(-763614578); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1194 = new SequenceGUID(217217863); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1195 = new SequenceGUID(723000328); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1196 = new SequenceGUID(-396095746); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1197 = new SequenceGUID(2005977155); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1198 = new SequenceGUID(-1498188136); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1199 = new SequenceGUID(-2089097114); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1200 = new SequenceGUID(807627157); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1201 = new SequenceGUID(-2117366238); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1202 = new SequenceGUID(155469450); public static readonly SequenceGUID SEQ_Unit_Shared_Step_1 = new SequenceGUID(93133786); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1203 = new SequenceGUID(-1635612802); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1204 = new SequenceGUID(1826919687); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1205 = new SequenceGUID(-1270196134); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1206 = new SequenceGUID(1191002298); public static readonly SequenceGUID SEQ_Knight_2H_OnAggro = new SequenceGUID(574019130); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1207 = new SequenceGUID(814943103); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1208 = new SequenceGUID(1281819704); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1209 = new SequenceGUID(310946785); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1210 = new SequenceGUID(-1528608541); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_5 = new SequenceGUID(-1714361622); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1211 = new SequenceGUID(-777036331); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1212 = new SequenceGUID(-1308257130); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1213 = new SequenceGUID(-1525458489); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1214 = new SequenceGUID(-691516653); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1215 = new SequenceGUID(-1030601722); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1216 = new SequenceGUID(1343153687); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1217 = new SequenceGUID(-1193256908); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1218 = new SequenceGUID(-8329749); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1219 = new SequenceGUID(-93432962); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1220 = new SequenceGUID(2021710392); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1221 = new SequenceGUID(-497500110); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1222 = new SequenceGUID(-2143264221); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1223 = new SequenceGUID(203498417); public static readonly SequenceGUID SEQ_Unit_Shared_Step_2 = new SequenceGUID(-934136452); public static readonly SequenceGUID SEQ_Unit_Shared_Step_3 = new SequenceGUID(-186902467); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1224 = new SequenceGUID(1748925261); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1225 = new SequenceGUID(-313904288); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1226 = new SequenceGUID(-47313664); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_Moving_4 = new SequenceGUID(-1366165846); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1227 = new SequenceGUID(279841413); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_6 = new SequenceGUID(2008320521); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1228 = new SequenceGUID(-1918133913); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1229 = new SequenceGUID(-655350755); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1230 = new SequenceGUID(1723850636); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1231 = new SequenceGUID(193618689); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1232 = new SequenceGUID(988443793); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1233 = new SequenceGUID(-304397066); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1234 = new SequenceGUID(467771604); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1235 = new SequenceGUID(109302674); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1236 = new SequenceGUID(1478030023); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1237 = new SequenceGUID(1942373707); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1238 = new SequenceGUID(-1456714134); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1239 = new SequenceGUID(-563463079); public static readonly SequenceGUID SEQ_Vampire_LeapMount_Cast_1 = new SequenceGUID(-1049108203); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1240 = new SequenceGUID(1061757285); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1241 = new SequenceGUID(1635436280); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1242 = new SequenceGUID(633073910); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1243 = new SequenceGUID(-1322186408); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1244 = new SequenceGUID(252870651); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1245 = new SequenceGUID(1831135610); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1246 = new SequenceGUID(-1531754709); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_7 = new SequenceGUID(285834991); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1247 = new SequenceGUID(-2062458073); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1248 = new SequenceGUID(-1281959644); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1249 = new SequenceGUID(294160571); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1250 = new SequenceGUID(-1791403053); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1251 = new SequenceGUID(-1403323427); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1252 = new SequenceGUID(380601578); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1253 = new SequenceGUID(230219708); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1254 = new SequenceGUID(-253543258); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1255 = new SequenceGUID(1596165376); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1256 = new SequenceGUID(1038679717); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1257 = new SequenceGUID(33543881); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1258 = new SequenceGUID(1153006628); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1259 = new SequenceGUID(94930260); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1260 = new SequenceGUID(907079873); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1261 = new SequenceGUID(-1981143630); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1262 = new SequenceGUID(-351799147); public static readonly SequenceGUID SEQ_Paladin_OnAggro = new SequenceGUID(-1859866200); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1263 = new SequenceGUID(1030453588); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1264 = new SequenceGUID(1621309198); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1265 = new SequenceGUID(678823157); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY_6 = new SequenceGUID(815761689); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1266 = new SequenceGUID(-685417348); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1267 = new SequenceGUID(731723680); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1268 = new SequenceGUID(-1138297791); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1269 = new SequenceGUID(-436600912); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1270 = new SequenceGUID(-1324697363); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1271 = new SequenceGUID(1383255792); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_8 = new SequenceGUID(163382548); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1272 = new SequenceGUID(-1165859639); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1273 = new SequenceGUID(1715565745); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1274 = new SequenceGUID(496654022); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1275 = new SequenceGUID(-61134074); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1276 = new SequenceGUID(1041345786); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1277 = new SequenceGUID(-1016642932); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1278 = new SequenceGUID(-125609220); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1279 = new SequenceGUID(2002281564); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1280 = new SequenceGUID(-511624544); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1281 = new SequenceGUID(834089456); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1282 = new SequenceGUID(-790192101); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1283 = new SequenceGUID(523512458); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1284 = new SequenceGUID(-202620929); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1285 = new SequenceGUID(2011953729); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1286 = new SequenceGUID(-2035978544); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1287 = new SequenceGUID(65397280); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1288 = new SequenceGUID(276435787); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1289 = new SequenceGUID(-1972004735); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1290 = new SequenceGUID(1555369236); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1291 = new SequenceGUID(1380670983); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1292 = new SequenceGUID(161799543); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1293 = new SequenceGUID(-2099219942); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1294 = new SequenceGUID(120167968); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1295 = new SequenceGUID(1974351628); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1296 = new SequenceGUID(-716997497); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1297 = new SequenceGUID(1498091775); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1298 = new SequenceGUID(774713291); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1299 = new SequenceGUID(-1260924879); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1300 = new SequenceGUID(-1227320242); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_35 = new SequenceGUID(343577545); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1301 = new SequenceGUID(-2076770680); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1302 = new SequenceGUID(-1427134529); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1303 = new SequenceGUID(1872070052); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1304 = new SequenceGUID(-979242889); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1305 = new SequenceGUID(877218016); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1306 = new SequenceGUID(-1486722323); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1307 = new SequenceGUID(1483198579); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1308 = new SequenceGUID(322306731); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1309 = new SequenceGUID(624764806); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1310 = new SequenceGUID(-1034264521); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1311 = new SequenceGUID(-432306141); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1312 = new SequenceGUID(1385618531); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1313 = new SequenceGUID(1427659734); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1314 = new SequenceGUID(-1791962498); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1315 = new SequenceGUID(871663397); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1316 = new SequenceGUID(-647764029); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1317 = new SequenceGUID(-1491151453); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1318 = new SequenceGUID(-351373706); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1319 = new SequenceGUID(-1494746426); public static readonly SequenceGUID SEQ_Unit_Shared_Step_4 = new SequenceGUID(1902506785); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1320 = new SequenceGUID(1834014710); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1321 = new SequenceGUID(-762719729); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1322 = new SequenceGUID(1599017724); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1323 = new SequenceGUID(-837865418); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1324 = new SequenceGUID(-508315969); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1325 = new SequenceGUID(507411988); public static readonly SequenceGUID SEQ_KnightShield_OnAggro = new SequenceGUID(-1323164370); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1326 = new SequenceGUID(2024718589); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1327 = new SequenceGUID(-1711752113); public static readonly SequenceGUID SEQ_Unit_Shared_Step_5 = new SequenceGUID(-2043708944); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1328 = new SequenceGUID(-1754639349); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1329 = new SequenceGUID(-834246963); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1330 = new SequenceGUID(-205466081); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1331 = new SequenceGUID(21923043); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1332 = new SequenceGUID(-1558531826); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1333 = new SequenceGUID(-236262103); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1334 = new SequenceGUID(-1946878318); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1335 = new SequenceGUID(1774104495); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1336 = new SequenceGUID(-328138284); public static readonly SequenceGUID SEQ_Unit_Shared_Step_6 = new SequenceGUID(-1914741724); public static readonly SequenceGUID SEQ_Unit_Shared_Step_7 = new SequenceGUID(-59278482); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1337 = new SequenceGUID(1788176726); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1338 = new SequenceGUID(1398648110); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1339 = new SequenceGUID(-71942319); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1340 = new SequenceGUID(119772594); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1341 = new SequenceGUID(1024611913); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1342 = new SequenceGUID(17967478); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1343 = new SequenceGUID(907795961); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1344 = new SequenceGUID(1273232328); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1345 = new SequenceGUID(-1917630677); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1346 = new SequenceGUID(-384705696); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1347 = new SequenceGUID(51545507); public static readonly SequenceGUID SEQ_Woodcutter_OnAggro = new SequenceGUID(-894078821); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1348 = new SequenceGUID(-1409605064); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1349 = new SequenceGUID(1039370942); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1350 = new SequenceGUID(1899137220); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1351 = new SequenceGUID(-829980291); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1352 = new SequenceGUID(155384658); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1353 = new SequenceGUID(463378378); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1354 = new SequenceGUID(1695116731); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1355 = new SequenceGUID(926129313); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1356 = new SequenceGUID(-1831312461); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1357 = new SequenceGUID(1479580897); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1358 = new SequenceGUID(1275108956); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1359 = new SequenceGUID(1125953736); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1360 = new SequenceGUID(-951768787); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1361 = new SequenceGUID(-1106052908); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1362 = new SequenceGUID(1950198215); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1363 = new SequenceGUID(-286949736); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1364 = new SequenceGUID(872614252); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1365 = new SequenceGUID(1893789922); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1366 = new SequenceGUID(-367612990); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1367 = new SequenceGUID(-1456292652); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1368 = new SequenceGUID(2386264); public static readonly SequenceGUID SEQ_Knight_Shield_ShieldAttack01 = new SequenceGUID(-136548020); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1369 = new SequenceGUID(-600393444); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1370 = new SequenceGUID(1069663574); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1371 = new SequenceGUID(-989658378); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1372 = new SequenceGUID(1896969171); public static readonly SequenceGUID SEQ_Villager_OnAggro = new SequenceGUID(28885456); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1373 = new SequenceGUID(1986766649); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1374 = new SequenceGUID(440221807); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1375 = new SequenceGUID(1282896163); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1376 = new SequenceGUID(194123167); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1377 = new SequenceGUID(1299561762); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1378 = new SequenceGUID(555141373); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1379 = new SequenceGUID(314558537); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1380 = new SequenceGUID(771302365); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1381 = new SequenceGUID(-20861077); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_9 = new SequenceGUID(-639770424); public static readonly SequenceGUID SEQ_Unit_Shared_Step_8 = new SequenceGUID(-1900299537); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1382 = new SequenceGUID(-384971736); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1383 = new SequenceGUID(1137529392); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_10 = new SequenceGUID(1126081211); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ChargeUp = new SequenceGUID(1141324070); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1384 = new SequenceGUID(-1847882989); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier = new SequenceGUID(-1184446706); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ChargeUp_1 = new SequenceGUID(-229785953); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1385 = new SequenceGUID(-1466698569); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1386 = new SequenceGUID(-1187021516); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1387 = new SequenceGUID(2097666208); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_1 = new SequenceGUID(-1190318732); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1388 = new SequenceGUID(603340387); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1389 = new SequenceGUID(1208257203); public static readonly SequenceGUID SEQ_Shared_ConsumeConsumable_Cast = new SequenceGUID(370491289); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1390 = new SequenceGUID(-1960234366); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1391 = new SequenceGUID(-1456555387); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1392 = new SequenceGUID(-1470129783); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1393 = new SequenceGUID(-1132636532); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1394 = new SequenceGUID(688211729); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1395 = new SequenceGUID(-1653059994); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1396 = new SequenceGUID(438714815); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1397 = new SequenceGUID(6988179); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1398 = new SequenceGUID(-246359938); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1399 = new SequenceGUID(-1652821721); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1400 = new SequenceGUID(-1383653364); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1401 = new SequenceGUID(236975607); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1402 = new SequenceGUID(-1177867947); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1403 = new SequenceGUID(1646249991); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1404 = new SequenceGUID(-1160928611); public static readonly SequenceGUID SEQ_Shared_ConsumeConsumable_Cast_1 = new SequenceGUID(-247365933); public static readonly SequenceGUID SEQ_Shared_Vampire_Cast_DirectionalShield_2 = new SequenceGUID(1490945798); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1405 = new SequenceGUID(-680606084); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1406 = new SequenceGUID(1280864541); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1407 = new SequenceGUID(-114337118); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1408 = new SequenceGUID(426473013); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1409 = new SequenceGUID(1017643903); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1410 = new SequenceGUID(-1203263750); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1411 = new SequenceGUID(-1048508998); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1412 = new SequenceGUID(-1428849129); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1413 = new SequenceGUID(1114884724); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1414 = new SequenceGUID(1474945002); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1415 = new SequenceGUID(-1296125675); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1416 = new SequenceGUID(1248157718); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1417 = new SequenceGUID(358450703); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1418 = new SequenceGUID(-1439476707); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1419 = new SequenceGUID(1158202247); public static readonly SequenceGUID SEQ_Vampire_Shared_Melee_Attack_Cast_3 = new SequenceGUID(-376035842); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1420 = new SequenceGUID(411092431); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1421 = new SequenceGUID(-402389718); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1422 = new SequenceGUID(-588125350); public static readonly SequenceGUID SEQ_Shared_Melee_Cast_LEGACY_36 = new SequenceGUID(-1336620269); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1423 = new SequenceGUID(1248348751); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1424 = new SequenceGUID(-1889098619); public static readonly SequenceGUID SEQ_Vampire_Leap_Cast = new SequenceGUID(-1022128502); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1425 = new SequenceGUID(53800587); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1426 = new SequenceGUID(921144369); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1427 = new SequenceGUID(838236563); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1428 = new SequenceGUID(-812443082); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1429 = new SequenceGUID(1259153444); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1430 = new SequenceGUID(-1321591497); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1431 = new SequenceGUID(398396374); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1432 = new SequenceGUID(1691731990); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1433 = new SequenceGUID(325609997); public static readonly SequenceGUID SEQ_Shared_Projectile_Cast_LEGACY_7 = new SequenceGUID(-1148831873); public static readonly SequenceGUID SEQ_Shared_Vampire_Cast_DirectionalShield_3 = new SequenceGUID(501059422); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1434 = new SequenceGUID(-1406632792); public static readonly SequenceGUID SEQ_Footman_OnAggro = new SequenceGUID(1609234140); public static readonly SequenceGUID SEQ_Unit_Shared_Step_9 = new SequenceGUID(-408073983); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1435 = new SequenceGUID(-391980909); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1436 = new SequenceGUID(-1985518199); public static readonly SequenceGUID SEQ_Tailor_OnAggro = new SequenceGUID(-565576107); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1437 = new SequenceGUID(-753183539); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1438 = new SequenceGUID(-867053556); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1439 = new SequenceGUID(-1629492480); public static readonly SequenceGUID SEQ_BanditLeader_OnAggro = new SequenceGUID(-553900545); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1440 = new SequenceGUID(1226924236); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1441 = new SequenceGUID(-1260486388); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1442 = new SequenceGUID(-1480471040); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1443 = new SequenceGUID(106869066); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1444 = new SequenceGUID(1197824276); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1445 = new SequenceGUID(1699563445); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1446 = new SequenceGUID(1101261241); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1447 = new SequenceGUID(-1630205177); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1448 = new SequenceGUID(868307954); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1449 = new SequenceGUID(183694486); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1450 = new SequenceGUID(1482101903); public static readonly SequenceGUID SEQ_Shared_Buff_Cast_LEGACY_11 = new SequenceGUID(-1833649533); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1451 = new SequenceGUID(-1124281639); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1452 = new SequenceGUID(317119689); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1453 = new SequenceGUID(-46189293); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1454 = new SequenceGUID(-1435120747); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1455 = new SequenceGUID(1353154161); public static readonly SequenceGUID SEQ_Shared_AIAnimationBlendingDriver_AimDistance_Cast = new SequenceGUID(-638565755); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1456 = new SequenceGUID(-1767174438); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1457 = new SequenceGUID(-503028322); public static readonly SequenceGUID SEQ_Shared_Sound_VO = new SequenceGUID(1321283885); public static readonly SequenceGUID SEQ_HideWeapon = new SequenceGUID(1136240177); public static readonly SequenceGUID SEQ_Shared_Material_Hit_25 = new SequenceGUID(1161360123); public static readonly SequenceGUID SEQ_Shared_Material_Hit_26 = new SequenceGUID(1660279453); public static readonly SequenceGUID SEQ_Shared_Sound_VO_1 = new SequenceGUID(-831924677); public static readonly SequenceGUID SEQ_Shared_Sound_VO_2 = new SequenceGUID(-918801451); public static readonly SequenceGUID SEQ_Shared_Sound_VO_3 = new SequenceGUID(873413073); public static readonly SequenceGUID SEQ_Shared_Sound_VO_4 = new SequenceGUID(-1491529264); public static readonly SequenceGUID SEQ_Shared_Sound_VO_5 = new SequenceGUID(-2034210403); public static readonly SequenceGUID SEQ_Shared_Sound_VO_6 = new SequenceGUID(676497361); public static readonly SequenceGUID SEQ_Shared_Sound_VO_7 = new SequenceGUID(-1411328133); public static readonly SequenceGUID SEQ_Shared_Sound_VO_8 = new SequenceGUID(-653241799); public static readonly SequenceGUID SEQ_Shared_Material_Hit_27 = new SequenceGUID(-766247329); public static readonly SequenceGUID SEQ_Blink_Standard_White = new SequenceGUID(1382804845); public static readonly SequenceGUID SEQ_Vampire_Servant_Converted = new SequenceGUID(662994294); public static readonly SequenceGUID SEQ_Vampire_Build_CastleHeart_Upgraded = new SequenceGUID(-991363733); public static readonly SequenceGUID SEQ_Vampire_Build_CastleHeart_Placed = new SequenceGUID(-1643821306); public static readonly SequenceGUID SEQ_Vampire_Warning_Siege_Golem_Built = new SequenceGUID(488346441); public static readonly SequenceGUID SEQ_Vampire_Warning_Cant_Harm_Structure = new SequenceGUID(1786456467); public static readonly SequenceGUID SEQ_Vampire_Warning_Attacking_Protected_Structure_Not_Time = new SequenceGUID(-1714040943); public static readonly SequenceGUID SEQ_Vampire_Warning_Attacking_Protected_Structure_Time = new SequenceGUID(1243678650); public static readonly SequenceGUID SEQ_Vampire_Warning_Castle_Under_Attack = new SequenceGUID(-2074372048); public static readonly SequenceGUID SEQ_Vampire_Warning_Castle_Breached = new SequenceGUID(1507796028); public static readonly SequenceGUID SEQ_Vampire_Warning_Castle_Decay_Start = new SequenceGUID(1776218058); public static readonly SequenceGUID SEQ_Vampire_Notification_Task_Completed = new SequenceGUID(-563400976); public static readonly SequenceGUID SEQ_Vampire_Notification_MapZone_Discovered = new SequenceGUID(1041690628); public static readonly SequenceGUID SEQ_Vampire_Craft_Not_Enough_Resources = new SequenceGUID(2106734582); public static readonly SequenceGUID SEQ_Vampire_Build_Cannot_Place = new SequenceGUID(-2085147708); public static readonly SequenceGUID SEQ_Vampire_Build_Not_Enough_Resources = new SequenceGUID(1950153899); public static readonly SequenceGUID SEQ_Vampire_Servant_Inserted = new SequenceGUID(-903209293); public static readonly SequenceGUID SEQ_Interact_Sit = new SequenceGUID(961944209); public static readonly SequenceGUID SEQ_Skeleton_OnAggro = new SequenceGUID(1084112246); public static readonly SequenceGUID SEQ_Shared_Hit_947 = new SequenceGUID(-1735819189); public static readonly SequenceGUID SEQ_Shared_Trigger_406 = new SequenceGUID(-1537292805); public static readonly SequenceGUID SEQ_Shared_Area_Impact_434 = new SequenceGUID(1015920300); public static readonly SequenceGUID SEQ_Shared_Hit_948 = new SequenceGUID(1947063007); public static readonly SequenceGUID SEQ_Shared_MultiMaterial = new SequenceGUID(1353692103); public static readonly SequenceGUID SEQ_Shared_Vibration = new SequenceGUID(348468085); public static readonly SequenceGUID SEQ_Shared_Trigger_407 = new SequenceGUID(957702742); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small = new SequenceGUID(-1433242093); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate = new SequenceGUID(-2065572034); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_2 = new SequenceGUID(836970014); public static readonly SequenceGUID SEQ_Shared_Trigger_408 = new SequenceGUID(-1997957540); public static readonly SequenceGUID SEQ_Shared_Hit_949 = new SequenceGUID(684551259); public static readonly SequenceGUID SEQ_Shared_Projectile_355 = new SequenceGUID(1701354285); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_6 = new SequenceGUID(1891279424); public static readonly SequenceGUID SEQ_Shared_Vibration_1 = new SequenceGUID(717978134); public static readonly SequenceGUID SEQ_Contest_Rematerialize_1 = new SequenceGUID(-262774549); public static readonly SequenceGUID SEQ_Contest_Immaterial_1 = new SequenceGUID(-192572431); public static readonly SequenceGUID SEQ_Shared_Hit_950 = new SequenceGUID(-1269040469); public static readonly SequenceGUID SEQ_Shared_Sound_VO_9 = new SequenceGUID(1653523555); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_1 = new SequenceGUID(49706451); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO = new SequenceGUID(425308879); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_2 = new SequenceGUID(1156510725); public static readonly SequenceGUID SEQ_Shared_Sound_VO_10 = new SequenceGUID(1088819379); public static readonly SequenceGUID SEQ_Interact_Sit_1 = new SequenceGUID(1892796081); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_227 = new SequenceGUID(-1071791463); public static readonly SequenceGUID SEQ_Shared_Area_Effect_115 = new SequenceGUID(2092821321); public static readonly SequenceGUID SEQ_Shared_Sound_VO_11 = new SequenceGUID(338167926); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_7 = new SequenceGUID(612604982); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1458 = new SequenceGUID(931510516); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_3 = new SequenceGUID(-465639239); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_1 = new SequenceGUID(429922614); public static readonly SequenceGUID SEQ_Shared_Sound_VO_12 = new SequenceGUID(-1284382444); public static readonly SequenceGUID SEQ_Shared_Area_Impact_435 = new SequenceGUID(-1366238669); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_228 = new SequenceGUID(-1200864706); public static readonly SequenceGUID SEQ_Blink_Color = new SequenceGUID(-1465950529); public static readonly SequenceGUID SEQ_Shared_Dissolve_3 = new SequenceGUID(-1602175123); public static readonly SequenceGUID SEQ_Shared_Projectile_356 = new SequenceGUID(1150542506); public static readonly SequenceGUID SEQ_Shared_Buff_MaterialTransition = new SequenceGUID(-626577322); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_3 = new SequenceGUID(537600526); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_4 = new SequenceGUID(-1117737122); public static readonly SequenceGUID SEQ_Shared_Death_1 = new SequenceGUID(-1857742190); public static readonly SequenceGUID SEQ_Shared_Hit_951 = new SequenceGUID(-858481522); public static readonly SequenceGUID SEQ_Throne_Sit_Object_Buff = new SequenceGUID(-1422474416); public static readonly SequenceGUID SEQ_Vampire_HighLord_Flying = new SequenceGUID(-323678970); public static readonly SequenceGUID SEQ_Shared_Area_Effect_116 = new SequenceGUID(868048546); public static readonly SequenceGUID SEQ_Shared_Area_Impact_436 = new SequenceGUID(-1760592852); public static readonly SequenceGUID SEQ_Shared_Trigger_409 = new SequenceGUID(471493579); public static readonly SequenceGUID SEQ_Shared_Sound_VO_13 = new SequenceGUID(1842378793); public static readonly SequenceGUID SEQ_Shared_Hit_952 = new SequenceGUID(-3441039); public static readonly SequenceGUID SEQ_Shared_Trigger_410 = new SequenceGUID(1981796928); public static readonly SequenceGUID SEQ_Shared_Hit_953 = new SequenceGUID(-1543556843); public static readonly SequenceGUID SEQ_Shared_Trigger_411 = new SequenceGUID(-382181380); public static readonly SequenceGUID SEQ_Shared_Area_Impact_437 = new SequenceGUID(-1430109434); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_1 = new SequenceGUID(511772433); public static readonly SequenceGUID SEQ_Shared_Area_Impact_438 = new SequenceGUID(-2090364509); public static readonly SequenceGUID SEQ_Shared_Death_2 = new SequenceGUID(1412884723); public static readonly SequenceGUID SEQ_Shared_Leap_End_12 = new SequenceGUID(-2145240904); public static readonly SequenceGUID SEQ_Shared_Area_Effect_117 = new SequenceGUID(1622290739); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_2 = new SequenceGUID(1076186524); public static readonly SequenceGUID SEQ_Shared_Trigger_412 = new SequenceGUID(746039043); public static readonly SequenceGUID SEQ_Shared_Area_Impact_439 = new SequenceGUID(1039227233); public static readonly SequenceGUID SEQ_Shared_Death_3 = new SequenceGUID(214711628); public static readonly SequenceGUID SEQ_Shared_Trigger_413 = new SequenceGUID(-261634281); public static readonly SequenceGUID SEQ_Shared_Area_Impact_440 = new SequenceGUID(-396243706); public static readonly SequenceGUID SEQ_Shared_Area_Impact_441 = new SequenceGUID(-1450214356); public static readonly SequenceGUID SEQ_Shared_AdvancedRepeating_Cast_Loop = new SequenceGUID(-443009193); public static readonly SequenceGUID SEQ_Shared_Trigger_414 = new SequenceGUID(1228845408); public static readonly SequenceGUID SEQ_Shared_Trigger_415 = new SequenceGUID(461846903); public static readonly SequenceGUID SEQ_Shared_Death_4 = new SequenceGUID(-100885078); public static readonly SequenceGUID SEQ_Shared_Trigger_416 = new SequenceGUID(-959907674); public static readonly SequenceGUID SEQ_RepairWallBuff = new SequenceGUID(331386037); public static readonly SequenceGUID SEQ_Shared_Trigger_417 = new SequenceGUID(638738086); public static readonly SequenceGUID SEQ_Shared_Trigger_418 = new SequenceGUID(-1177491659); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_4 = new SequenceGUID(-1971379736); public static readonly SequenceGUID SEQ_Shared_Hit_954 = new SequenceGUID(-129002744); public static readonly SequenceGUID SEQ_Shared_Death_5 = new SequenceGUID(-788237118); public static readonly SequenceGUID SEQ_Shared_Trigger_419 = new SequenceGUID(1869374025); public static readonly SequenceGUID SEQ_Shared_Trigger_420 = new SequenceGUID(1472237992); public static readonly SequenceGUID SEQ_Shared_Death_6 = new SequenceGUID(-772830625); public static readonly SequenceGUID SEQ_Shared_Trigger_421 = new SequenceGUID(317192720); public static readonly SequenceGUID SEQ_Shared_Area_Impact_442 = new SequenceGUID(605728305); public static readonly SequenceGUID SEQ_Shared_Area_Impact_443 = new SequenceGUID(82834953); public static readonly SequenceGUID SEQ_Interact_Sit_2 = new SequenceGUID(2135212129); public static readonly SequenceGUID SEQ_Shared_Death_7 = new SequenceGUID(379647272); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_5 = new SequenceGUID(-1577829282); public static readonly SequenceGUID SEQ_Shared_Trigger_422 = new SequenceGUID(-1195185866); public static readonly SequenceGUID SEQ_Shared_Buff_MaterialTransition_1 = new SequenceGUID(-2029248702); public static readonly SequenceGUID SEQ_Scarecrow_TPose = new SequenceGUID(-477537); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_229 = new SequenceGUID(1021623710); public static readonly SequenceGUID SEQ_Shared_Death_8 = new SequenceGUID(-1665218157); public static readonly SequenceGUID SEQ_Shared_Area_Impact_444 = new SequenceGUID(2027568242); public static readonly SequenceGUID SEQ_Shared_Sound_VO_14 = new SequenceGUID(-1313838765); public static readonly SequenceGUID SEQ_Hound_Alert = new SequenceGUID(-65950563); public static readonly SequenceGUID SEQ_Shared_Trigger_423 = new SequenceGUID(205099511); public static readonly SequenceGUID SEQ_Shared_Area_Effect_118 = new SequenceGUID(-410739213); public static readonly SequenceGUID SEQ_Shared_Trigger_424 = new SequenceGUID(-1178988266); public static readonly SequenceGUID SEQ_Shared_Death_9 = new SequenceGUID(-1663121005); public static readonly SequenceGUID SEQ_Shared_Death_10 = new SequenceGUID(1260305130); public static readonly SequenceGUID SEQ_Shared_Area_Impact_445 = new SequenceGUID(217465488); public static readonly SequenceGUID SEQ_Shared_Trigger_425 = new SequenceGUID(1959667963); public static readonly SequenceGUID SEQ_Shared_Death_11 = new SequenceGUID(-1870367550); public static readonly SequenceGUID SEQ_Shared_Trigger_426 = new SequenceGUID(1223435575); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_6 = new SequenceGUID(295894465); public static readonly SequenceGUID SEQ_Shared_Vibration_2 = new SequenceGUID(941514066); public static readonly SequenceGUID SEQ_Shared_Trigger_427 = new SequenceGUID(2088170976); public static readonly SequenceGUID SEQ_Shared_Projectile_357 = new SequenceGUID(-191370955); public static readonly SequenceGUID SEQ_Footman_Alert = new SequenceGUID(-380493643); public static readonly SequenceGUID SEQ_Shared_Projectile_OUTDATED_2 = new SequenceGUID(759986034); public static readonly SequenceGUID SEQ_Shared_Hit_955 = new SequenceGUID(786121246); public static readonly SequenceGUID SEQ_Shared_Vibration_3 = new SequenceGUID(-1527043789); public static readonly SequenceGUID SEQ_Shared_Hit_956 = new SequenceGUID(-908874464); public static readonly SequenceGUID SEQ_Interact_Sit_3 = new SequenceGUID(-1228903295); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_4 = new SequenceGUID(1998288953); public static readonly SequenceGUID SEQ_Shared_Death_12 = new SequenceGUID(1368775197); public static readonly SequenceGUID SEQ_Shared_Area_Impact_446 = new SequenceGUID(872144907); public static readonly SequenceGUID SEQ_Shared_Area_Impact_447 = new SequenceGUID(-530493717); public static readonly SequenceGUID SEQ_Shared_Hit_957 = new SequenceGUID(107884625); public static readonly SequenceGUID SEQ_Wolf_Alert = new SequenceGUID(-1157246242); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1459 = new SequenceGUID(-114956921); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_1 = new SequenceGUID(989727143); public static readonly SequenceGUID SEQ_Shared_Death_13 = new SequenceGUID(273724417); public static readonly SequenceGUID SEQ_Shared_Hit_958 = new SequenceGUID(-1095308974); public static readonly SequenceGUID SEQ_Shared_Death_14 = new SequenceGUID(-2000487642); public static readonly SequenceGUID SEQ_Shared_Hit_959 = new SequenceGUID(-1479405181); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_2 = new SequenceGUID(-1315396380); public static readonly SequenceGUID SEQ_Shared_Trigger_428 = new SequenceGUID(2082826126); public static readonly SequenceGUID SEQ_Shared_Hit_960 = new SequenceGUID(-1510471165); public static readonly SequenceGUID SEQ_Shared_Trigger_429 = new SequenceGUID(-1239779404); public static readonly SequenceGUID SEQ_Shared_Death_15 = new SequenceGUID(-1574667732); public static readonly SequenceGUID SEQ_Shared_Trigger_430 = new SequenceGUID(-853638878); public static readonly SequenceGUID SEQ_Shared_Trigger_431 = new SequenceGUID(-1598840143); public static readonly SequenceGUID SEQ_Shared_Trigger_432 = new SequenceGUID(-477060600); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_2 = new SequenceGUID(418094677); public static readonly SequenceGUID SEQ_Shared_Death_16 = new SequenceGUID(1325315792); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_3 = new SequenceGUID(2113920942); public static readonly SequenceGUID SEQ_Shared_Buff_MaterialTransition_2 = new SequenceGUID(-321318846); public static readonly SequenceGUID SEQ_Shared_Trigger_433 = new SequenceGUID(1505567850); public static readonly SequenceGUID SEQ_Shared_Hit_961 = new SequenceGUID(-1970855090); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_5 = new SequenceGUID(-1436875673); public static readonly SequenceGUID SEQ_Shared_Hit_962 = new SequenceGUID(508119785); public static readonly SequenceGUID SEQ_Shared_Trigger_434 = new SequenceGUID(-874959001); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_3 = new SequenceGUID(427322145); public static readonly SequenceGUID SEQ_Shared_Trigger_435 = new SequenceGUID(602039313); public static readonly SequenceGUID SEQ_Shared_Hit_963 = new SequenceGUID(147080793); public static readonly SequenceGUID SEQ_Shared_Death_17 = new SequenceGUID(281352850); public static readonly SequenceGUID SEQ_Shared_Trigger_436 = new SequenceGUID(518776303); public static readonly SequenceGUID SEQ_Shared_Trigger_437 = new SequenceGUID(-1600072348); public static readonly SequenceGUID SEQ_Shared_Sound_VO_15 = new SequenceGUID(-2040790411); public static readonly SequenceGUID SEQ_Shared_Death_18 = new SequenceGUID(-189912432); public static readonly SequenceGUID SEQ_Shared_Projectile_358 = new SequenceGUID(-275302628); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_230 = new SequenceGUID(2067507450); public static readonly SequenceGUID SEQ_Shared_Death_19 = new SequenceGUID(1833458263); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_5 = new SequenceGUID(94979333); public static readonly SequenceGUID SEQ_Shared_Trigger_438 = new SequenceGUID(-678835045); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_4 = new SequenceGUID(431935880); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_231 = new SequenceGUID(454015641); public static readonly SequenceGUID SEQ_Shared_Trigger_439 = new SequenceGUID(-1892710129); public static readonly SequenceGUID SEQ_Shared_Death_20 = new SequenceGUID(-870222875); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_7 = new SequenceGUID(-2012653522); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_5 = new SequenceGUID(431264791); public static readonly SequenceGUID SEQ_Shared_Death_21 = new SequenceGUID(-2066603141); public static readonly SequenceGUID SEQ_Shared_Buff_MaterialTransition_3 = new SequenceGUID(-1075495846); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_6 = new SequenceGUID(422288981); public static readonly SequenceGUID SEQ_Shared_Death_22 = new SequenceGUID(450349400); public static readonly SequenceGUID SEQ_Shared_AdvancedDeath_3 = new SequenceGUID(-1654901741); public static readonly SequenceGUID SEQ_Shared_Vibration_4 = new SequenceGUID(1973157480); public static readonly SequenceGUID SEQ_Shared_Trigger_440 = new SequenceGUID(-2006365816); public static readonly SequenceGUID SEQ_Shared_Leap_End_13 = new SequenceGUID(231745372); public static readonly SequenceGUID SEQ_Blink_Standard_White_1 = new SequenceGUID(1382804845); public static readonly SequenceGUID SEQ_Shared_Vibration_5 = new SequenceGUID(-248299470); public static readonly SequenceGUID SEQ_Shared_Area_Effect_119 = new SequenceGUID(-1756071718); public static readonly SequenceGUID SEQ_Shared_Hit_964 = new SequenceGUID(-339117337); public static readonly SequenceGUID SEQ_Shared_Projectile_OUTDATED_3 = new SequenceGUID(530346603); public static readonly SequenceGUID SEQ_Shared_Area_Impact_448 = new SequenceGUID(-1051608019); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_7 = new SequenceGUID(418933537); public static readonly SequenceGUID SEQ_Interact_Sit_4 = new SequenceGUID(1091446095); public static readonly SequenceGUID SEQ_Vampire_Disconnected = new SequenceGUID(2102878987); public static readonly SequenceGUID SEQ_Shared_Area_Impact_449 = new SequenceGUID(2068152538); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_6 = new SequenceGUID(594738094); public static readonly SequenceGUID SEQ_Shared_Death_23 = new SequenceGUID(-754779354); public static readonly SequenceGUID SEQ_Shared_Hit_965 = new SequenceGUID(1393131595); public static readonly SequenceGUID SEQ_Shared_Hit_966 = new SequenceGUID(2066597651); public static readonly SequenceGUID SEQ_Shared_Trigger_441 = new SequenceGUID(1047138420); public static readonly SequenceGUID SEQ_Shared_Death_24 = new SequenceGUID(2047553710); public static readonly SequenceGUID SEQ_Emery_Buff_ChargeUp_1 = new SequenceGUID(1960911378); public static readonly SequenceGUID SEQ_Shared_Area_Impact_450 = new SequenceGUID(1342968980); public static readonly SequenceGUID SEQ_Shared_Death_25 = new SequenceGUID(-1671929043); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_3 = new SequenceGUID(-1506100552); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_6 = new SequenceGUID(-1448279751); public static readonly SequenceGUID SEQ_Vampire_Mount_Hide = new SequenceGUID(-207558565); public static readonly SequenceGUID SEQ_Vampire_Equipment_Broken = new SequenceGUID(-1885058107); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_8 = new SequenceGUID(-754789010); public static readonly SequenceGUID SEQ_Shared_Trigger_442 = new SequenceGUID(405175564); public static readonly SequenceGUID SEQ_Shared_Vibration_6 = new SequenceGUID(1909857561); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_7 = new SequenceGUID(-1042258322); public static readonly SequenceGUID SEQ_Shared_Death_26 = new SequenceGUID(-831421265); public static readonly SequenceGUID SEQ_Shared_Death_27 = new SequenceGUID(1209701479); public static readonly SequenceGUID SEQ_Shared_Trigger_443 = new SequenceGUID(-1978433017); public static readonly SequenceGUID SEQ_Shared_Sound_VO_16 = new SequenceGUID(-667779231); public static readonly SequenceGUID SEQ_Shared_Sound_VO_17 = new SequenceGUID(900634909); public static readonly SequenceGUID SEQ_Shared_Projectile_359 = new SequenceGUID(-915679634); public static readonly SequenceGUID SEQ_Shared_Sound_VO_18 = new SequenceGUID(-2019551305); public static readonly SequenceGUID SEQ_Shared_Death_28 = new SequenceGUID(-324878170); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_8 = new SequenceGUID(429419297); public static readonly SequenceGUID SEQ_Shared_Death_29 = new SequenceGUID(2028367805); public static readonly SequenceGUID SEQ_Shared_Hit_967 = new SequenceGUID(-355211509); public static readonly SequenceGUID SEQ_Shared_Death_30 = new SequenceGUID(-458984254); public static readonly SequenceGUID SEQ_Shared_Sound_VO_19 = new SequenceGUID(-1631686082); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_8 = new SequenceGUID(-63001747); public static readonly SequenceGUID SEQ_Shared_Trigger_444 = new SequenceGUID(1801945140); public static readonly SequenceGUID SEQ_Shared_Hit_968 = new SequenceGUID(-2039992001); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_9 = new SequenceGUID(429670956); public static readonly SequenceGUID SEQ_Shared_Trigger_445 = new SequenceGUID(-1213580986); public static readonly SequenceGUID SEQ_Shared_Hit_969 = new SequenceGUID(-1519374699); public static readonly SequenceGUID SEQ_Shared_Trigger_446 = new SequenceGUID(-213098954); public static readonly SequenceGUID SEQ_Shared_Trigger_447 = new SequenceGUID(1926617572); public static readonly SequenceGUID SEQ_Shared_Area_Effect_120 = new SequenceGUID(-1937264076); public static readonly SequenceGUID SEQ_Shared_Area_Impact_451 = new SequenceGUID(578766332); public static readonly SequenceGUID SEQ_Shared_Area_Effect_121 = new SequenceGUID(-1323847395); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_8 = new SequenceGUID(74116470); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_10 = new SequenceGUID(424973335); public static readonly SequenceGUID SEQ_Shared_Death_31 = new SequenceGUID(285504706); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_232 = new SequenceGUID(1995133746); public static readonly SequenceGUID SEQ_Shared_Vibration_7 = new SequenceGUID(2059916414); public static readonly SequenceGUID SEQ_Shared_Sound_VO_20 = new SequenceGUID(19291606); public static readonly SequenceGUID SEQ_Shared_Buff_MaterialTransition_4 = new SequenceGUID(267870391); public static readonly SequenceGUID SEQ_Shared_Area_Impact_452 = new SequenceGUID(1949505756); public static readonly SequenceGUID SEQ_Shared_Hit_970 = new SequenceGUID(-990894929); public static readonly SequenceGUID SEQ_Shared_Hit_971 = new SequenceGUID(-2089468189); public static readonly SequenceGUID SEQ_Weapon_M1_Ready = new SequenceGUID(-80999816); public static readonly SequenceGUID SEQ_Shared_Trigger_448 = new SequenceGUID(-2038166033); public static readonly SequenceGUID SEQ_Interact_Sit_5 = new SequenceGUID(167535249); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_9 = new SequenceGUID(1871444838); public static readonly SequenceGUID SEQ_Shared_Sound_VO_21 = new SequenceGUID(2092211628); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_4 = new SequenceGUID(675489516); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_11 = new SequenceGUID(424805563); public static readonly SequenceGUID SEQ_Woodcutter_OnAggro_1 = new SequenceGUID(-894078821); public static readonly SequenceGUID SEQ_Shared_Area_Impact_453 = new SequenceGUID(-1408427719); public static readonly SequenceGUID SEQ_Shared_Area_Impact_454 = new SequenceGUID(1241622261); public static readonly SequenceGUID SEQ_Shared_Hit_972 = new SequenceGUID(-1704148651); public static readonly SequenceGUID SEQ_IronMine_ChasmEruption_1 = new SequenceGUID(1621554884); public static readonly SequenceGUID SEQ_Shared_Area_Impact_455 = new SequenceGUID(1810344174); public static readonly SequenceGUID SEQ_Shared_Sound_VO_22 = new SequenceGUID(-1284855135); public static readonly SequenceGUID SEQ_Workstation_TombCoffin_Station2 = new SequenceGUID(-1382598619); public static readonly SequenceGUID SEQ_Shared_Area_Impact_456 = new SequenceGUID(179329144); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_10 = new SequenceGUID(-1902527408); public static readonly SequenceGUID SEQ_TileModel_Hover_Blocked_1 = new SequenceGUID(-668659474); public static readonly SequenceGUID SEQ_TileModel_Hover_CanDismantle_1 = new SequenceGUID(-1564614306); public static readonly SequenceGUID SEQ_TileModel_Hover_CanEdit_1 = new SequenceGUID(-146356561); public static readonly SequenceGUID SEQ_TileModel_Hover_IsEdited_1 = new SequenceGUID(996303984); public static readonly SequenceGUID SEQ_Shared_Projectile_360 = new SequenceGUID(1243082256); public static readonly SequenceGUID SEQ_Shared_AdvancedDeath_4 = new SequenceGUID(-577353994); public static readonly SequenceGUID SEQ_Shared_Hit_973 = new SequenceGUID(1242210620); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_5 = new SequenceGUID(-1362023431); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_9 = new SequenceGUID(199017918); public static readonly SequenceGUID SEQ_Interact_Sit_6 = new SequenceGUID(1060223105); public static readonly SequenceGUID SEQ_Shared_Trigger_449 = new SequenceGUID(194638326); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_233 = new SequenceGUID(1346640908); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_234 = new SequenceGUID(-957655174); public static readonly SequenceGUID SEQ_Shared_Trigger_450 = new SequenceGUID(-371140685); public static readonly SequenceGUID SEQ_Shared_Hit_974 = new SequenceGUID(1593786648); public static readonly SequenceGUID SEQ_Shared_Cover = new SequenceGUID(-641031861); public static readonly SequenceGUID SEQ_Shared_Death_32 = new SequenceGUID(1293296793); public static readonly SequenceGUID SEQ_Shared_Death_33 = new SequenceGUID(1640708166); public static readonly SequenceGUID SEQ_Shared_Sound_VO_23 = new SequenceGUID(-378626662); public static readonly SequenceGUID SEQ_Shared_Sound_VO_24 = new SequenceGUID(-2127024575); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_4 = new SequenceGUID(1099064166); public static readonly SequenceGUID SEQ_Shared_Death_34 = new SequenceGUID(-1033700570); public static readonly SequenceGUID SEQ_Shared_Trigger_451 = new SequenceGUID(-1170681482); public static readonly SequenceGUID SEQ_Shared_Hit_975 = new SequenceGUID(634690702); public static readonly SequenceGUID SEQ_Shared_Projectile_361 = new SequenceGUID(-850821255); public static readonly SequenceGUID SEQ_Shared_Trigger_452 = new SequenceGUID(1143159498); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_235 = new SequenceGUID(24875569); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_6 = new SequenceGUID(-1195448522); public static readonly SequenceGUID SEQ_Shared_Death_35 = new SequenceGUID(-2129959614); public static readonly SequenceGUID SEQ_Shared_Area_Impact_457 = new SequenceGUID(1259915003); public static readonly SequenceGUID SEQ_Shared_Hit_976 = new SequenceGUID(-1340135216); public static readonly SequenceGUID SEQ_Shared_Hit_977 = new SequenceGUID(1108260751); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_11 = new SequenceGUID(298586382); public static readonly SequenceGUID SEQ_Shared_SummonedSpawn = new SequenceGUID(219036979); public static readonly SequenceGUID SEQ_Shared_Vibration_8 = new SequenceGUID(220054983); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_7 = new SequenceGUID(387520825); public static readonly SequenceGUID SEQ_Shared_Hit_978 = new SequenceGUID(1275122300); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_12 = new SequenceGUID(431348677); public static readonly SequenceGUID SEQ_Shared_Death_36 = new SequenceGUID(1616504090); public static readonly SequenceGUID SEQ_Shared_Projectile_OUTDATED_4 = new SequenceGUID(143199501); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_236 = new SequenceGUID(-334533350); public static readonly SequenceGUID SEQ_Shared_Area_Impact_458 = new SequenceGUID(1906466014); public static readonly SequenceGUID SEQ_Shared_Area_Impact_459 = new SequenceGUID(1810805783); public static readonly SequenceGUID SEQ_Shared_Flee_OUTDATED = new SequenceGUID(1071019349); public static readonly SequenceGUID SEQ_Shared_Area_Impact_460 = new SequenceGUID(311393324); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_13 = new SequenceGUID(424470019); public static readonly SequenceGUID SEQ_Shared_Trigger_453 = new SequenceGUID(-1579074245); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_237 = new SequenceGUID(-1874215417); public static readonly SequenceGUID SEQ_Shared_Vibration_9 = new SequenceGUID(-327683158); public static readonly SequenceGUID SEQ_Shared_AdvancedRepeating_Cast_Loop_1 = new SequenceGUID(-1023252075); public static readonly SequenceGUID SEQ_Shared_Hit_979 = new SequenceGUID(-442831057); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_7 = new SequenceGUID(-1909761572); public static readonly SequenceGUID SEQ_Shared_Death_37 = new SequenceGUID(-1086989795); public static readonly SequenceGUID SEQ_Shared_Vibration_10 = new SequenceGUID(-445225413); public static readonly SequenceGUID SEQ_Shared_Area_Ground_18 = new SequenceGUID(-40367522); public static readonly SequenceGUID SEQ_Shared_Trigger_454 = new SequenceGUID(-1550953392); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_5 = new SequenceGUID(-1155034740); public static readonly SequenceGUID SEQ_Shared_Projectile_362 = new SequenceGUID(-1210586827); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_238 = new SequenceGUID(1448376796); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_9 = new SequenceGUID(-1287449734); public static readonly SequenceGUID SEQ_Shared_Death_38 = new SequenceGUID(1289363739); public static readonly SequenceGUID SEQ_Shared_Area_Effect_122 = new SequenceGUID(1636652435); public static readonly SequenceGUID SEQ_Shared_Hit_980 = new SequenceGUID(1800707214); public static readonly SequenceGUID SEQ_Shared_Trigger_455 = new SequenceGUID(-24419727); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_239 = new SequenceGUID(284440264); public static readonly SequenceGUID SEQ_Hound_OnAggro = new SequenceGUID(1717103352); public static readonly SequenceGUID SEQ_Shared_Sound_VO_25 = new SequenceGUID(1220934093); public static readonly SequenceGUID SEQ_Shared_Area_Effect_123 = new SequenceGUID(-1695704545); public static readonly SequenceGUID SEQ_Shared_Vibration_11 = new SequenceGUID(-1733170249); public static readonly SequenceGUID SEQ_Shared_AnimatorParameterModifier_10 = new SequenceGUID(1283794350); public static readonly SequenceGUID SEQ_Shared_Vibration_12 = new SequenceGUID(-761052805); public static readonly SequenceGUID SEQ_Shared_Vibration_13 = new SequenceGUID(-1857571305); public static readonly SequenceGUID SEQ_Castle_Vulnerable = new SequenceGUID(-1342515630); public static readonly SequenceGUID SEQ_Shared_Vibration_14 = new SequenceGUID(1912056967); public static readonly SequenceGUID SEQ_VbloodGhost_NotTracked = new SequenceGUID(1768224443); public static readonly SequenceGUID SEQ_HideCharacter_1 = new SequenceGUID(-1374574919); public static readonly SequenceGUID SEQ_Shared_Leap_End_14 = new SequenceGUID(804474667); public static readonly SequenceGUID SEQ_Shared_Area_Impact_461 = new SequenceGUID(1808389215); public static readonly SequenceGUID SEQ_Shared_Area_Impact_462 = new SequenceGUID(2059437210); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_8 = new SequenceGUID(329978553); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_14 = new SequenceGUID(426147740); public static readonly SequenceGUID SEQ_Shared_Death_39 = new SequenceGUID(-883999448); public static readonly SequenceGUID SEQ_Shared_Area_Impact_463 = new SequenceGUID(-1161781060); public static readonly SequenceGUID SEQ_Shared_Death_40 = new SequenceGUID(1355052226); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_15 = new SequenceGUID(420611259); public static readonly SequenceGUID SEQ_Shared_Death_41 = new SequenceGUID(-256510034); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_16 = new SequenceGUID(423127841); public static readonly SequenceGUID SEQ_Shared_Death_42 = new SequenceGUID(97620561); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_6 = new SequenceGUID(-648034606); public static readonly SequenceGUID SEQ_Shared_Area_Impact_464 = new SequenceGUID(-1550059110); public static readonly SequenceGUID SEQ_Shared_Death_43 = new SequenceGUID(828667074); public static readonly SequenceGUID SEQ_Shared_Repeating_Cast_Loop_12 = new SequenceGUID(-729830079); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_7 = new SequenceGUID(-991112507); public static readonly SequenceGUID SEQ_Mount_Stable = new SequenceGUID(-1839212770); public static readonly SequenceGUID SEQ_Mount_Stable_1 = new SequenceGUID(1726486954); public static readonly SequenceGUID SEQ_Shared_Death_44 = new SequenceGUID(306928691); public static readonly SequenceGUID SEQ_Shared_Trigger_456 = new SequenceGUID(479203072); public static readonly SequenceGUID SEQ_Shared_Area_Impact_465 = new SequenceGUID(1246046329); public static readonly SequenceGUID SEQ_Shared_Area_Impact_466 = new SequenceGUID(-1678935243); public static readonly SequenceGUID SEQ_Shared_Hit_981 = new SequenceGUID(713540475); public static readonly SequenceGUID SEQ_Shared_Death_45 = new SequenceGUID(-646258709); public static readonly SequenceGUID SEQ_Shared_Hit_982 = new SequenceGUID(-410903873); public static readonly SequenceGUID SEQ_Shared_Trigger_457 = new SequenceGUID(1430087990); public static readonly SequenceGUID SEQ_Shared_Area_Impact_467 = new SequenceGUID(1688215771); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_240 = new SequenceGUID(649766560); public static readonly SequenceGUID SEQ_Shared_Area_Impact_468 = new SequenceGUID(1518063823); public static readonly SequenceGUID SEQ_Stash_Shared_Close_11 = new SequenceGUID(459384622); public static readonly SequenceGUID SEQ_Stash_Shared_Open_11 = new SequenceGUID(15205949); public static readonly SequenceGUID SEQ_Shared_Vibration_15 = new SequenceGUID(578973564); public static readonly SequenceGUID SEQ_Stash_Shared_Close_12 = new SequenceGUID(-1748653598); public static readonly SequenceGUID SEQ_Stash_Shared_Open_12 = new SequenceGUID(-1236683260); public static readonly SequenceGUID SEQ_Shared_Trigger_458 = new SequenceGUID(-1821308623); public static readonly SequenceGUID SEQ_Shared_Vibration_16 = new SequenceGUID(1732526187); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Immaterial_Buff = new SequenceGUID(-1915634194); public static readonly SequenceGUID SEQ_Shared_Trigger_459 = new SequenceGUID(-1842232727); public static readonly SequenceGUID SEQ_Shared_Hit_983 = new SequenceGUID(-1436952323); public static readonly SequenceGUID SEQ_Shared_Area_Impact_469 = new SequenceGUID(-2002208674); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_8 = new SequenceGUID(-1822202907); public static readonly SequenceGUID SEQ_Shared_Death_46 = new SequenceGUID(-800820030); public static readonly SequenceGUID SEQ_Shared_Area_Effect_124 = new SequenceGUID(674716309); public static readonly SequenceGUID SEQ_Shared_Death_47 = new SequenceGUID(-2004293565); public static readonly SequenceGUID SEQ_Shared_Trigger_460 = new SequenceGUID(2127206796); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Immaterial_Buff_1 = new SequenceGUID(862385544); public static readonly SequenceGUID SEQ_Shared_VBlood_Wounded_VO_17 = new SequenceGUID(-88390845); public static readonly SequenceGUID SEQ_Shared_Vibration_17 = new SequenceGUID(-598967940); public static readonly SequenceGUID SEQ_Shared_Vibration_18 = new SequenceGUID(1601300330); public static readonly SequenceGUID SEQ_Shared_Area_Impact_470 = new SequenceGUID(-1839855805); public static readonly SequenceGUID SEQ_Shared_Hit_984 = new SequenceGUID(687860747); public static readonly SequenceGUID SEQ_Shared_Projectile_Miss_241 = new SequenceGUID(1197368790); public static readonly SequenceGUID SEQ_Shared_Death_48 = new SequenceGUID(-784042814); public static readonly SequenceGUID SEQ_Shared_Projectile_363 = new SequenceGUID(1217936253); public static readonly SequenceGUID SEQ_HideWeapon_1 = new SequenceGUID(1136240177); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_9 = new SequenceGUID(551326025); public static readonly SequenceGUID SEQ_Shared_Trigger_461 = new SequenceGUID(-184109913); public static readonly SequenceGUID SEQ_Shared_Vibration_19 = new SequenceGUID(100192904); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_10 = new SequenceGUID(-1503901146); public static readonly SequenceGUID SEQ_Shared_Projectile_364 = new SequenceGUID(-1753033412); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Small_11 = new SequenceGUID(426429665); public static readonly SequenceGUID SEQ_Shared_Area_Impact_471 = new SequenceGUID(1617903479); public static readonly SequenceGUID SEQ_Shared_Ragdoll_Death = new SequenceGUID(1729943577); public static readonly SequenceGUID SEQ_Shared_Death_49 = new SequenceGUID(1216931907); public static readonly SequenceGUID SEQ_Shared_Trigger_462 = new SequenceGUID(296862313); public static readonly SequenceGUID SEQ_Shared_Shake_Feedback_Moderate_9 = new SequenceGUID(395155516); public static readonly SequenceGUID SEQ_Shared_Buff = new SequenceGUID(893118035); public static readonly SequenceGUID SEQ_Shared_Buff_1 = new SequenceGUID(1845986301); public static readonly SequenceGUID SEQ_Shared_Buff_2 = new SequenceGUID(785779005); public static readonly SequenceGUID SEQ_Shared_Buff_3 = new SequenceGUID(2049283058); public static readonly SequenceGUID SEQ_Shared_Buff_4 = new SequenceGUID(-723783303); public static readonly SequenceGUID SEQ_Shared_Buff_5 = new SequenceGUID(-217996174); public static readonly SequenceGUID SEQ_Shared_Buff_6 = new SequenceGUID(-1945167407); public static readonly SequenceGUID SEQ_Shared_Buff_7 = new SequenceGUID(-7063804); public static readonly SequenceGUID SEQ_Shared_Buff_8 = new SequenceGUID(715455995); public static readonly SequenceGUID SEQ_Shared_Buff_9 = new SequenceGUID(1654490097); public static readonly SequenceGUID SEQ_Shared_Buff_10 = new SequenceGUID(-1704673035); public static readonly SequenceGUID SEQ_Shared_Buff_11 = new SequenceGUID(-54429558); public static readonly SequenceGUID SEQ_Shared_Buff_12 = new SequenceGUID(-452960034); public static readonly SequenceGUID SEQ_Shared_Buff_13 = new SequenceGUID(2092712331); public static readonly SequenceGUID SEQ_Shared_Buff_14 = new SequenceGUID(-821908184); public static readonly SequenceGUID SEQ_Shared_Buff_15 = new SequenceGUID(2071790339); public static readonly SequenceGUID SEQ_Shared_Buff_16 = new SequenceGUID(814878532); public static readonly SequenceGUID SEQ_GeneralTeleport_TravelEnd = new SequenceGUID(-1780773164); public static readonly SequenceGUID SEQ_Vampire_FeedBoss_Trigger_Complete = new SequenceGUID(1127550179); public static readonly SequenceGUID SEQ_Vampire_KickHorse = new SequenceGUID(763644813); public static readonly SequenceGUID SEQ_Vampire_FeedBoss_Trigger_Complete_1 = new SequenceGUID(1613726794); public static readonly SequenceGUID SEQ_Shared_Buff_17 = new SequenceGUID(-792905958); public static readonly SequenceGUID SEQ_Vampire_Feed_Trigger_Complete = new SequenceGUID(-357168393); public static readonly SequenceGUID SEQ_GeneralTeleport_Cast = new SequenceGUID(1982276252); public static readonly SequenceGUID SEQ_Shared_Buff_18 = new SequenceGUID(-264233941); public static readonly SequenceGUID SEQ_Shared_Buff_19 = new SequenceGUID(1714984300); public static readonly SequenceGUID SEQ_Shared_Dash_Phase = new SequenceGUID(-1813416361); public static readonly SequenceGUID SEQ_Shared_Buff_20 = new SequenceGUID(-847752857); public static readonly SequenceGUID SEQ_Shared_Buff_21 = new SequenceGUID(813205600); public static readonly SequenceGUID SEQ_Shared_Buff_22 = new SequenceGUID(441289660); public static readonly SequenceGUID SEQ_Shared_Buff_23 = new SequenceGUID(1860070914); public static readonly SequenceGUID SEQ_Shared_Buff_24 = new SequenceGUID(1091298225); public static readonly SequenceGUID SEQ_Shared_Buff_25 = new SequenceGUID(1917289233); public static readonly SequenceGUID SEQ_Shared_BeamBuff = new SequenceGUID(-1095965911); public static readonly SequenceGUID SEQ_Shared_Buff_26 = new SequenceGUID(-110851416); public static readonly SequenceGUID SEQ_Shared_Buff_27 = new SequenceGUID(-129753614); public static readonly SequenceGUID SEQ_Shared_Buff_28 = new SequenceGUID(1860814460); public static readonly SequenceGUID SEQ_Shared_Buff_29 = new SequenceGUID(-347958432); public static readonly SequenceGUID SEQ_Shared_Buff_30 = new SequenceGUID(-731259644); public static readonly SequenceGUID SEQ_Shared_Buff_31 = new SequenceGUID(-1186714850); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_1 = new SequenceGUID(-207886408); public static readonly SequenceGUID SEQ_Shared_Buff_32 = new SequenceGUID(-495774492); public static readonly SequenceGUID SEQ_Shared_Buff_33 = new SequenceGUID(-58059351); public static readonly SequenceGUID SEQ_Shared_Buff_34 = new SequenceGUID(-2109759784); public static readonly SequenceGUID SEQ_Shared_Buff_35 = new SequenceGUID(347215951); public static readonly SequenceGUID SEQ_Shared_Buff_36 = new SequenceGUID(-98184759); public static readonly SequenceGUID SEQ_Shared_Buff_37 = new SequenceGUID(-1943881020); public static readonly SequenceGUID SEQ_Shared_Buff_38 = new SequenceGUID(731990873); public static readonly SequenceGUID SEQ_Shared_Buff_39 = new SequenceGUID(958846619); public static readonly SequenceGUID SEQ_Shared_Buff_40 = new SequenceGUID(-1527309003); public static readonly SequenceGUID SEQ_Shared_Buff_41 = new SequenceGUID(-970638080); public static readonly SequenceGUID SEQ_Shared_Buff_42 = new SequenceGUID(511120546); public static readonly SequenceGUID SEQ_Shared_Buff_43 = new SequenceGUID(447803376); public static readonly SequenceGUID SEQ_Shared_Buff_44 = new SequenceGUID(83992066); public static readonly SequenceGUID SEQ_Shared_Buff_45 = new SequenceGUID(163739704); public static readonly SequenceGUID SEQ_Shared_Buff_46 = new SequenceGUID(563548947); public static readonly SequenceGUID SEQ_Shared_Buff_47 = new SequenceGUID(-847671325); public static readonly SequenceGUID SEQ_Shared_Buff_48 = new SequenceGUID(1526968287); public static readonly SequenceGUID SEQ_Shared_Buff_49 = new SequenceGUID(1748220424); public static readonly SequenceGUID SEQ_Shared_Buff_50 = new SequenceGUID(487199595); public static readonly SequenceGUID SEQ_Shared_Travel_Landing = new SequenceGUID(-380645033); public static readonly SequenceGUID SEQ_Shared_Buff_51 = new SequenceGUID(1723723780); public static readonly SequenceGUID SEQ_Shared_Buff_52 = new SequenceGUID(1190230090); public static readonly SequenceGUID SEQ_Shared_Buff_53 = new SequenceGUID(-245172916); public static readonly SequenceGUID SEQ_Shared_Buff_54 = new SequenceGUID(-472879402); public static readonly SequenceGUID SEQ_Shared_Buff_55 = new SequenceGUID(567850257); public static readonly SequenceGUID SEQ_Shared_Buff_56 = new SequenceGUID(1805008827); public static readonly SequenceGUID SEQ_Shared_Buff_57 = new SequenceGUID(1269037356); public static readonly SequenceGUID SEQ_Shared_Buff_58 = new SequenceGUID(-405028865); public static readonly SequenceGUID SEQ_Shared_Buff_59 = new SequenceGUID(1974591955); public static readonly SequenceGUID SEQ_Shared_Buff_60 = new SequenceGUID(-461378192); public static readonly SequenceGUID SEQ_Shared_UnitSpawn = new SequenceGUID(1924946090); public static readonly SequenceGUID SEQ_Shared_Buff_61 = new SequenceGUID(-258673262); public static readonly SequenceGUID SEQ_Shared_Buff_62 = new SequenceGUID(-549459861); public static readonly SequenceGUID SEQ_Shared_Buff_63 = new SequenceGUID(-954860062); public static readonly SequenceGUID SEQ_Shared_Buff_64 = new SequenceGUID(1517472564); public static readonly SequenceGUID SEQ_Shared_Buff_65 = new SequenceGUID(1113431671); public static readonly SequenceGUID SEQ_Shared_Buff_66 = new SequenceGUID(1213196664); public static readonly SequenceGUID SEQ_Shared_Buff_67 = new SequenceGUID(-618319540); public static readonly SequenceGUID SEQ_Shared_Buff_68 = new SequenceGUID(-1401192224); public static readonly SequenceGUID SEQ_Shared_Buff_69 = new SequenceGUID(-1392214667); public static readonly SequenceGUID SEQ_Shared_Buff_70 = new SequenceGUID(720435802); public static readonly SequenceGUID SEQ_Shared_Buff_71 = new SequenceGUID(-1156219236); public static readonly SequenceGUID SEQ_Shared_Buff_72 = new SequenceGUID(-912024290); public static readonly SequenceGUID SEQ_Shared_Buff_73 = new SequenceGUID(1850600228); public static readonly SequenceGUID SEQ_Shared_Buff_74 = new SequenceGUID(237786499); public static readonly SequenceGUID SEQ_Shared_Buff_75 = new SequenceGUID(-1733979090); public static readonly SequenceGUID SEQ_Shared_Buff_76 = new SequenceGUID(-1134796607); public static readonly SequenceGUID SEQ_Shared_Buff_77 = new SequenceGUID(1724677522); public static readonly SequenceGUID SEQ_Shared_Buff_78 = new SequenceGUID(925486981); public static readonly SequenceGUID SEQ_Shared_Buff_Stun = new SequenceGUID(1972314495); public static readonly SequenceGUID SEQ_Shared_Buff_79 = new SequenceGUID(-976839672); public static readonly SequenceGUID SEQ_Shared_Buff_80 = new SequenceGUID(174964561); public static readonly SequenceGUID SEQ_Shared_Buff_81 = new SequenceGUID(-531184163); public static readonly SequenceGUID SEQ_Shared_Buff_82 = new SequenceGUID(-375044406); public static readonly SequenceGUID SEQ_Shared_Buff_83 = new SequenceGUID(46739119); public static readonly SequenceGUID SEQ_Shared_Buff_84 = new SequenceGUID(-2065736999); public static readonly SequenceGUID SEQ_Shared_Buff_85 = new SequenceGUID(-267055592); public static readonly SequenceGUID SEQ_Shared_Buff_86 = new SequenceGUID(-530001863); public static readonly SequenceGUID SEQ_Shared_Buff_87 = new SequenceGUID(-361833378); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_2 = new SequenceGUID(8569866); public static readonly SequenceGUID SEQ_Shared_Buff_88 = new SequenceGUID(113507715); public static readonly SequenceGUID SEQ_Shared_Buff_89 = new SequenceGUID(-1371734995); public static readonly SequenceGUID SEQ_Shared_Buff_90 = new SequenceGUID(727464939); public static readonly SequenceGUID SEQ_Shared_Buff_91 = new SequenceGUID(-323691690); public static readonly SequenceGUID SEQ_Shared_Buff_92 = new SequenceGUID(-1145330293); public static readonly SequenceGUID SEQ_Shared_Buff_93 = new SequenceGUID(467565066); public static readonly SequenceGUID SEQ_Shared_Buff_94 = new SequenceGUID(384445007); public static readonly SequenceGUID SEQ_Shared_Buff_95 = new SequenceGUID(1405668278); public static readonly SequenceGUID SEQ_Shared_Buff_96 = new SequenceGUID(-1211122130); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_3 = new SequenceGUID(-1678731574); public static readonly SequenceGUID SEQ_Shared_Buff_97 = new SequenceGUID(-891693219); public static readonly SequenceGUID SEQ_Shared_Buff_98 = new SequenceGUID(-1570267594); public static readonly SequenceGUID SEQ_Shared_Buff_99 = new SequenceGUID(-830736088); public static readonly SequenceGUID SEQ_Shared_Buff_100 = new SequenceGUID(-576122037); public static readonly SequenceGUID SEQ_Shared_Buff_101 = new SequenceGUID(-259327032); public static readonly SequenceGUID SEQ_Shared_Buff_102 = new SequenceGUID(1792706966); public static readonly SequenceGUID SEQ_Shared_Buff_103 = new SequenceGUID(485745766); public static readonly SequenceGUID SEQ_Shared_Buff_104 = new SequenceGUID(-1463216112); public static readonly SequenceGUID SEQ_Shared_Buff_Simple_LEGACY = new SequenceGUID(-412269356); public static readonly SequenceGUID SEQ_Shared_Buff_105 = new SequenceGUID(1334167043); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_1 = new SequenceGUID(1324222003); public static readonly SequenceGUID SEQ_Shared_Buff_106 = new SequenceGUID(1363504962); public static readonly SequenceGUID SEQ_Shared_Buff_107 = new SequenceGUID(-947093262); public static readonly SequenceGUID SEQ_Shared_Buff_108 = new SequenceGUID(561852337); public static readonly SequenceGUID SEQ_Shared_Buff_109 = new SequenceGUID(1370070433); public static readonly SequenceGUID SEQ_Shared_Buff_110 = new SequenceGUID(-1985032156); public static readonly SequenceGUID SEQ_Shared_Buff_111 = new SequenceGUID(-218431443); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_4 = new SequenceGUID(-1824255526); public static readonly SequenceGUID SEQ_Shared_Buff_112 = new SequenceGUID(458700942); public static readonly SequenceGUID SEQ_Shared_Buff_113 = new SequenceGUID(-2015013903); public static readonly SequenceGUID SEQ_Shared_Buff_114 = new SequenceGUID(-977555540); public static readonly SequenceGUID SEQ_Shared_Buff_115 = new SequenceGUID(-98864896); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_2 = new SequenceGUID(1695792207); public static readonly SequenceGUID SEQ_Shared_Buff_116 = new SequenceGUID(-1503453621); public static readonly SequenceGUID SEQ_Shared_Buff_117 = new SequenceGUID(1045029667); public static readonly SequenceGUID SEQ_Shared_Buff_118 = new SequenceGUID(2050507511); public static readonly SequenceGUID SEQ_Shared_Buff_119 = new SequenceGUID(-512148592); public static readonly SequenceGUID SEQ_Shared_Buff_120 = new SequenceGUID(517924132); public static readonly SequenceGUID SEQ_Shared_Buff_121 = new SequenceGUID(947102295); public static readonly SequenceGUID SEQ_Shared_Buff_122 = new SequenceGUID(-1717775215); public static readonly SequenceGUID SEQ_Shared_Buff_123 = new SequenceGUID(-1232808709); public static readonly SequenceGUID SEQ_Shared_Buff_124 = new SequenceGUID(-1447348308); public static readonly SequenceGUID SEQ_Shared_Buff_125 = new SequenceGUID(777456330); public static readonly SequenceGUID SEQ_Shared_Buff_126 = new SequenceGUID(694331987); public static readonly SequenceGUID SEQ_Shared_Buff_127 = new SequenceGUID(-336678695); public static readonly SequenceGUID SEQ_Shared_Buff_128 = new SequenceGUID(-1379465505); public static readonly SequenceGUID SEQ_Shared_Buff_129 = new SequenceGUID(424472418); public static readonly SequenceGUID SEQ_Shared_Buff_130 = new SequenceGUID(-251954211); public static readonly SequenceGUID SEQ_Shared_Buff_131 = new SequenceGUID(851664082); public static readonly SequenceGUID SEQ_Shared_Buff_132 = new SequenceGUID(598033564); public static readonly SequenceGUID SEQ_Shared_Buff_133 = new SequenceGUID(690347689); public static readonly SequenceGUID SEQ_Shared_Buff_134 = new SequenceGUID(1788359155); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_5 = new SequenceGUID(-600017615); public static readonly SequenceGUID SEQ_Shared_Buff_135 = new SequenceGUID(571031161); public static readonly SequenceGUID SEQ_Shared_Buff_136 = new SequenceGUID(606907878); public static readonly SequenceGUID SEQ_Shared_Buff_137 = new SequenceGUID(521392677); public static readonly SequenceGUID SEQ_Shared_Buff_138 = new SequenceGUID(-1336169916); public static readonly SequenceGUID SEQ_Shared_Buff_139 = new SequenceGUID(-338884892); public static readonly SequenceGUID SEQ_Shared_Buff_140 = new SequenceGUID(697787726); public static readonly SequenceGUID SEQ_BellRing = new SequenceGUID(1968734759); public static readonly SequenceGUID SEQ_Shared_Buff_141 = new SequenceGUID(1130262102); public static readonly SequenceGUID SEQ_Shared_Buff_142 = new SequenceGUID(550767799); public static readonly SequenceGUID SEQ_Shared_Buff_143 = new SequenceGUID(-171890839); public static readonly SequenceGUID SEQ_Shared_Buff_144 = new SequenceGUID(-530804985); public static readonly SequenceGUID SEQ_Shared_Buff_145 = new SequenceGUID(1370334721); public static readonly SequenceGUID SEQ_Shared_Buff_146 = new SequenceGUID(899074682); public static readonly SequenceGUID SEQ_Shared_Buff_147 = new SequenceGUID(1796446111); public static readonly SequenceGUID SEQ_Shared_Buff_148 = new SequenceGUID(-824130498); public static readonly SequenceGUID SEQ_Shared_Buff_149 = new SequenceGUID(871448398); public static readonly SequenceGUID SEQ_Shared_Buff_150 = new SequenceGUID(-874763029); public static readonly SequenceGUID SEQ_Shared_Buff_151 = new SequenceGUID(-547799434); public static readonly SequenceGUID SEQ_Shared_Buff_152 = new SequenceGUID(-1618924908); public static readonly SequenceGUID SEQ_Shared_Buff_153 = new SequenceGUID(-824144499); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded = new SequenceGUID(-868779850); public static readonly SequenceGUID SEQ_Servant_Respawn = new SequenceGUID(-1243218570); public static readonly SequenceGUID SEQ_Shared_Buff_154 = new SequenceGUID(1335646479); public static readonly SequenceGUID SEQ_Shared_Buff_155 = new SequenceGUID(-233477833); public static readonly SequenceGUID SEQ_Shared_Buff_156 = new SequenceGUID(-36865549); public static readonly SequenceGUID SEQ_Shared_Buff_157 = new SequenceGUID(1028056293); public static readonly SequenceGUID SEQ_Shared_BeamBuff_1 = new SequenceGUID(1481985460); public static readonly SequenceGUID SEQ_Shared_Buff_158 = new SequenceGUID(-139474274); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_6 = new SequenceGUID(-1331985429); public static readonly SequenceGUID SEQ_Shared_Buff_159 = new SequenceGUID(-895797872); public static readonly SequenceGUID SEQ_Shared_Buff_160 = new SequenceGUID(712805324); public static readonly SequenceGUID SEQ_Shared_Buff_161 = new SequenceGUID(329516168); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_3 = new SequenceGUID(702409343); public static readonly SequenceGUID SEQ_Shared_Buff_162 = new SequenceGUID(1002150973); public static readonly SequenceGUID SEQ_Shared_Buff_163 = new SequenceGUID(2057927075); public static readonly SequenceGUID SEQ_Shared_Buff_164 = new SequenceGUID(2112294313); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_7 = new SequenceGUID(1397143867); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_8 = new SequenceGUID(2023095736); public static readonly SequenceGUID SEQ_Shared_Buff_165 = new SequenceGUID(405707249); public static readonly SequenceGUID SEQ_Shared_Buff_166 = new SequenceGUID(-1031835906); public static readonly SequenceGUID SEQ_Shared_Buff_167 = new SequenceGUID(-300493794); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_9 = new SequenceGUID(-185800233); public static readonly SequenceGUID SEQ_Shared_Buff_168 = new SequenceGUID(-634155485); public static readonly SequenceGUID SEQ_Shared_Buff_169 = new SequenceGUID(-1530661924); public static readonly SequenceGUID SEQ_Shared_Buff_170 = new SequenceGUID(2125869802); public static readonly SequenceGUID SEQ_Shared_Buff_171 = new SequenceGUID(1201548180); public static readonly SequenceGUID SEQ_Shared_Buff_172 = new SequenceGUID(-1546578644); public static readonly SequenceGUID SEQ_Shared_Buff_173 = new SequenceGUID(1134569426); public static readonly SequenceGUID SEQ_Shared_Buff_174 = new SequenceGUID(-277173757); public static readonly SequenceGUID SEQ_Shared_Buff_175 = new SequenceGUID(-1135841346); public static readonly SequenceGUID SEQ_Shared_Buff_176 = new SequenceGUID(-1527550167); public static readonly SequenceGUID SEQ_Shared_Buff_177 = new SequenceGUID(-336028642); public static readonly SequenceGUID SEQ_Shared_Buff_178 = new SequenceGUID(-79640162); public static readonly SequenceGUID SEQ_Shared_Buff_179 = new SequenceGUID(-1041911052); public static readonly SequenceGUID SEQ_Shared_Buff_180 = new SequenceGUID(827695434); public static readonly SequenceGUID SEQ_Shared_Buff_181 = new SequenceGUID(697992165); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_1 = new SequenceGUID(-294717811); public static readonly SequenceGUID SEQ_Shared_Buff_182 = new SequenceGUID(90016039); public static readonly SequenceGUID SEQ_Shared_Buff_183 = new SequenceGUID(-2097450870); public static readonly SequenceGUID SEQ_Shared_Buff_184 = new SequenceGUID(1940040275); public static readonly SequenceGUID SEQ_Shared_Buff_185 = new SequenceGUID(1991287081); public static readonly SequenceGUID SEQ_Shared_Buff_186 = new SequenceGUID(1889752614); public static readonly SequenceGUID SEQ_Shared_Buff_187 = new SequenceGUID(-704613459); public static readonly SequenceGUID SEQ_Shared_Buff_188 = new SequenceGUID(-633530547); public static readonly SequenceGUID SEQ_Shared_Buff_189 = new SequenceGUID(101961728); public static readonly SequenceGUID SEQ_Shared_Buff_190 = new SequenceGUID(47198165); public static readonly SequenceGUID SEQ_Shared_Buff_191 = new SequenceGUID(-1457188332); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_10 = new SequenceGUID(2121916024); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_4 = new SequenceGUID(-354155614); public static readonly SequenceGUID SEQ_Shared_Buff_192 = new SequenceGUID(-422664880); public static readonly SequenceGUID SEQ_Shared_Buff_193 = new SequenceGUID(536109105); public static readonly SequenceGUID SEQ_Shared_Buff_194 = new SequenceGUID(-983521467); public static readonly SequenceGUID SEQ_Shared_Buff_Simple_LEGACY_1 = new SequenceGUID(-208680369); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_5 = new SequenceGUID(-540052527); public static readonly SequenceGUID SEQ_Shared_Buff_195 = new SequenceGUID(1246705959); public static readonly SequenceGUID SEQ_Shared_Buff_196 = new SequenceGUID(588512686); public static readonly SequenceGUID SEQ_Shared_Buff_197 = new SequenceGUID(406204965); public static readonly SequenceGUID SEQ_Shared_Buff_198 = new SequenceGUID(1026220622); public static readonly SequenceGUID SEQ_Shared_Buff_199 = new SequenceGUID(998877329); public static readonly SequenceGUID SEQ_Shared_Buff_200 = new SequenceGUID(2090200995); public static readonly SequenceGUID SEQ_Shared_Buff_201 = new SequenceGUID(1202881571); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_1 = new SequenceGUID(1114249707); public static readonly SequenceGUID SEQ_Shared_Buff_202 = new SequenceGUID(1476478633); public static readonly SequenceGUID SEQ_Shared_Vampire_Wounded = new SequenceGUID(-44188150); public static readonly SequenceGUID SEQ_Shared_Buff_203 = new SequenceGUID(-1973671766); public static readonly SequenceGUID SEQ_Shared_Buff_204 = new SequenceGUID(665178781); public static readonly SequenceGUID SEQ_Shared_Buff_205 = new SequenceGUID(-2104926571); public static readonly SequenceGUID SEQ_Shared_Buff_206 = new SequenceGUID(-767658399); public static readonly SequenceGUID SEQ_Shared_Buff_207 = new SequenceGUID(-31586934); public static readonly SequenceGUID SEQ_Shared_Buff_208 = new SequenceGUID(368939527); public static readonly SequenceGUID SEQ_Shared_Buff_209 = new SequenceGUID(898582999); public static readonly SequenceGUID SEQ_Shared_Buff_210 = new SequenceGUID(1682374374); public static readonly SequenceGUID SEQ_Shared_Buff_211 = new SequenceGUID(-12811028); public static readonly SequenceGUID SEQ_Shared_Buff_212 = new SequenceGUID(1998234066); public static readonly SequenceGUID SEQ_Shared_Buff_213 = new SequenceGUID(223179822); public static readonly SequenceGUID SEQ_Shared_Buff_214 = new SequenceGUID(-381987862); public static readonly SequenceGUID SEQ_Shared_Buff_215 = new SequenceGUID(-1084442085); public static readonly SequenceGUID SEQ_Shared_Buff_216 = new SequenceGUID(7889536); public static readonly SequenceGUID SEQ_Shared_Buff_217 = new SequenceGUID(1704853490); public static readonly SequenceGUID SEQ_Shared_Buff_218 = new SequenceGUID(-1095678431); public static readonly SequenceGUID SEQ_Shared_Buff_219 = new SequenceGUID(-455105220); public static readonly SequenceGUID SEQ_Shared_Buff_220 = new SequenceGUID(-526138155); public static readonly SequenceGUID SEQ_Shared_Buff_221 = new SequenceGUID(512584123); public static readonly SequenceGUID SEQ_Shared_Buff_222 = new SequenceGUID(-691064034); public static readonly SequenceGUID SEQ_Shared_Buff_223 = new SequenceGUID(-2083440855); public static readonly SequenceGUID SEQ_Shared_Buff_224 = new SequenceGUID(-1669126359); public static readonly SequenceGUID SEQ_Shared_Buff_225 = new SequenceGUID(-1335502234); public static readonly SequenceGUID SEQ_Shared_Buff_226 = new SequenceGUID(-519374244); public static readonly SequenceGUID SEQ_Shared_Buff_227 = new SequenceGUID(1726752333); public static readonly SequenceGUID SEQ_Shared_Buff_228 = new SequenceGUID(-373134115); public static readonly SequenceGUID SEQ_Shared_Buff_229 = new SequenceGUID(480594764); public static readonly SequenceGUID SEQ_Shared_Buff_230 = new SequenceGUID(-38073310); public static readonly SequenceGUID SEQ_Shared_Buff_231 = new SequenceGUID(-267106581); public static readonly SequenceGUID SEQ_Shared_Buff_232 = new SequenceGUID(1042807388); public static readonly SequenceGUID SEQ_Shared_Buff_233 = new SequenceGUID(752181816); public static readonly SequenceGUID SEQ_Shared_Buff_234 = new SequenceGUID(363780961); public static readonly SequenceGUID SEQ_Shared_Buff_235 = new SequenceGUID(1702873638); public static readonly SequenceGUID SEQ_Shared_Buff_236 = new SequenceGUID(-147724586); public static readonly SequenceGUID SEQ_Shared_Buff_237 = new SequenceGUID(-2025756714); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_6 = new SequenceGUID(-607278046); public static readonly SequenceGUID SEQ_Shared_Buff_238 = new SequenceGUID(-103696206); public static readonly SequenceGUID SEQ_Shared_Buff_239 = new SequenceGUID(-1131015276); public static readonly SequenceGUID SEQ_Shared_Buff_240 = new SequenceGUID(976385949); public static readonly SequenceGUID SEQ_Shared_Buff_241 = new SequenceGUID(-1727762615); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_11 = new SequenceGUID(-1235213618); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_12 = new SequenceGUID(-107096519); public static readonly SequenceGUID SEQ_Shared_Buff_242 = new SequenceGUID(-54355519); public static readonly SequenceGUID SEQ_Shared_Buff_243 = new SequenceGUID(-1312962898); public static readonly SequenceGUID SEQ_Shared_Buff_244 = new SequenceGUID(541006422); public static readonly SequenceGUID SEQ_Shared_Buff_245 = new SequenceGUID(-2048661929); public static readonly SequenceGUID SEQ_Shared_Buff_246 = new SequenceGUID(369246880); public static readonly SequenceGUID SEQ_Shared_Buff_247 = new SequenceGUID(1424229909); public static readonly SequenceGUID SEQ_Shared_Buff_248 = new SequenceGUID(-1411946192); public static readonly SequenceGUID SEQ_Shared_Buff_249 = new SequenceGUID(-1944070104); public static readonly SequenceGUID SEQ_Shared_Buff_250 = new SequenceGUID(1279407297); public static readonly SequenceGUID SEQ_Shared_Buff_251 = new SequenceGUID(903029689); public static readonly SequenceGUID SEQ_Shared_Buff_252 = new SequenceGUID(-2119683537); public static readonly SequenceGUID SEQ_Shared_Buff_253 = new SequenceGUID(834591178); public static readonly SequenceGUID SEQ_Shared_Buff_254 = new SequenceGUID(-174765442); public static readonly SequenceGUID SEQ_Shared_Buff_255 = new SequenceGUID(724067102); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_13 = new SequenceGUID(-201032361); public static readonly SequenceGUID SEQ_Shared_Buff_256 = new SequenceGUID(-2088430224); public static readonly SequenceGUID SEQ_Shared_Buff_257 = new SequenceGUID(289072010); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_2 = new SequenceGUID(-1042309600); public static readonly SequenceGUID SEQ_Shared_Buff_258 = new SequenceGUID(853821178); public static readonly SequenceGUID SEQ_Shared_Buff_259 = new SequenceGUID(-728694863); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_7 = new SequenceGUID(-2002765762); public static readonly SequenceGUID SEQ_Shared_Buff_260 = new SequenceGUID(906814843); public static readonly SequenceGUID SEQ_Shared_Buff_261 = new SequenceGUID(-2035228170); public static readonly SequenceGUID SEQ_Shared_Buff_262 = new SequenceGUID(-1093096041); public static readonly SequenceGUID SEQ_Shared_Buff_263 = new SequenceGUID(-2091971529); public static readonly SequenceGUID SEQ_Shared_Buff_264 = new SequenceGUID(2084535601); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_14 = new SequenceGUID(1783279636); public static readonly SequenceGUID SEQ_Shared_Buff_265 = new SequenceGUID(-774831527); public static readonly SequenceGUID SEQ_Shared_Buff_266 = new SequenceGUID(1248494733); public static readonly SequenceGUID SEQ_Shared_Buff_267 = new SequenceGUID(-1485963143); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_15 = new SequenceGUID(1583270542); public static readonly SequenceGUID SEQ_Shared_Buff_268 = new SequenceGUID(428915149); public static readonly SequenceGUID SEQ_Shared_Buff_269 = new SequenceGUID(461870410); public static readonly SequenceGUID SEQ_Shared_Buff_270 = new SequenceGUID(-44639567); public static readonly SequenceGUID SEQ_Shared_Buff_271 = new SequenceGUID(1056664283); public static readonly SequenceGUID SEQ_Shared_Buff_272 = new SequenceGUID(-500386138); public static readonly SequenceGUID SEQ_Shared_Buff_273 = new SequenceGUID(-37835026); public static readonly SequenceGUID SEQ_Shared_Buff_274 = new SequenceGUID(-1611241733); public static readonly SequenceGUID SEQ_Shared_Buff_275 = new SequenceGUID(-1005902569); public static readonly SequenceGUID SEQ_Shared_Buff_276 = new SequenceGUID(1928559681); public static readonly SequenceGUID SEQ_Shared_Buff_277 = new SequenceGUID(1850091052); public static readonly SequenceGUID SEQ_Shared_Buff_278 = new SequenceGUID(2026406919); public static readonly SequenceGUID SEQ_Shared_Buff_279 = new SequenceGUID(-1038585382); public static readonly SequenceGUID SEQ_Shared_Buff_280 = new SequenceGUID(46372848); public static readonly SequenceGUID SEQ_Shared_Buff_281 = new SequenceGUID(-1211124438); public static readonly SequenceGUID SEQ_Shared_Buff_282 = new SequenceGUID(1166703116); public static readonly SequenceGUID SEQ_Shared_Buff_283 = new SequenceGUID(-714923233); public static readonly SequenceGUID SEQ_Shared_Buff_284 = new SequenceGUID(-1957088225); public static readonly SequenceGUID SEQ_Shared_Buff_285 = new SequenceGUID(-127083379); public static readonly SequenceGUID SEQ_Shared_Buff_286 = new SequenceGUID(-1994496536); public static readonly SequenceGUID SEQ_Shared_Buff_287 = new SequenceGUID(1932744611); public static readonly SequenceGUID SEQ_Shared_Buff_288 = new SequenceGUID(-246827155); public static readonly SequenceGUID SEQ_Shared_Buff_289 = new SequenceGUID(-774929564); public static readonly SequenceGUID SEQ_Shared_Buff_290 = new SequenceGUID(402567901); public static readonly SequenceGUID SEQ_Shared_Buff_291 = new SequenceGUID(-301814288); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_8 = new SequenceGUID(-140031507); public static readonly SequenceGUID SEQ_Shared_Buff_292 = new SequenceGUID(491105423); public static readonly SequenceGUID SEQ_Shared_Buff_293 = new SequenceGUID(-691336596); public static readonly SequenceGUID SEQ_Shared_Buff_294 = new SequenceGUID(1401939215); public static readonly SequenceGUID SEQ_Shared_Buff_295 = new SequenceGUID(1911952686); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_2 = new SequenceGUID(1645271926); public static readonly SequenceGUID SEQ_Angel_Transformation_Buff = new SequenceGUID(-978479910); public static readonly SequenceGUID SEQ_Shared_Buff_296 = new SequenceGUID(1328081942); public static readonly SequenceGUID SEQ_Shared_Buff_297 = new SequenceGUID(-19535814); public static readonly SequenceGUID SEQ_Shared_Buff_298 = new SequenceGUID(-297351438); public static readonly SequenceGUID SEQ_Shared_Buff_299 = new SequenceGUID(-483838773); public static readonly SequenceGUID SEQ_Shared_Buff_300 = new SequenceGUID(250302774); public static readonly SequenceGUID SEQ_Shared_Buff_301 = new SequenceGUID(-1531272711); public static readonly SequenceGUID SEQ_Shared_Buff_302 = new SequenceGUID(-1390457744); public static readonly SequenceGUID SEQ_Shared_Buff_303 = new SequenceGUID(92134615); public static readonly SequenceGUID SEQ_Shared_Buff_304 = new SequenceGUID(-1060284635); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_16 = new SequenceGUID(-452023427); public static readonly SequenceGUID SEQ_Shared_Buff_305 = new SequenceGUID(-1466908430); public static readonly SequenceGUID SEQ_Shared_Buff_306 = new SequenceGUID(1725217769); public static readonly SequenceGUID SEQ_Shared_Buff_307 = new SequenceGUID(1115734589); public static readonly SequenceGUID SEQ_Shared_Buff_308 = new SequenceGUID(1375950638); public static readonly SequenceGUID SEQ_Shared_Buff_309 = new SequenceGUID(35835812); public static readonly SequenceGUID SEQ_Shared_Buff_310 = new SequenceGUID(-1511402197); public static readonly SequenceGUID SEQ_Shared_Buff_311 = new SequenceGUID(-973370810); public static readonly SequenceGUID SEQ_Shared_Buff_312 = new SequenceGUID(1197178741); public static readonly SequenceGUID SEQ_Shared_Buff_313 = new SequenceGUID(1104629228); public static readonly SequenceGUID SEQ_Shared_Buff_314 = new SequenceGUID(-395245189); public static readonly SequenceGUID SEQ_Shared_Buff_315 = new SequenceGUID(-29288192); public static readonly SequenceGUID SEQ_Shared_Buff_316 = new SequenceGUID(1703556245); public static readonly SequenceGUID SEQ_Shared_Buff_317 = new SequenceGUID(-99940119); public static readonly SequenceGUID SEQ_Shared_Buff_318 = new SequenceGUID(804273324); public static readonly SequenceGUID SEQ_Shared_Buff_319 = new SequenceGUID(-112417341); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift = new SequenceGUID(1141418559); public static readonly SequenceGUID SEQ_Shared_Buff_320 = new SequenceGUID(320399499); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_9 = new SequenceGUID(-331567426); public static readonly SequenceGUID SEQ_Shared_Buff_321 = new SequenceGUID(-1246660517); public static readonly SequenceGUID SEQ_Shared_Buff_322 = new SequenceGUID(1317260280); public static readonly SequenceGUID SEQ_Shared_Buff_323 = new SequenceGUID(-250786641); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_10 = new SequenceGUID(96517398); public static readonly SequenceGUID SEQ_Shared_Buff_324 = new SequenceGUID(1628932111); public static readonly SequenceGUID SEQ_Shared_Buff_325 = new SequenceGUID(-702709128); public static readonly SequenceGUID SEQ_Shared_Buff_326 = new SequenceGUID(2071719263); public static readonly SequenceGUID SEQ_Shared_Buff_327 = new SequenceGUID(-584029741); public static readonly SequenceGUID SEQ_Shared_Buff_328 = new SequenceGUID(643805892); public static readonly SequenceGUID SEQ_Shared_Buff_329 = new SequenceGUID(-1241171110); public static readonly SequenceGUID SEQ_Shared_Buff_330 = new SequenceGUID(1775830376); public static readonly SequenceGUID SEQ_Shared_Buff_331 = new SequenceGUID(-1733450188); public static readonly SequenceGUID SEQ_Shared_Buff_332 = new SequenceGUID(-2097911814); public static readonly SequenceGUID SEQ_Shared_Buff_333 = new SequenceGUID(-631442644); public static readonly SequenceGUID SEQ_Shared_Buff_334 = new SequenceGUID(-1715325731); public static readonly SequenceGUID SEQ_Shared_Buff_335 = new SequenceGUID(-656861748); public static readonly SequenceGUID SEQ_Shared_Buff_336 = new SequenceGUID(-2042004586); public static readonly SequenceGUID SEQ_Shared_Buff_337 = new SequenceGUID(-1814647781); public static readonly SequenceGUID SEQ_Shared_Buff_Simple_LEGACY_2 = new SequenceGUID(71730308); public static readonly SequenceGUID SEQ_Shared_Buff_338 = new SequenceGUID(-952841167); public static readonly SequenceGUID SEQ_Shared_Buff_339 = new SequenceGUID(-474816905); public static readonly SequenceGUID SEQ_Shared_Buff_340 = new SequenceGUID(2010259206); public static readonly SequenceGUID SEQ_Shared_Buff_341 = new SequenceGUID(-788165863); public static readonly SequenceGUID SEQ_Shared_Buff_342 = new SequenceGUID(407484503); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_11 = new SequenceGUID(559724828); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_12 = new SequenceGUID(558426348); public static readonly SequenceGUID SEQ_Shared_Buff_343 = new SequenceGUID(1609547841); public static readonly SequenceGUID SEQ_Shared_Buff_344 = new SequenceGUID(799393902); public static readonly SequenceGUID SEQ_Shared_Buff_345 = new SequenceGUID(-1356352942); public static readonly SequenceGUID SEQ_Shared_Buff_346 = new SequenceGUID(-1596924619); public static readonly SequenceGUID SEQ_Shared_Buff_347 = new SequenceGUID(-1026053781); public static readonly SequenceGUID SEQ_Shared_Buff_348 = new SequenceGUID(-1065532763); public static readonly SequenceGUID SEQ_Shared_Buff_349 = new SequenceGUID(-330636504); public static readonly SequenceGUID SEQ_Shared_Buff_350 = new SequenceGUID(-450265042); public static readonly SequenceGUID SEQ_Shared_Buff_351 = new SequenceGUID(-1654905485); public static readonly SequenceGUID SEQ_Shared_Buff_352 = new SequenceGUID(-1862963584); public static readonly SequenceGUID SEQ_Shared_Buff_353 = new SequenceGUID(-482249663); public static readonly SequenceGUID SEQ_Shared_Buff_354 = new SequenceGUID(-970062246); public static readonly SequenceGUID SEQ_Shared_Buff_355 = new SequenceGUID(398703554); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_3 = new SequenceGUID(-1438750729); public static readonly SequenceGUID SEQ_Shared_Buff_356 = new SequenceGUID(2062464489); public static readonly SequenceGUID SEQ_Shared_Buff_357 = new SequenceGUID(1182476883); public static readonly SequenceGUID SEQ_Shared_Buff_358 = new SequenceGUID(1766818681); public static readonly SequenceGUID SEQ_Shared_Buff_359 = new SequenceGUID(275311062); public static readonly SequenceGUID SEQ_Shared_Buff_360 = new SequenceGUID(1920026417); public static readonly SequenceGUID SEQ_Shared_Buff_361 = new SequenceGUID(-1581759226); public static readonly SequenceGUID SEQ_Shared_Buff_362 = new SequenceGUID(-1824537636); public static readonly SequenceGUID SEQ_Shared_Buff_363 = new SequenceGUID(-201988711); public static readonly SequenceGUID SEQ_Shared_Buff_364 = new SequenceGUID(1713706695); public static readonly SequenceGUID SEQ_Shared_Buff_365 = new SequenceGUID(-585530907); public static readonly SequenceGUID SEQ_Shared_Buff_366 = new SequenceGUID(-623688446); public static readonly SequenceGUID SEQ_Shared_Buff_367 = new SequenceGUID(1895719321); public static readonly SequenceGUID SEQ_Shared_Buff_368 = new SequenceGUID(-186423971); public static readonly SequenceGUID SEQ_Shared_Buff_369 = new SequenceGUID(-1861637227); public static readonly SequenceGUID SEQ_Shared_Buff_370 = new SequenceGUID(-1655483956); public static readonly SequenceGUID SEQ_Shared_BeamBuff_2 = new SequenceGUID(557767030); public static readonly SequenceGUID SEQ_Shared_Buff_371 = new SequenceGUID(-1468961863); public static readonly SequenceGUID SEQ_Shared_Buff_372 = new SequenceGUID(792821810); public static readonly SequenceGUID SEQ_Shared_Buff_373 = new SequenceGUID(1792871087); public static readonly SequenceGUID SEQ_Shared_Buff_374 = new SequenceGUID(724748371); public static readonly SequenceGUID SEQ_Shared_Buff_375 = new SequenceGUID(-435468014); public static readonly SequenceGUID SEQ_Shared_Buff_376 = new SequenceGUID(1987467665); public static readonly SequenceGUID SEQ_Shared_Buff_377 = new SequenceGUID(1028012702); public static readonly SequenceGUID SEQ_Shared_Buff_378 = new SequenceGUID(-1797824251); public static readonly SequenceGUID SEQ_Shared_Buff_379 = new SequenceGUID(886823389); public static readonly SequenceGUID SEQ_Shared_Buff_380 = new SequenceGUID(-537307913); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_13 = new SequenceGUID(1115713419); public static readonly SequenceGUID SEQ_Shared_Buff_381 = new SequenceGUID(897021827); public static readonly SequenceGUID SEQ_Shared_Buff_382 = new SequenceGUID(-843351556); public static readonly SequenceGUID SEQ_Shared_Buff_383 = new SequenceGUID(422859924); public static readonly SequenceGUID SEQ_Shared_Buff_384 = new SequenceGUID(-1999735529); public static readonly SequenceGUID SEQ_Shared_Buff_385 = new SequenceGUID(-336824951); public static readonly SequenceGUID SEQ_Shared_Buff_386 = new SequenceGUID(-2000382948); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_17 = new SequenceGUID(-1941368868); public static readonly SequenceGUID SEQ_Shared_Buff_387 = new SequenceGUID(-562977696); public static readonly SequenceGUID SEQ_Shared_Buff_388 = new SequenceGUID(293629357); public static readonly SequenceGUID SEQ_Shared_Buff_389 = new SequenceGUID(-1068313584); public static readonly SequenceGUID SEQ_Shared_Buff_390 = new SequenceGUID(-1131350586); public static readonly SequenceGUID SEQ_Shared_Buff_391 = new SequenceGUID(593266619); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_14 = new SequenceGUID(-691096900); public static readonly SequenceGUID SEQ_Shared_Buff_392 = new SequenceGUID(-1338136382); public static readonly SequenceGUID SEQ_Shared_Buff_393 = new SequenceGUID(-1562068751); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_15 = new SequenceGUID(1247223746); public static readonly SequenceGUID SEQ_Shared_Buff_394 = new SequenceGUID(1481333176); public static readonly SequenceGUID SEQ_Shared_Buff_395 = new SequenceGUID(1359504623); public static readonly SequenceGUID SEQ_Shared_Buff_396 = new SequenceGUID(-454251312); public static readonly SequenceGUID SEQ_Shared_Buff_397 = new SequenceGUID(493559588); public static readonly SequenceGUID SEQ_Shared_Buff_398 = new SequenceGUID(1739557961); public static readonly SequenceGUID SEQ_Shared_Buff_399 = new SequenceGUID(-309285601); public static readonly SequenceGUID SEQ_Shared_Buff_400 = new SequenceGUID(-826063981); public static readonly SequenceGUID SEQ_Shared_Buff_401 = new SequenceGUID(-1620296734); public static readonly SequenceGUID SEQ_Shared_Buff_402 = new SequenceGUID(-1646480312); public static readonly SequenceGUID SEQ_Shared_SpawnAdds = new SequenceGUID(-1813277630); public static readonly SequenceGUID SEQ_Shared_Buff_403 = new SequenceGUID(1219159197); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_16 = new SequenceGUID(706807142); public static readonly SequenceGUID SEQ_Shared_Buff_404 = new SequenceGUID(-759885324); public static readonly SequenceGUID SEQ_Shared_Buff_405 = new SequenceGUID(301802506); public static readonly SequenceGUID SEQ_Shared_Buff_406 = new SequenceGUID(-262309389); public static readonly SequenceGUID SEQ_Shared_Buff_407 = new SequenceGUID(857060898); public static readonly SequenceGUID SEQ_Shared_Buff_408 = new SequenceGUID(-2112316111); public static readonly SequenceGUID SEQ_Shared_Buff_409 = new SequenceGUID(-281845573); public static readonly SequenceGUID SEQ_Shared_Buff_410 = new SequenceGUID(-2056788311); public static readonly SequenceGUID SEQ_Shared_Buff_411 = new SequenceGUID(-1284078125); public static readonly SequenceGUID SEQ_Shared_Buff_412 = new SequenceGUID(1767997562); public static readonly SequenceGUID SEQ_Shared_Buff_413 = new SequenceGUID(-34258912); public static readonly SequenceGUID SEQ_Shared_Buff_414 = new SequenceGUID(-1642491789); public static readonly SequenceGUID SEQ_Shared_Buff_415 = new SequenceGUID(-1869573794); public static readonly SequenceGUID SEQ_Shared_Buff_416 = new SequenceGUID(1167411672); public static readonly SequenceGUID SEQ_Shared_Buff_417 = new SequenceGUID(102473184); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_18 = new SequenceGUID(-143123027); public static readonly SequenceGUID SEQ_Shared_Buff_418 = new SequenceGUID(1415653505); public static readonly SequenceGUID SEQ_Shared_Buff_419 = new SequenceGUID(-1960414453); public static readonly SequenceGUID SEQ_Shared_Buff_420 = new SequenceGUID(-147902195); public static readonly SequenceGUID SEQ_Shared_Buff_421 = new SequenceGUID(1006255492); public static readonly SequenceGUID SEQ_Shared_Buff_422 = new SequenceGUID(-1042097380); public static readonly SequenceGUID SEQ_Shared_Buff_423 = new SequenceGUID(-608964259); public static readonly SequenceGUID SEQ_Shared_Buff_424 = new SequenceGUID(-1913382661); public static readonly SequenceGUID SEQ_Shared_Buff_425 = new SequenceGUID(703633988); public static readonly SequenceGUID SEQ_Shared_Buff_426 = new SequenceGUID(524793285); public static readonly SequenceGUID SEQ_Shared_Buff_427 = new SequenceGUID(238135069); public static readonly SequenceGUID SEQ_Shared_Buff_428 = new SequenceGUID(-968940856); public static readonly SequenceGUID SEQ_Shared_Buff_429 = new SequenceGUID(2019083865); public static readonly SequenceGUID SEQ_Shared_Buff_430 = new SequenceGUID(-1601586777); public static readonly SequenceGUID SEQ_Shared_Buff_431 = new SequenceGUID(249764573); public static readonly SequenceGUID SEQ_Shared_Buff_432 = new SequenceGUID(-190993091); public static readonly SequenceGUID SEQ_Shared_Buff_433 = new SequenceGUID(-814898027); public static readonly SequenceGUID SEQ_Shared_Buff_434 = new SequenceGUID(-1562502507); public static readonly SequenceGUID SEQ_Shared_Buff_435 = new SequenceGUID(-2039467191); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_17 = new SequenceGUID(-895542775); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_18 = new SequenceGUID(-1615536989); public static readonly SequenceGUID SEQ_Shared_Buff_436 = new SequenceGUID(-722108753); public static readonly SequenceGUID SEQ_Shared_Buff_437 = new SequenceGUID(1957730701); public static readonly SequenceGUID SEQ_Shared_Buff_438 = new SequenceGUID(-1294968358); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_19 = new SequenceGUID(1827301879); public static readonly SequenceGUID SEQ_Shared_Buff_439 = new SequenceGUID(-1631833575); public static readonly SequenceGUID SEQ_Shared_Buff_440 = new SequenceGUID(-2131476810); public static readonly SequenceGUID SEQ_Shared_SpawnAdds_1 = new SequenceGUID(1559451525); public static readonly SequenceGUID SEQ_Shared_SpawnAdds_2 = new SequenceGUID(-1183583171); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_19 = new SequenceGUID(153528149); public static readonly SequenceGUID SEQ_Shared_Buff_441 = new SequenceGUID(954181022); public static readonly SequenceGUID SEQ_Shared_Buff_442 = new SequenceGUID(1194178865); public static readonly SequenceGUID SEQ_Shared_Idle_Interaction = new SequenceGUID(1722191185); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_20 = new SequenceGUID(1291264245); public static readonly SequenceGUID SEQ_Shared_Buff_443 = new SequenceGUID(826012982); public static readonly SequenceGUID SEQ_Shared_Buff_444 = new SequenceGUID(-1637604145); public static readonly SequenceGUID SEQ_Shared_Buff_445 = new SequenceGUID(68828315); public static readonly SequenceGUID SEQ_Shared_Buff_446 = new SequenceGUID(1188276381); public static readonly SequenceGUID SEQ_Shared_Buff_447 = new SequenceGUID(-1966480362); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_21 = new SequenceGUID(1977366308); public static readonly SequenceGUID SEQ_Shared_Buff_448 = new SequenceGUID(530989983); public static readonly SequenceGUID SEQ_Shared_Buff_449 = new SequenceGUID(-1251957100); public static readonly SequenceGUID SEQ_Shared_Buff_450 = new SequenceGUID(232258347); public static readonly SequenceGUID SEQ_Shared_Buff_451 = new SequenceGUID(1433171437); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_4 = new SequenceGUID(845030102); public static readonly SequenceGUID SEQ_Shared_Buff_452 = new SequenceGUID(-200549574); public static readonly SequenceGUID SEQ_Shared_Buff_453 = new SequenceGUID(-681071169); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_22 = new SequenceGUID(-601419297); public static readonly SequenceGUID SEQ_Shared_Buff_454 = new SequenceGUID(-994276034); public static readonly SequenceGUID SEQ_Shared_Buff_455 = new SequenceGUID(-299238264); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_23 = new SequenceGUID(-1774399999); public static readonly SequenceGUID SEQ_Shared_Buff_456 = new SequenceGUID(1291026424); public static readonly SequenceGUID SEQ_Shared_Buff_457 = new SequenceGUID(688071103); public static readonly SequenceGUID SEQ_Shared_Buff_458 = new SequenceGUID(-1043819426); public static readonly SequenceGUID SEQ_Shared_Buff_459 = new SequenceGUID(-933424156); public static readonly SequenceGUID SEQ_Shared_Buff_460 = new SequenceGUID(855691264); public static readonly SequenceGUID SEQ_Shared_Buff_461 = new SequenceGUID(1249884127); public static readonly SequenceGUID SEQ_Shared_Buff_462 = new SequenceGUID(991765359); public static readonly SequenceGUID SEQ_Shared_Buff_463 = new SequenceGUID(657111762); public static readonly SequenceGUID SEQ_Shared_Buff_464 = new SequenceGUID(671054704); public static readonly SequenceGUID SEQ_Shared_Buff_465 = new SequenceGUID(-711475099); public static readonly SequenceGUID SEQ_Shared_Buff_466 = new SequenceGUID(1783380946); public static readonly SequenceGUID SEQ_Shared_Buff_467 = new SequenceGUID(1014062248); public static readonly SequenceGUID SEQ_Shared_Buff_468 = new SequenceGUID(1089016232); public static readonly SequenceGUID SEQ_Shared_Buff_469 = new SequenceGUID(-340528088); public static readonly SequenceGUID SEQ_Shared_Buff_470 = new SequenceGUID(2050204805); public static readonly SequenceGUID SEQ_Shared_Buff_471 = new SequenceGUID(-1719506658); public static readonly SequenceGUID SEQ_Shared_Buff_472 = new SequenceGUID(1265299840); public static readonly SequenceGUID SEQ_Shared_Buff_473 = new SequenceGUID(346448485); public static readonly SequenceGUID SEQ_Shared_Buff_474 = new SequenceGUID(-30507766); public static readonly SequenceGUID SEQ_Shared_Buff_475 = new SequenceGUID(2029450030); public static readonly SequenceGUID SEQ_Shared_Buff_476 = new SequenceGUID(1945536714); public static readonly SequenceGUID SEQ_Shared_Buff_477 = new SequenceGUID(-187580810); public static readonly SequenceGUID SEQ_Shared_Buff_478 = new SequenceGUID(1685664190); public static readonly SequenceGUID SEQ_Shared_Buff_Simple_LEGACY_3 = new SequenceGUID(-1716657809); public static readonly SequenceGUID SEQ_Shared_Buff_479 = new SequenceGUID(-1410948664); public static readonly SequenceGUID SEQ_Shared_Buff_480 = new SequenceGUID(-486587516); public static readonly SequenceGUID SEQ_Shared_Buff_481 = new SequenceGUID(-197212615); public static readonly SequenceGUID SEQ_Shared_Buff_482 = new SequenceGUID(-151046225); public static readonly SequenceGUID SEQ_Shared_Buff_483 = new SequenceGUID(1454388018); public static readonly SequenceGUID SEQ_Shared_Buff_484 = new SequenceGUID(-1443055210); public static readonly SequenceGUID SEQ_Shared_Buff_485 = new SequenceGUID(-1954781565); public static readonly SequenceGUID SEQ_Shared_Buff_486 = new SequenceGUID(424435449); public static readonly SequenceGUID SEQ_Shared_Buff_487 = new SequenceGUID(-1777407137); public static readonly SequenceGUID SEQ_Shared_Buff_488 = new SequenceGUID(-1068108655); public static readonly SequenceGUID SEQ_Shared_Buff_489 = new SequenceGUID(-856717869); public static readonly SequenceGUID SEQ_Shared_Buff_490 = new SequenceGUID(-1670832141); public static readonly SequenceGUID SEQ_Shared_Buff_491 = new SequenceGUID(1594272263); public static readonly SequenceGUID SEQ_Shared_Buff_492 = new SequenceGUID(2122958511); public static readonly SequenceGUID SEQ_Shared_Buff_493 = new SequenceGUID(-1658789311); public static readonly SequenceGUID SEQ_Shared_Buff_494 = new SequenceGUID(-1860717208); public static readonly SequenceGUID SEQ_Shared_Buff_495 = new SequenceGUID(-2116651844); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_24 = new SequenceGUID(-1919438584); public static readonly SequenceGUID SEQ_Shared_Buff_496 = new SequenceGUID(590963976); public static readonly SequenceGUID SEQ_Shared_Buff_497 = new SequenceGUID(-1997733676); public static readonly SequenceGUID SEQ_Shared_Buff_498 = new SequenceGUID(-986777127); public static readonly SequenceGUID SEQ_Shared_Buff_499 = new SequenceGUID(1007997969); public static readonly SequenceGUID SEQ_Shared_Buff_500 = new SequenceGUID(-1651421601); public static readonly SequenceGUID SEQ_Shared_Buff_501 = new SequenceGUID(-218233995); public static readonly SequenceGUID SEQ_Shared_Buff_502 = new SequenceGUID(1861488822); public static readonly SequenceGUID SEQ_Shared_Buff_503 = new SequenceGUID(1697275963); public static readonly SequenceGUID SEQ_Shared_InteractWithTarget = new SequenceGUID(1900219436); public static readonly SequenceGUID SEQ_Shared_Buff_504 = new SequenceGUID(-1271063114); public static readonly SequenceGUID SEQ_Shared_Buff_505 = new SequenceGUID(1362340557); public static readonly SequenceGUID SEQ_Shared_Buff_506 = new SequenceGUID(-1454356057); public static readonly SequenceGUID SEQ_Shared_Buff_507 = new SequenceGUID(-862058135); public static readonly SequenceGUID SEQ_Shared_Buff_508 = new SequenceGUID(1414050853); public static readonly SequenceGUID SEQ_Shared_Buff_509 = new SequenceGUID(-1274524209); public static readonly SequenceGUID SEQ_Shared_Buff_510 = new SequenceGUID(600384659); public static readonly SequenceGUID SEQ_Shared_Buff_511 = new SequenceGUID(-256117504); public static readonly SequenceGUID SEQ_Shared_Buff_512 = new SequenceGUID(550875078); public static readonly SequenceGUID SEQ_Shared_Buff_513 = new SequenceGUID(1923731901); public static readonly SequenceGUID SEQ_Shared_Buff_514 = new SequenceGUID(-1370787723); public static readonly SequenceGUID SEQ_Shared_Buff_515 = new SequenceGUID(1388870393); public static readonly SequenceGUID SEQ_Shared_Buff_516 = new SequenceGUID(-1607383488); public static readonly SequenceGUID SEQ_Shared_Buff_517 = new SequenceGUID(1343677057); public static readonly SequenceGUID SEQ_Shared_Buff_518 = new SequenceGUID(991544773); public static readonly SequenceGUID SEQ_Shared_Buff_519 = new SequenceGUID(-1055742491); public static readonly SequenceGUID SEQ_Shared_Buff_520 = new SequenceGUID(916283391); public static readonly SequenceGUID SEQ_Shared_Buff_521 = new SequenceGUID(1015046450); public static readonly SequenceGUID SEQ_Shared_Buff_522 = new SequenceGUID(-798547162); public static readonly SequenceGUID SEQ_Shared_Buff_523 = new SequenceGUID(1085624133); public static readonly SequenceGUID SEQ_Shared_Buff_524 = new SequenceGUID(-412679650); public static readonly SequenceGUID SEQ_Shared_Buff_525 = new SequenceGUID(1015211343); public static readonly SequenceGUID SEQ_Shared_Buff_526 = new SequenceGUID(-876580762); public static readonly SequenceGUID SEQ_Shared_Buff_527 = new SequenceGUID(49817782); public static readonly SequenceGUID SEQ_Shared_Buff_528 = new SequenceGUID(431273132); public static readonly SequenceGUID SEQ_Shared_Buff_529 = new SequenceGUID(1594616173); public static readonly SequenceGUID SEQ_Shared_Buff_530 = new SequenceGUID(-1619871883); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_20 = new SequenceGUID(-679817861); public static readonly SequenceGUID SEQ_Shared_Buff_531 = new SequenceGUID(1840528356); public static readonly SequenceGUID SEQ_Shared_Buff_532 = new SequenceGUID(-1190448398); public static readonly SequenceGUID SEQ_Shared_Buff_533 = new SequenceGUID(-1201541553); public static readonly SequenceGUID SEQ_Shared_Buff_534 = new SequenceGUID(-466138406); public static readonly SequenceGUID SEQ_Shared_Buff_535 = new SequenceGUID(1290596571); public static readonly SequenceGUID SEQ_Workstation_TombCoffin_Vampire2 = new SequenceGUID(1035437981); public static readonly SequenceGUID SEQ_Shared_Buff_536 = new SequenceGUID(630783684); public static readonly SequenceGUID SEQ_Shared_Buff_537 = new SequenceGUID(-2034210834); public static readonly SequenceGUID SEQ_Shared_Buff_538 = new SequenceGUID(1612313006); public static readonly SequenceGUID SEQ_Shared_Buff_539 = new SequenceGUID(-189866547); public static readonly SequenceGUID SEQ_Shared_Buff_540 = new SequenceGUID(551741213); public static readonly SequenceGUID SEQ_Shared_Buff_541 = new SequenceGUID(-1938810158); public static readonly SequenceGUID SEQ_Shared_Buff_542 = new SequenceGUID(-1506310466); public static readonly SequenceGUID SEQ_Shared_Buff_543 = new SequenceGUID(2054202144); public static readonly SequenceGUID SEQ_Shared_Buff_544 = new SequenceGUID(1676030854); public static readonly SequenceGUID SEQ_Shared_Buff_545 = new SequenceGUID(-1125186905); public static readonly SequenceGUID SEQ_Shared_Buff_546 = new SequenceGUID(1365709172); public static readonly SequenceGUID SEQ_Shared_Buff_547 = new SequenceGUID(-2083187903); public static readonly SequenceGUID SEQ_Shared_Buff_548 = new SequenceGUID(-358230992); public static readonly SequenceGUID SEQ_Shared_Buff_549 = new SequenceGUID(795078991); public static readonly SequenceGUID SEQ_Shared_Buff_550 = new SequenceGUID(-717060434); public static readonly SequenceGUID SEQ_Shared_Buff_551 = new SequenceGUID(-1508527219); public static readonly SequenceGUID SEQ_Shared_Buff_552 = new SequenceGUID(1613253836); public static readonly SequenceGUID SEQ_Shared_Buff_553 = new SequenceGUID(1058126708); public static readonly SequenceGUID SEQ_Shared_Buff_554 = new SequenceGUID(1870116673); public static readonly SequenceGUID SEQ_Shared_Buff_555 = new SequenceGUID(-1542649669); public static readonly SequenceGUID SEQ_Shared_Buff_556 = new SequenceGUID(996802451); public static readonly SequenceGUID SEQ_Shared_Buff_557 = new SequenceGUID(-1614232682); public static readonly SequenceGUID SEQ_Shared_Buff_558 = new SequenceGUID(446834762); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_25 = new SequenceGUID(-6063125); public static readonly SequenceGUID SEQ_Shared_Buff_559 = new SequenceGUID(-588368411); public static readonly SequenceGUID SEQ_Shared_Buff_560 = new SequenceGUID(-652149293); public static readonly SequenceGUID SEQ_Shared_Buff_561 = new SequenceGUID(2064358916); public static readonly SequenceGUID SEQ_Shared_Buff_562 = new SequenceGUID(-2009704644); public static readonly SequenceGUID SEQ_Shared_Buff_563 = new SequenceGUID(1038243509); public static readonly SequenceGUID SEQ_Shared_Buff_564 = new SequenceGUID(-345339617); public static readonly SequenceGUID SEQ_Shared_Buff_565 = new SequenceGUID(1914219745); public static readonly SequenceGUID SEQ_Shared_Buff_566 = new SequenceGUID(304142734); public static readonly SequenceGUID SEQ_Shared_SpawnAdds_3 = new SequenceGUID(129687720); public static readonly SequenceGUID SEQ_Holy_Area_Debuff = new SequenceGUID(177741322); public static readonly SequenceGUID SEQ_Shared_Buff_567 = new SequenceGUID(1695406972); public static readonly SequenceGUID SEQ_Shared_Buff_568 = new SequenceGUID(99303973); public static readonly SequenceGUID SEQ_Shared_Buff_569 = new SequenceGUID(1946128644); public static readonly SequenceGUID SEQ_Shared_Buff_570 = new SequenceGUID(1336630962); public static readonly SequenceGUID SEQ_Shared_Buff_571 = new SequenceGUID(1501610806); public static readonly SequenceGUID SEQ_Shared_Buff_572 = new SequenceGUID(-1046055070); public static readonly SequenceGUID SEQ_Shared_Buff_573 = new SequenceGUID(1828480712); public static readonly SequenceGUID SEQ_Shared_Buff_574 = new SequenceGUID(-1278418129); public static readonly SequenceGUID SEQ_Shared_Buff_575 = new SequenceGUID(-1513357310); public static readonly SequenceGUID SEQ_Shared_Buff_576 = new SequenceGUID(1548085755); public static readonly SequenceGUID SEQ_Shared_Buff_577 = new SequenceGUID(624968055); public static readonly SequenceGUID SEQ_Shared_Buff_578 = new SequenceGUID(1225235741); public static readonly SequenceGUID SEQ_Shared_Buff_579 = new SequenceGUID(-1517653083); public static readonly SequenceGUID SEQ_Shared_Buff_580 = new SequenceGUID(1872499237); public static readonly SequenceGUID SEQ_Shared_Buff_581 = new SequenceGUID(-262187043); public static readonly SequenceGUID SEQ_Shared_Buff_582 = new SequenceGUID(1360405303); public static readonly SequenceGUID SEQ_Shared_Buff_583 = new SequenceGUID(955674066); public static readonly SequenceGUID SEQ_Shared_Buff_584 = new SequenceGUID(2049492839); public static readonly SequenceGUID SEQ_Shared_Buff_585 = new SequenceGUID(512392298); public static readonly SequenceGUID SEQ_Shared_Buff_586 = new SequenceGUID(710161581); public static readonly SequenceGUID SEQ_Shared_Buff_587 = new SequenceGUID(-980871230); public static readonly SequenceGUID SEQ_Shared_Buff_588 = new SequenceGUID(-1308184609); public static readonly SequenceGUID SEQ_Shared_Buff_589 = new SequenceGUID(425519856); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_21 = new SequenceGUID(-1706071613); public static readonly SequenceGUID SEQ_Shared_Buff_590 = new SequenceGUID(1549394171); public static readonly SequenceGUID SEQ_Shared_Buff_591 = new SequenceGUID(-1892532883); public static readonly SequenceGUID SEQ_Shared_Buff_592 = new SequenceGUID(-395514307); public static readonly SequenceGUID SEQ_Shared_Buff_593 = new SequenceGUID(-1874136348); public static readonly SequenceGUID SEQ_Shared_Buff_594 = new SequenceGUID(-29337242); public static readonly SequenceGUID SEQ_Shared_Buff_595 = new SequenceGUID(-226967145); public static readonly SequenceGUID SEQ_Shared_Buff_596 = new SequenceGUID(-2061465252); public static readonly SequenceGUID SEQ_Shared_Buff_597 = new SequenceGUID(-1423361217); public static readonly SequenceGUID SEQ_Shared_Buff_598 = new SequenceGUID(-388592922); public static readonly SequenceGUID SEQ_Shared_Buff_599 = new SequenceGUID(-2055858640); public static readonly SequenceGUID SEQ_Shared_Buff_600 = new SequenceGUID(-2094708142); public static readonly SequenceGUID SEQ_Workstation_WoodenCoffin_Vampire = new SequenceGUID(-631796407); public static readonly SequenceGUID SEQ_Shared_Buff_601 = new SequenceGUID(-1344040783); public static readonly SequenceGUID SEQ_Shared_Buff_602 = new SequenceGUID(1806028497); public static readonly SequenceGUID SEQ_Shared_Buff_603 = new SequenceGUID(-1886006349); public static readonly SequenceGUID SEQ_Shared_Buff_604 = new SequenceGUID(1391505439); public static readonly SequenceGUID SEQ_Shared_Buff_605 = new SequenceGUID(-162811315); public static readonly SequenceGUID SEQ_Shared_Buff_606 = new SequenceGUID(-1836177671); public static readonly SequenceGUID SEQ_Shared_Buff_607 = new SequenceGUID(-471185757); public static readonly SequenceGUID SEQ_Shared_Buff_608 = new SequenceGUID(-1021140986); public static readonly SequenceGUID SEQ_Shared_Buff_609 = new SequenceGUID(1565699121); public static readonly SequenceGUID SEQ_Shared_Buff_610 = new SequenceGUID(411661242); public static readonly SequenceGUID SEQ_Shared_Buff_611 = new SequenceGUID(1308948446); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_5 = new SequenceGUID(-2070758018); public static readonly SequenceGUID SEQ_Shared_Buff_612 = new SequenceGUID(970008232); public static readonly SequenceGUID SEQ_Shared_Buff_613 = new SequenceGUID(-2026863021); public static readonly SequenceGUID SEQ_Shared_Buff_614 = new SequenceGUID(-1854066463); public static readonly SequenceGUID SEQ_Shared_Buff_615 = new SequenceGUID(-2006499315); public static readonly SequenceGUID SEQ_Shared_Buff_616 = new SequenceGUID(-1277264420); public static readonly SequenceGUID SEQ_Shared_Buff_617 = new SequenceGUID(-725486579); public static readonly SequenceGUID SEQ_Shared_Buff_618 = new SequenceGUID(1723656460); public static readonly SequenceGUID SEQ_Shared_Buff_619 = new SequenceGUID(1935907211); public static readonly SequenceGUID SEQ_Shared_Buff_620 = new SequenceGUID(380962277); public static readonly SequenceGUID SEQ_Shared_Buff_621 = new SequenceGUID(1099725315); public static readonly SequenceGUID SEQ_Shared_Buff_622 = new SequenceGUID(-1632841831); public static readonly SequenceGUID SEQ_Shared_Buff_623 = new SequenceGUID(-2093629786); public static readonly SequenceGUID SEQ_Shared_Buff_624 = new SequenceGUID(-1630290128); public static readonly SequenceGUID SEQ_Shared_Buff_625 = new SequenceGUID(1845986301); public static readonly SequenceGUID SEQ_Shared_Buff_626 = new SequenceGUID(-2036390166); public static readonly SequenceGUID SEQ_Shared_Buff_627 = new SequenceGUID(-2002467721); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_22 = new SequenceGUID(-206226431); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_26 = new SequenceGUID(-568925783); public static readonly SequenceGUID SEQ_Shared_Buff_628 = new SequenceGUID(-1429662366); public static readonly SequenceGUID SEQ_Shared_Vampire_Wounded_1 = new SequenceGUID(-2074187470); public static readonly SequenceGUID SEQ_Shared_Buff_629 = new SequenceGUID(-494436917); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_27 = new SequenceGUID(-1232298650); public static readonly SequenceGUID SEQ_Shared_Buff_630 = new SequenceGUID(-934216088); public static readonly SequenceGUID SEQ_Shared_Buff_631 = new SequenceGUID(2118567050); public static readonly SequenceGUID SEQ_Shared_Buff_632 = new SequenceGUID(-1981408271); public static readonly SequenceGUID SEQ_Shared_Buff_633 = new SequenceGUID(652054768); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_23 = new SequenceGUID(-1628328433); public static readonly SequenceGUID SEQ_Shared_Buff_634 = new SequenceGUID(341243722); public static readonly SequenceGUID SEQ_Shared_Buff_635 = new SequenceGUID(1242155710); public static readonly SequenceGUID SEQ_Shared_Buff_636 = new SequenceGUID(-1950343819); public static readonly SequenceGUID SEQ_GeneralTeleport_TravelEnd_1 = new SequenceGUID(-1780773164); public static readonly SequenceGUID SEQ_Shared_Buff_637 = new SequenceGUID(-1031934193); public static readonly SequenceGUID SEQ_Shared_Buff_638 = new SequenceGUID(1404750523); public static readonly SequenceGUID SEQ_Shared_Buff_639 = new SequenceGUID(-1754195079); public static readonly SequenceGUID SEQ_Shared_Buff_640 = new SequenceGUID(1276239180); public static readonly SequenceGUID SEQ_Shared_Buff_641 = new SequenceGUID(-2009184754); public static readonly SequenceGUID SEQ_Shared_Buff_642 = new SequenceGUID(-180453211); public static readonly SequenceGUID SEQ_Shared_Buff_643 = new SequenceGUID(-1916008065); public static readonly SequenceGUID SEQ_Shared_Buff_644 = new SequenceGUID(204608336); public static readonly SequenceGUID SEQ_Shared_Buff_645 = new SequenceGUID(-869867344); public static readonly SequenceGUID SEQ_Shared_Buff_646 = new SequenceGUID(1800158812); public static readonly SequenceGUID SEQ_Shared_Buff_647 = new SequenceGUID(723637843); public static readonly SequenceGUID SEQ_Shared_Buff_648 = new SequenceGUID(2032831563); public static readonly SequenceGUID SEQ_Shared_Buff_649 = new SequenceGUID(1517700734); public static readonly SequenceGUID SEQ_Shared_Buff_650 = new SequenceGUID(-368497581); public static readonly SequenceGUID SEQ_Shared_InteractWithTarget_1 = new SequenceGUID(1460570404); public static readonly SequenceGUID SEQ_Shared_Buff_651 = new SequenceGUID(2100219416); public static readonly SequenceGUID SEQ_Shared_Buff_652 = new SequenceGUID(1965239043); public static readonly SequenceGUID SEQ_Shared_Buff_653 = new SequenceGUID(159447859); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_6 = new SequenceGUID(1240511058); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_7 = new SequenceGUID(-2002471841); public static readonly SequenceGUID SEQ_Shared_Buff_654 = new SequenceGUID(602723091); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_28 = new SequenceGUID(515667072); public static readonly SequenceGUID SEQ_Shared_Buff_655 = new SequenceGUID(-1177605044); public static readonly SequenceGUID SEQ_Shared_Buff_656 = new SequenceGUID(82679226); public static readonly SequenceGUID SEQ_Shared_Buff_657 = new SequenceGUID(867015105); public static readonly SequenceGUID SEQ_Shared_Buff_658 = new SequenceGUID(-2051988217); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_29 = new SequenceGUID(-435494548); public static readonly SequenceGUID SEQ_Shared_Buff_659 = new SequenceGUID(-1368799581); public static readonly SequenceGUID SEQ_Shared_Buff_660 = new SequenceGUID(-766065270); public static readonly SequenceGUID SEQ_Shared_Buff_661 = new SequenceGUID(-1507172438); public static readonly SequenceGUID SEQ_Shared_Buff_662 = new SequenceGUID(-559826277); public static readonly SequenceGUID SEQ_Shared_Buff_663 = new SequenceGUID(2007037135); public static readonly SequenceGUID SEQ_Shared_Buff_664 = new SequenceGUID(-1554701952); public static readonly SequenceGUID SEQ_Shared_Buff_665 = new SequenceGUID(2021937413); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_1 = new SequenceGUID(1152734548); public static readonly SequenceGUID SEQ_Shared_Buff_666 = new SequenceGUID(-176900124); public static readonly SequenceGUID SEQ_Shared_Buff_667 = new SequenceGUID(209350919); public static readonly SequenceGUID SEQ_Shared_Buff_668 = new SequenceGUID(1392626569); public static readonly SequenceGUID SEQ_Shared_Buff_669 = new SequenceGUID(457555229); public static readonly SequenceGUID SEQ_Shared_Buff_670 = new SequenceGUID(-785981247); public static readonly SequenceGUID SEQ_Shared_Buff_671 = new SequenceGUID(-860829723); public static readonly SequenceGUID SEQ_Shared_Buff_672 = new SequenceGUID(-204206712); public static readonly SequenceGUID SEQ_Shared_Buff_673 = new SequenceGUID(2104343431); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_8 = new SequenceGUID(1001438279); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_30 = new SequenceGUID(1291835775); public static readonly SequenceGUID SEQ_Shared_Buff_674 = new SequenceGUID(647684344); public static readonly SequenceGUID SEQ_Shared_Buff_675 = new SequenceGUID(578629857); public static readonly SequenceGUID SEQ_Shared_Buff_676 = new SequenceGUID(2038383239); public static readonly SequenceGUID SEQ_Shared_Buff_677 = new SequenceGUID(-410759800); public static readonly SequenceGUID SEQ_Shared_Buff_678 = new SequenceGUID(1945946769); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_3 = new SequenceGUID(1323177324); public static readonly SequenceGUID SEQ_Shared_Buff_679 = new SequenceGUID(987878952); public static readonly SequenceGUID SEQ_Shared_Buff_680 = new SequenceGUID(122496054); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_31 = new SequenceGUID(1298590666); public static readonly SequenceGUID SEQ_Shared_Buff_681 = new SequenceGUID(1836770470); public static readonly SequenceGUID SEQ_Shared_Buff_682 = new SequenceGUID(-1106227189); public static readonly SequenceGUID SEQ_Shared_BeamBuff_3 = new SequenceGUID(-396785864); public static readonly SequenceGUID SEQ_Shared_BeamBuff_4 = new SequenceGUID(-535197896); public static readonly SequenceGUID SEQ_Shared_Buff_683 = new SequenceGUID(317232918); public static readonly SequenceGUID SEQ_Shared_Buff_684 = new SequenceGUID(-1241807766); public static readonly SequenceGUID SEQ_Entryway_Travel = new SequenceGUID(-856199900); public static readonly SequenceGUID SEQ_Shared_Buff_685 = new SequenceGUID(933417577); public static readonly SequenceGUID SEQ_Shared_Buff_686 = new SequenceGUID(195196218); public static readonly SequenceGUID SEQ_Shared_Buff_687 = new SequenceGUID(-1800290522); public static readonly SequenceGUID SEQ_Shared_Buff_688 = new SequenceGUID(-1963374560); public static readonly SequenceGUID SEQ_Shared_Buff_689 = new SequenceGUID(100603052); public static readonly SequenceGUID SEQ_Shared_Buff_690 = new SequenceGUID(-1080535211); public static readonly SequenceGUID SEQ_Shared_Buff_691 = new SequenceGUID(-1803584743); public static readonly SequenceGUID SEQ_Shared_Buff_692 = new SequenceGUID(347250154); public static readonly SequenceGUID SEQ_Vampire_Feed_DashAwayFromTarget = new SequenceGUID(-1926643038); public static readonly SequenceGUID SEQ_Shared_Buff_693 = new SequenceGUID(649472467); public static readonly SequenceGUID SEQ_Shared_Buff_694 = new SequenceGUID(2086096274); public static readonly SequenceGUID SEQ_Shared_Buff_695 = new SequenceGUID(-181825273); public static readonly SequenceGUID SEQ_Shared_Buff_696 = new SequenceGUID(1075023210); public static readonly SequenceGUID SEQ_Shared_Buff_697 = new SequenceGUID(1435157893); public static readonly SequenceGUID SEQ_Shared_Buff_698 = new SequenceGUID(210847535); public static readonly SequenceGUID SEQ_Shared_Buff_699 = new SequenceGUID(1002843221); public static readonly SequenceGUID SEQ_Shared_Buff_700 = new SequenceGUID(523615679); public static readonly SequenceGUID SEQ_Shared_Buff_701 = new SequenceGUID(-1216476671); public static readonly SequenceGUID SEQ_VampireLeapAttack_Unarmed_Travel = new SequenceGUID(-733383320); public static readonly SequenceGUID SEQ_Shared_Buff_702 = new SequenceGUID(-1962601549); public static readonly SequenceGUID SEQ_Shared_Buff_703 = new SequenceGUID(-238154906); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_32 = new SequenceGUID(1037390008); public static readonly SequenceGUID SEQ_Shared_Buff_704 = new SequenceGUID(-590533367); public static readonly SequenceGUID SEQ_Shared_Buff_705 = new SequenceGUID(2034300955); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_4 = new SequenceGUID(2016104505); public static readonly SequenceGUID SEQ_Shared_Buff_706 = new SequenceGUID(-1716247447); public static readonly SequenceGUID SEQ_Shared_Buff_707 = new SequenceGUID(-2112655039); public static readonly SequenceGUID SEQ_Shared_Buff_708 = new SequenceGUID(1000407797); public static readonly SequenceGUID SEQ_Shared_Buff_709 = new SequenceGUID(850554951); public static readonly SequenceGUID SEQ_Shared_Buff_710 = new SequenceGUID(81875692); public static readonly SequenceGUID SEQ_Shared_Buff_711 = new SequenceGUID(-1061567892); public static readonly SequenceGUID SEQ_Shared_Buff_712 = new SequenceGUID(-66483712); public static readonly SequenceGUID SEQ_Shared_Buff_713 = new SequenceGUID(257689425); public static readonly SequenceGUID SEQ_Nothing = new SequenceGUID(1543505140); public static readonly SequenceGUID SEQ_Aim_Empty = new SequenceGUID(-873713229); public static readonly SequenceGUID TestSequence_Particle = new SequenceGUID(1401594803); public static readonly SequenceGUID SEQ_Visual_DoubleMaterial = new SequenceGUID(1027446241); public static readonly SequenceGUID SEQ_Aim_Empty_1 = new SequenceGUID(-873713229); public static readonly SequenceGUID SEQ_InteractableObject = new SequenceGUID(-1687938342); public static readonly SequenceGUID SEQ_Nothing_1 = new SequenceGUID(1543505140); public static readonly SequenceGUID SEQ_TileModel_Hover_IsEdited_2 = new SequenceGUID(996303984); public static readonly SequenceGUID SEQ_TileModel_Hover_CanEdit_2 = new SequenceGUID(-146356561); public static readonly SequenceGUID SEQ_TileModel_Hover_CanDismantle_2 = new SequenceGUID(-1564614306); public static readonly SequenceGUID SEQ_TileModel_Hover_Blocked_2 = new SequenceGUID(-668659474); public static readonly SequenceGUID SEQ_TileModel_Hover_Blocked_3 = new SequenceGUID(-668659474); public static readonly SequenceGUID SEQ_TileModel_Hover_CanDismantle_3 = new SequenceGUID(-1564614306); public static readonly SequenceGUID SEQ_TileModel_Hover_CanEdit_3 = new SequenceGUID(-146356561); public static readonly SequenceGUID SEQ_TileModel_Hover_IsEdited_3 = new SequenceGUID(996303984); public static readonly SequenceGUID SEQ_Stash_Shared_Close_13 = new SequenceGUID(-1748653598); public static readonly SequenceGUID SEQ_Stash_Shared_Open_13 = new SequenceGUID(-1236683260); public static readonly SequenceGUID SEQ_TileModelPhased_1 = new SequenceGUID(-727847943); public static readonly SequenceGUID SEQ_TileModel_Hover_Blocked_4 = new SequenceGUID(-668659474); public static readonly SequenceGUID SEQ_TileModel_Hover_CanDismantle_4 = new SequenceGUID(-1564614306); public static readonly SequenceGUID SEQ_TileModel_Hover_CanEdit_4 = new SequenceGUID(-146356561); public static readonly SequenceGUID SEQ_TileModel_Hover_IsEdited_4 = new SequenceGUID(996303984); public static readonly SequenceGUID SEQ_Blink_Standard_White_2 = new SequenceGUID(1382804845); public static readonly SequenceGUID SEQ_TileModelDismantling_2 = new SequenceGUID(1820562940); public static readonly SequenceGUID SEQ_TileModelEditing_3 = new SequenceGUID(-450089786); public static readonly SequenceGUID SEQ_TileModelInvalidEditing_3 = new SequenceGUID(29614748); public static readonly SequenceGUID SEQ_TileModelDismantle_9 = new SequenceGUID(-344174753); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_159 = new SequenceGUID(1312967583); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_160 = new SequenceGUID(-1322283644); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_161 = new SequenceGUID(-865797383); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_162 = new SequenceGUID(-2010856491); public static readonly SequenceGUID SEQ_TileModelBuilding_9 = new SequenceGUID(1733594134); public static readonly SequenceGUID SEQ_Interact_PickupItem_InventoryFull_01_6 = new SequenceGUID(-1589160006); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_22 = new SequenceGUID(1073792130); public static readonly SequenceGUID SEQ_TileModelInvalidEditing_4 = new SequenceGUID(-1704123076); public static readonly SequenceGUID SEQ_TileModelEditing_4 = new SequenceGUID(514730326); public static readonly SequenceGUID SEQ_TileModelDismantling_3 = new SequenceGUID(1820562940); public static readonly SequenceGUID SEQ_TileModelDismantle_10 = new SequenceGUID(-1603206932); public static readonly SequenceGUID SEQ_TileModelInvalidEditing_5 = new SequenceGUID(29614748); public static readonly SequenceGUID SEQ_TileModelEditing_5 = new SequenceGUID(-450089786); public static readonly SequenceGUID SEQ_TileModelBuilding_10 = new SequenceGUID(1733594134); public static readonly SequenceGUID SEQ_TileModelDismantle_11 = new SequenceGUID(189290689); public static readonly SequenceGUID SEQ_TileModelBuilding_11 = new SequenceGUID(1352661667); public static readonly SequenceGUID SEQ_Shared_Trigger_463 = new SequenceGUID(1813704946); public static readonly SequenceGUID SEQ_TileModelDismantle_12 = new SequenceGUID(674605853); public static readonly SequenceGUID SEQ_TileModelExitPhased_1 = new SequenceGUID(234167237); public static readonly SequenceGUID SEQ_TileModelDismantling_4 = new SequenceGUID(1820562940); public static readonly SequenceGUID SEQ_TileModelDismantle_13 = new SequenceGUID(189290689); public static readonly SequenceGUID SEQ_TileModelBuildingPhased_1 = new SequenceGUID(-1982272969); public static readonly SequenceGUID SEQ_TileModelBuilding_12 = new SequenceGUID(1733594134); public static readonly SequenceGUID SEQ_TileModelInvalidEditing_6 = new SequenceGUID(29614748); public static readonly SequenceGUID SEQ_TileModelEditing_6 = new SequenceGUID(-450089786); public static readonly SequenceGUID SEQ_Interact_PickupItem_01_23 = new SequenceGUID(1073792130); public static readonly SequenceGUID SEQ_Workstation_BloodFountain_T1_Active_1 = new SequenceGUID(663401072); public static readonly SequenceGUID SEQ_Garlic_AreaNearby = new SequenceGUID(1754116932); public static readonly SequenceGUID SEQ_InteractableObject_1 = new SequenceGUID(-1687938342); public static readonly SequenceGUID SEQ_Nothing_2 = new SequenceGUID(1543505140); public static readonly SequenceGUID SEQ_InteractableObject_2 = new SequenceGUID(-1687938342); public static readonly SequenceGUID SEQ_InteractableObject_3 = new SequenceGUID(-1687938342); public static readonly SequenceGUID SEQ_Dawn = new SequenceGUID(392579464); public static readonly SequenceGUID SEQ_Dusk = new SequenceGUID(-1603359499); public static readonly SequenceGUID SEQ_Shared_Owner_Animation_Trigger = new SequenceGUID(1778348733); public static readonly SequenceGUID SEQ_Shared_Owner_Animation_Trigger_1 = new SequenceGUID(1514333969); public static readonly SequenceGUID SEQ_Shared_MountAnimatorParameterModifier = new SequenceGUID(90516823); public static readonly SequenceGUID SEQ_Shared_Owner_Animation_Trigger_2 = new SequenceGUID(705652864); public static readonly SequenceGUID SEQ_Shared_Owner_Animation_Trigger_3 = new SequenceGUID(-1543589863); public static readonly SequenceGUID SEQ_Mount_Init = new SequenceGUID(931797100); public static readonly SequenceGUID SEQ_Aim_Box = new SequenceGUID(301327727); public static readonly SequenceGUID SEQ_Aim_Cone_old = new SequenceGUID(-504725504); public static readonly SequenceGUID SEQ_Vampire_Cliff_Jump_Landing = new SequenceGUID(804977578); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length4_Blast = new SequenceGUID(848366131); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length4_Preview = new SequenceGUID(-758460232); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length3_Blast = new SequenceGUID(-964512528); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length3_Preview = new SequenceGUID(-1239335937); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length2_Blast = new SequenceGUID(-1136694895); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length2_Preview = new SequenceGUID(491911373); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length1_Blast = new SequenceGUID(-94367546); public static readonly SequenceGUID SEQ_ProfessorCoilBeam_Length1_Preview = new SequenceGUID(1419723633); public static readonly SequenceGUID SEQ_Aim_AimPosition = new SequenceGUID(1699410284); public static readonly SequenceGUID SEQ_Aim_Hint = new SequenceGUID(-2071557231); public static readonly SequenceGUID SEQ_Shared_Throw = new SequenceGUID(-547400562); public static readonly SequenceGUID SEQ_Shared_Throw_1 = new SequenceGUID(263499093); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir = new SequenceGUID(-1670993414); public static readonly SequenceGUID SEQ_Shared_Travel = new SequenceGUID(-1433253315); public static readonly SequenceGUID SEQ_Shared_Travel_1 = new SequenceGUID(684517904); public static readonly SequenceGUID SEQ_Shared_Leap = new SequenceGUID(-137623277); public static readonly SequenceGUID SEQ_Shared_Throw_2 = new SequenceGUID(-781389968); public static readonly SequenceGUID SEQ_Shared_Throw_3 = new SequenceGUID(-1577663098); public static readonly SequenceGUID SEQ_Shared_Leap_1 = new SequenceGUID(877439052); public static readonly SequenceGUID SEQ_Shared_Throw_4 = new SequenceGUID(-2013244059); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir = new SequenceGUID(299068791); public static readonly SequenceGUID SEQ_Shared_TargetArea = new SequenceGUID(-1216307524); public static readonly SequenceGUID SEQ_Shared_TargetArea_1 = new SequenceGUID(2020625455); public static readonly SequenceGUID SEQ_Shared_Travel_2 = new SequenceGUID(-2035673517); public static readonly SequenceGUID SEQ_Shared_Throw_5 = new SequenceGUID(-128440532); public static readonly SequenceGUID SEQ_Shared_Travel_3 = new SequenceGUID(-1885362757); public static readonly SequenceGUID SEQ_Shared_Travel_4 = new SequenceGUID(1797267944); public static readonly SequenceGUID SEQ_Shared_Leap_2 = new SequenceGUID(753752818); public static readonly SequenceGUID SEQ_Shared_Travel_5 = new SequenceGUID(-1494518036); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir_1 = new SequenceGUID(-289660553); public static readonly SequenceGUID SEQ_Shared_Throw_6 = new SequenceGUID(-1558250762); public static readonly SequenceGUID SEQ_Shared_Throw_7 = new SequenceGUID(-525359575); public static readonly SequenceGUID SEQ_Shared_Throw_8 = new SequenceGUID(-58318850); public static readonly SequenceGUID SEQ_Shared_Leap_3 = new SequenceGUID(1475218930); public static readonly SequenceGUID SEQ_Shared_Travel_6 = new SequenceGUID(-783880405); public static readonly SequenceGUID SEQ_Shared_Leap_4 = new SequenceGUID(1048972243); public static readonly SequenceGUID SEQ_Shared_TargetArea_2 = new SequenceGUID(1239722913); public static readonly SequenceGUID SEQ_Shared_Travel_7 = new SequenceGUID(1994848147); public static readonly SequenceGUID SEQ_Shared_Throw_9 = new SequenceGUID(-340905257); public static readonly SequenceGUID SEQ_Shared_Throw_10 = new SequenceGUID(524373087); public static readonly SequenceGUID SEQ_Shared_Throw_11 = new SequenceGUID(-487025158); public static readonly SequenceGUID SEQ_Shared_Throw_12 = new SequenceGUID(-1398097999); public static readonly SequenceGUID SEQ_Shared_Travel_8 = new SequenceGUID(-1137562833); public static readonly SequenceGUID SEQ_Shared_Throw_13 = new SequenceGUID(-844123243); public static readonly SequenceGUID SEQ_Shared_Leap_5 = new SequenceGUID(719136325); public static readonly SequenceGUID SEQ_Shared_Travel_9 = new SequenceGUID(-821078379); public static readonly SequenceGUID SEQ_Shared_TargetArea_3 = new SequenceGUID(1292195587); public static readonly SequenceGUID SEQ_Shared_Travel_10 = new SequenceGUID(6258486); public static readonly SequenceGUID SEQ_Shared_TargetArea_4 = new SequenceGUID(30012487); public static readonly SequenceGUID SEQ_Shared_Travel_11 = new SequenceGUID(-2107073432); public static readonly SequenceGUID SEQ_Shared_Travel_12 = new SequenceGUID(-585045649); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_1 = new SequenceGUID(20323690); public static readonly SequenceGUID SEQ_Shared_Throw_14 = new SequenceGUID(-1911702072); public static readonly SequenceGUID SEQ_Shared_Leap_6 = new SequenceGUID(1891707802); public static readonly SequenceGUID SEQ_Shared_Throw_15 = new SequenceGUID(1945539101); public static readonly SequenceGUID SEQ_Shared_Travel_13 = new SequenceGUID(2039773019); public static readonly SequenceGUID SEQ_Shared_Throw_LEGACY = new SequenceGUID(-1461531987); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_2 = new SequenceGUID(-1026025097); public static readonly SequenceGUID SEQ_Shared_Throw_16 = new SequenceGUID(-11508513); public static readonly SequenceGUID SEQ_Shared_Leap_7 = new SequenceGUID(1641780252); public static readonly SequenceGUID SEQ_Shared_TargetArea_5 = new SequenceGUID(-1385070692); public static readonly SequenceGUID SEQ_Shared_TargetArea_6 = new SequenceGUID(1437659169); public static readonly SequenceGUID SEQ_Shared_TargetArea_7 = new SequenceGUID(-1775692688); public static readonly SequenceGUID SEQ_Shared_TargetArea_8 = new SequenceGUID(-1920811899); public static readonly SequenceGUID SEQ_Shared_Throw_17 = new SequenceGUID(2012982608); public static readonly SequenceGUID SEQ_Shared_TargetArea_9 = new SequenceGUID(1039601457); public static readonly SequenceGUID SEQ_Shared_Leap_8 = new SequenceGUID(2054891215); public static readonly SequenceGUID SEQ_Shared_Travel_14 = new SequenceGUID(1440821132); public static readonly SequenceGUID SEQ_Shared_Travel_15 = new SequenceGUID(-205940829); public static readonly SequenceGUID SEQ_Shared_Leap_9 = new SequenceGUID(550180102); public static readonly SequenceGUID SEQ_Shared_Leap_10 = new SequenceGUID(-2061555316); public static readonly SequenceGUID SEQ_Shared_Throw_18 = new SequenceGUID(-845643878); public static readonly SequenceGUID SEQ_Shared_Throw_19 = new SequenceGUID(-2007774312); public static readonly SequenceGUID SEQ_Shared_TargetArea_10 = new SequenceGUID(157899541); public static readonly SequenceGUID SEQ_Shared_TargetArea_11 = new SequenceGUID(1192687964); public static readonly SequenceGUID SEQ_Shared_TargetArea_12 = new SequenceGUID(63699321); public static readonly SequenceGUID SEQ_Shared_TargetArea_13 = new SequenceGUID(1833954429); public static readonly SequenceGUID SEQ_Shared_Travel_16 = new SequenceGUID(-1507944496); public static readonly SequenceGUID SEQ_Shared_TargetArea_14 = new SequenceGUID(-979192064); public static readonly SequenceGUID SEQ_Shared_Travel_17 = new SequenceGUID(1637885988); public static readonly SequenceGUID SEQ_Shared_TargetArea_15 = new SequenceGUID(1762202337); public static readonly SequenceGUID SEQ_Shared_Throw_20 = new SequenceGUID(-1450200022); public static readonly SequenceGUID SEQ_Shared_Travel_18 = new SequenceGUID(913239865); public static readonly SequenceGUID SEQ_Shared_Leap_11 = new SequenceGUID(-635361585); public static readonly SequenceGUID SEQ_Shared_TargetArea_16 = new SequenceGUID(792058733); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir_2 = new SequenceGUID(159633750); public static readonly SequenceGUID SEQ_Shared_Teleport = new SequenceGUID(1617339915); public static readonly SequenceGUID SEQ_Shared_Throw_21 = new SequenceGUID(1617322690); public static readonly SequenceGUID SEQ_Shared_Travel_19 = new SequenceGUID(-1823924248); public static readonly SequenceGUID SEQ_Shared_Leap_12 = new SequenceGUID(-932159135); public static readonly SequenceGUID SEQ_Shared_Travel_20 = new SequenceGUID(1957700490); public static readonly SequenceGUID SEQ_Shared_Travel_21 = new SequenceGUID(1820870627); public static readonly SequenceGUID SEQ_Shared_TargetArea_17 = new SequenceGUID(19235269); public static readonly SequenceGUID SEQ_Shared_Throw_22 = new SequenceGUID(723638384); public static readonly SequenceGUID SEQ_Shared_Throw_23 = new SequenceGUID(1221997555); public static readonly SequenceGUID SEQ_Shared_Throw_24 = new SequenceGUID(-1849721734); public static readonly SequenceGUID SEQ_Shared_TargetArea_18 = new SequenceGUID(-1626909105); public static readonly SequenceGUID SEQ_Shared_TargetArea_19 = new SequenceGUID(524183344); public static readonly SequenceGUID SEQ_Shared_TargetArea_20 = new SequenceGUID(1738175121); public static readonly SequenceGUID SEQ_Shared_Travel_22 = new SequenceGUID(185557444); public static readonly SequenceGUID SEQ_Shared_Leap_13 = new SequenceGUID(-364278914); public static readonly SequenceGUID SEQ_Shared_TargetArea_21 = new SequenceGUID(605011402); public static readonly SequenceGUID SEQ_Shared_TargetArea_22 = new SequenceGUID(864093136); public static readonly SequenceGUID SEQ_Shared_TargetArea_23 = new SequenceGUID(-419132140); public static readonly SequenceGUID SEQ_Shared_TargetArea_24 = new SequenceGUID(-24563993); public static readonly SequenceGUID SEQ_Shared_TargetArea_25 = new SequenceGUID(-1103573106); public static readonly SequenceGUID SEQ_Shared_TargetArea_26 = new SequenceGUID(606555053); public static readonly SequenceGUID SEQ_Shared_TargetArea_27 = new SequenceGUID(-1763579990); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_3 = new SequenceGUID(1934988879); public static readonly SequenceGUID SEQ_Shared_Travel_23 = new SequenceGUID(-1767121927); public static readonly SequenceGUID SEQ_Shared_TargetArea_Delay = new SequenceGUID(-939656842); public static readonly SequenceGUID SEQ_Shared_Travel_24 = new SequenceGUID(1704935308); public static readonly SequenceGUID SEQ_Shared_Travel_25 = new SequenceGUID(-414783453); public static readonly SequenceGUID SEQ_Shared_Leap_14 = new SequenceGUID(43456382); public static readonly SequenceGUID SEQ_Shared_TargetArea_28 = new SequenceGUID(-1480167767); public static readonly SequenceGUID SEQ_Shared_Throw_25 = new SequenceGUID(47305317); public static readonly SequenceGUID SEQ_Shared_Travel_26 = new SequenceGUID(-1027307049); public static readonly SequenceGUID SEQ_Shared_TargetArea_29 = new SequenceGUID(1375610651); public static readonly SequenceGUID SEQ_Shared_Throw_26 = new SequenceGUID(401708252); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_4 = new SequenceGUID(-1793298558); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir_3 = new SequenceGUID(-71657973); public static readonly SequenceGUID SEQ_Shared_Travel_27 = new SequenceGUID(1766600341); public static readonly SequenceGUID SEQ_Shared_Throw_27 = new SequenceGUID(1880464862); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir_4 = new SequenceGUID(751318810); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_5 = new SequenceGUID(1370782592); public static readonly SequenceGUID SEQ_Shared_Leap_15 = new SequenceGUID(2068964677); public static readonly SequenceGUID SEQ_Shared_TargetArea_30 = new SequenceGUID(-536008371); public static readonly SequenceGUID SEQ_Shared_TargetArea_31 = new SequenceGUID(1325298886); public static readonly SequenceGUID SEQ_Shared_Throw_28 = new SequenceGUID(1238952681); public static readonly SequenceGUID SEQ_Shared_Throw_29 = new SequenceGUID(-2065409555); public static readonly SequenceGUID SEQ_Shared_Throw_30 = new SequenceGUID(1214010453); public static readonly SequenceGUID SEQ_Shared_Travel_28 = new SequenceGUID(1900768056); public static readonly SequenceGUID SEQ_Shared_Leap_16 = new SequenceGUID(-616989446); public static readonly SequenceGUID SEQ_Shared_Travel_29 = new SequenceGUID(-485710978); public static readonly SequenceGUID SEQ_Shared_TargetArea_32 = new SequenceGUID(1052154334); public static readonly SequenceGUID SEQ_Shared_TargetArea_33 = new SequenceGUID(-159478501); public static readonly SequenceGUID SEQ_Shared_Throw_31 = new SequenceGUID(-84056102); public static readonly SequenceGUID SEQ_Shared_Throw_32 = new SequenceGUID(940835175); public static readonly SequenceGUID SEQ_Shared_Throw_33 = new SequenceGUID(1225520223); public static readonly SequenceGUID SEQ_Shared_Leap_17 = new SequenceGUID(-842102663); public static readonly SequenceGUID SEQ_Shared_TargetArea_34 = new SequenceGUID(1639043678); public static readonly SequenceGUID SEQ_Shared_Travel_30 = new SequenceGUID(1833314836); public static readonly SequenceGUID SEQ_Shared_Leap_18 = new SequenceGUID(-47383056); public static readonly SequenceGUID SEQ_Shared_Throw_34 = new SequenceGUID(-1312517932); public static readonly SequenceGUID SEQ_Shared_TargetArea_35 = new SequenceGUID(-1540528512); public static readonly SequenceGUID SEQ_Shared_Travel_31 = new SequenceGUID(1521856718); public static readonly SequenceGUID SEQ_Shared_Throw_35 = new SequenceGUID(1819754807); public static readonly SequenceGUID SEQ_Shared_Throw_36 = new SequenceGUID(-229825423); public static readonly SequenceGUID SEQ_Shared_Leap_19 = new SequenceGUID(-653071742); public static readonly SequenceGUID SEQ_Shared_TargetArea_36 = new SequenceGUID(-313885653); public static readonly SequenceGUID SEQ_Shared_Travel_32 = new SequenceGUID(647042680); public static readonly SequenceGUID SEQ_Shared_Travel_33 = new SequenceGUID(-746012620); public static readonly SequenceGUID SEQ_Shared_TargetArea_37 = new SequenceGUID(768129421); public static readonly SequenceGUID SEQ_Shared_Throw_37 = new SequenceGUID(2014655470); public static readonly SequenceGUID SEQ_Shared_Travel_34 = new SequenceGUID(-820979771); public static readonly SequenceGUID SEQ_Shared_Leap_20 = new SequenceGUID(-1572821971); public static readonly SequenceGUID SEQ_Shared_Travel_35 = new SequenceGUID(1520980696); public static readonly SequenceGUID SEQ_Shared_TargetArea_38 = new SequenceGUID(-1649944543); public static readonly SequenceGUID SEQ_Shared_TargetArea_39 = new SequenceGUID(693750657); public static readonly SequenceGUID SEQ_Shared_Throw_38 = new SequenceGUID(-1000719710); public static readonly SequenceGUID SEQ_Shared_Travel_36 = new SequenceGUID(-1920973680); public static readonly SequenceGUID SEQ_Shared_Travel_37 = new SequenceGUID(447746826); public static readonly SequenceGUID SEQ_Shared_Throw_39 = new SequenceGUID(-981287178); public static readonly SequenceGUID SEQ_Shared_Travel_38 = new SequenceGUID(-1139379110); public static readonly SequenceGUID SEQ_Shared_Travel_39 = new SequenceGUID(-247063148); public static readonly SequenceGUID SEQ_Shared_Travel_40 = new SequenceGUID(784833941); public static readonly SequenceGUID SEQ_Shared_Leap_21 = new SequenceGUID(-390539580); public static readonly SequenceGUID SEQ_Shared_Travel_41 = new SequenceGUID(-1316542116); public static readonly SequenceGUID SEQ_Shared_Throw_40 = new SequenceGUID(1312565343); public static readonly SequenceGUID SEQ_Shared_Travel_42 = new SequenceGUID(-86778087); public static readonly SequenceGUID SEQ_Shared_TargetArea_40 = new SequenceGUID(-2015454246); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_6 = new SequenceGUID(-238107380); public static readonly SequenceGUID SEQ_Shared_Throw_41 = new SequenceGUID(-2008295079); public static readonly SequenceGUID SEQ_Shared_Throw_42 = new SequenceGUID(480228245); public static readonly SequenceGUID SEQ_Shared_TargetArea_41 = new SequenceGUID(678582307); public static readonly SequenceGUID SEQ_Shared_TargetArea_42 = new SequenceGUID(-2007225743); public static readonly SequenceGUID SEQ_Shared_Throw_43 = new SequenceGUID(120561222); public static readonly SequenceGUID SEQ_Shared_Travel_43 = new SequenceGUID(-1697961942); public static readonly SequenceGUID SEQ_Shared_TargetArea_43 = new SequenceGUID(-452601903); public static readonly SequenceGUID SEQ_Shared_Throw_44 = new SequenceGUID(-1093969528); public static readonly SequenceGUID SEQ_Shared_Leap_22 = new SequenceGUID(985996236); public static readonly SequenceGUID SEQ_Shared_Travel_44 = new SequenceGUID(-653564815); public static readonly SequenceGUID SEQ_Shared_Travel_45 = new SequenceGUID(2089202820); public static readonly SequenceGUID SEQ_Shared_Throw_45 = new SequenceGUID(1829673130); public static readonly SequenceGUID SEQ_Shared_Throw_46 = new SequenceGUID(-1838134097); public static readonly SequenceGUID SEQ_Shared_TargetArea_44 = new SequenceGUID(-1273351352); public static readonly SequenceGUID SEQ_Shared_Throw_47 = new SequenceGUID(-441015376); public static readonly SequenceGUID SEQ_Shared_Travel_46 = new SequenceGUID(-1021011344); public static readonly SequenceGUID SEQ_Shared_Travel_47 = new SequenceGUID(-1774784954); public static readonly SequenceGUID SEQ_Shared_Travel_48 = new SequenceGUID(137855005); public static readonly SequenceGUID SEQ_Shared_TargetArea_45 = new SequenceGUID(965383231); public static readonly SequenceGUID SEQ_Shared_TargetArea_46 = new SequenceGUID(341174351); public static readonly SequenceGUID SEQ_Shared_Leap_23 = new SequenceGUID(588341116); public static readonly SequenceGUID SEQ_Shared_Leap_24 = new SequenceGUID(-1410150873); public static readonly SequenceGUID SEQ_Shared_Travel_49 = new SequenceGUID(-1125281407); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir_5 = new SequenceGUID(2092159318); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_7 = new SequenceGUID(-639611064); public static readonly SequenceGUID SEQ_Shared_Throw_48 = new SequenceGUID(-1680049518); public static readonly SequenceGUID SEQ_Shared_Travel_50 = new SequenceGUID(-564130037); public static readonly SequenceGUID SEQ_Shared_Throw_49 = new SequenceGUID(944847771); public static readonly SequenceGUID SEQ_Shared_Travel_51 = new SequenceGUID(-1300336521); public static readonly SequenceGUID SEQ_Shared_Travel_52 = new SequenceGUID(-1173310247); public static readonly SequenceGUID SEQ_Shared_Throw_50 = new SequenceGUID(-1088071527); public static readonly SequenceGUID SEQ_Shared_Throw_51 = new SequenceGUID(-769932777); public static readonly SequenceGUID SEQ_Dracula_EtherialSword_Throw = new SequenceGUID(-556224291); public static readonly SequenceGUID SEQ_Dracula_EtherialSword_Throw_1 = new SequenceGUID(-1697582215); public static readonly SequenceGUID SEQ_Shared_Throw_52 = new SequenceGUID(-1816006193); public static readonly SequenceGUID SEQ_Shared_Throw_53 = new SequenceGUID(1124640575); public static readonly SequenceGUID SEQ_Shared_Travel_53 = new SequenceGUID(168593979); public static readonly SequenceGUID SEQ_Shared_Travel_54 = new SequenceGUID(-1587177737); public static readonly SequenceGUID SEQ_Shared_Throw_LEGACY_1 = new SequenceGUID(26778728); public static readonly SequenceGUID SEQ_Shared_Throw_54 = new SequenceGUID(-144435111); public static readonly SequenceGUID SEQ_Shared_Travel_55 = new SequenceGUID(-1255711389); public static readonly SequenceGUID SEQ_Shared_Leap_25 = new SequenceGUID(724860887); public static readonly SequenceGUID SEQ_Shared_Leap_26 = new SequenceGUID(910067713); public static readonly SequenceGUID SEQ_Shared_Travel_56 = new SequenceGUID(592705475); public static readonly SequenceGUID SEQ_Shared_Throw_55 = new SequenceGUID(1149437221); public static readonly SequenceGUID SEQ_Shared_Travel_57 = new SequenceGUID(959224306); public static readonly SequenceGUID SEQ_Shared_Throw_56 = new SequenceGUID(-1864897490); public static readonly SequenceGUID SEQ_Shared_Throw_57 = new SequenceGUID(-416465021); public static readonly SequenceGUID SEQ_Shared_Throw_58 = new SequenceGUID(-1325981497); public static readonly SequenceGUID SEQ_Shared_Throw_59 = new SequenceGUID(1484985838); public static readonly SequenceGUID SEQ_Shared_Throw_60 = new SequenceGUID(946724588); public static readonly SequenceGUID SEQ_Shared_TargetArea_47 = new SequenceGUID(-1321296010); public static readonly SequenceGUID SEQ_Shared_Throw_61 = new SequenceGUID(-811173825); public static readonly SequenceGUID SEQ_Shared_Leap_27 = new SequenceGUID(674299113); public static readonly SequenceGUID SEQ_Shared_Throw_62 = new SequenceGUID(-813351537); public static readonly SequenceGUID SEQ_Shared_Throw_63 = new SequenceGUID(1451745759); public static readonly SequenceGUID SEQ_Shared_Throw_64 = new SequenceGUID(176721560); public static readonly SequenceGUID SEQ_Shared_Travel_58 = new SequenceGUID(-1453914238); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_8 = new SequenceGUID(164525369); public static readonly SequenceGUID SEQ_Shared_TargetArea_48 = new SequenceGUID(713145333); public static readonly SequenceGUID SEQ_Shared_Travel_59 = new SequenceGUID(1062363788); public static readonly SequenceGUID SEQ_Shared_Leap_28 = new SequenceGUID(-1484528907); public static readonly SequenceGUID SEQ_Shared_Throw_65 = new SequenceGUID(415108370); public static readonly SequenceGUID SEQ_Shared_Throw_66 = new SequenceGUID(573108596); public static readonly SequenceGUID SEQ_Shared_Throw_67 = new SequenceGUID(-238460320); public static readonly SequenceGUID SEQ_Shared_Leap_29 = new SequenceGUID(1266011216); public static readonly SequenceGUID SEQ_Shared_Travel_60 = new SequenceGUID(-1893795053); public static readonly SequenceGUID SEQ_Shared_Travel_61 = new SequenceGUID(64728577); public static readonly SequenceGUID SEQ_Shared_Leap_30 = new SequenceGUID(-1312703969); public static readonly SequenceGUID SEQ_Shared_Travel_62 = new SequenceGUID(1787451846); public static readonly SequenceGUID SEQ_Shared_Throw_68 = new SequenceGUID(-600752618); public static readonly SequenceGUID SEQ_Shared_Travel_63 = new SequenceGUID(-357010714); public static readonly SequenceGUID SEQ_Shared_Throw_69 = new SequenceGUID(-1981066814); public static readonly SequenceGUID SEQ_Shared_Leap_31 = new SequenceGUID(-784632557); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_9 = new SequenceGUID(-123592342); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_10 = new SequenceGUID(-2035893690); public static readonly SequenceGUID SEQ_Shared_Throw_70 = new SequenceGUID(-250478551); public static readonly SequenceGUID SEQ_Shared_Throw_71 = new SequenceGUID(1074145145); public static readonly SequenceGUID SEQ_Shared_Throw_72 = new SequenceGUID(980327716); public static readonly SequenceGUID SEQ_Shared_Throw_73 = new SequenceGUID(1292229877); public static readonly SequenceGUID SEQ_Shared_Throw_74 = new SequenceGUID(-568089414); public static readonly SequenceGUID SEQ_Shared_Travel_64 = new SequenceGUID(-482874671); public static readonly SequenceGUID SEQ_Shared_Travel_65 = new SequenceGUID(-1295780938); public static readonly SequenceGUID SEQ_Shared_Throw_75 = new SequenceGUID(289073804); public static readonly SequenceGUID SEQ_Shared_Throw_76 = new SequenceGUID(-1094084343); public static readonly SequenceGUID SEQ_Shared_Throw_77 = new SequenceGUID(-24536823); public static readonly SequenceGUID SEQ_Shared_Travel_66 = new SequenceGUID(-871945702); public static readonly SequenceGUID SEQ_Shared_TargetArea_49 = new SequenceGUID(-1241395521); public static readonly SequenceGUID SEQ_Shared_Travel_67 = new SequenceGUID(-1537113942); public static readonly SequenceGUID SEQ_Shared_Leap_32 = new SequenceGUID(-1154076242); public static readonly SequenceGUID SEQ_Shared_Travel_68 = new SequenceGUID(1417805018); public static readonly SequenceGUID SEQ_Shared_Travel_69 = new SequenceGUID(310496999); public static readonly SequenceGUID SEQ_Shared_Throw_78 = new SequenceGUID(-1984182386); public static readonly SequenceGUID SEQ_Shared_TargetArea_50 = new SequenceGUID(313931342); public static readonly SequenceGUID SEQ_Shared_Travel_70 = new SequenceGUID(271920130); public static readonly SequenceGUID SEQ_Shared_Travel_71 = new SequenceGUID(1666931671); public static readonly SequenceGUID SEQ_Shared_Throw_79 = new SequenceGUID(-1508674473); public static readonly SequenceGUID SEQ_Shared_Travel_72 = new SequenceGUID(1744594784); public static readonly SequenceGUID SEQ_Shared_Throw_80 = new SequenceGUID(-1820660765); public static readonly SequenceGUID SEQ_Shared_Throw_81 = new SequenceGUID(-955035402); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir_6 = new SequenceGUID(-2008058499); public static readonly SequenceGUID SEQ_Shared_Travel_73 = new SequenceGUID(-514821647); public static readonly SequenceGUID SEQ_Shared_TargetArea_51 = new SequenceGUID(1979011149); public static readonly SequenceGUID SEQ_Shared_TargetArea_52 = new SequenceGUID(-1994046629); public static readonly SequenceGUID SEQ_Shared_Leap_33 = new SequenceGUID(767905144); public static readonly SequenceGUID SEQ_Shared_Throw_82 = new SequenceGUID(581619046); public static readonly SequenceGUID SEQ_Shared_Throw_83 = new SequenceGUID(331744426); public static readonly SequenceGUID SEQ_Shared_Throw_84 = new SequenceGUID(1301895560); public static readonly SequenceGUID SEQ_Shared_TargetArea_53 = new SequenceGUID(1390142273); public static readonly SequenceGUID SEQ_Shared_Throw_85 = new SequenceGUID(-379606367); public static readonly SequenceGUID SEQ_Shared_Throw_86 = new SequenceGUID(386315368); public static readonly SequenceGUID SEQ_Shared_TargetArea_54 = new SequenceGUID(-376887580); public static readonly SequenceGUID SEQ_Shared_TargetArea_55 = new SequenceGUID(1067861247); public static readonly SequenceGUID SEQ_Shared_Travel_74 = new SequenceGUID(-569660023); public static readonly SequenceGUID SEQ_Shared_Travel_75 = new SequenceGUID(103879267); public static readonly SequenceGUID SEQ_Shared_Travel_76 = new SequenceGUID(431141443); public static readonly SequenceGUID SEQ_Shared_Throw_87 = new SequenceGUID(1535159730); public static readonly SequenceGUID SEQ_Shared_TargetArea_56 = new SequenceGUID(-1814434764); public static readonly SequenceGUID SEQ_Shared_TargetArea_57 = new SequenceGUID(-1553257499); public static readonly SequenceGUID SEQ_Shared_Travel_77 = new SequenceGUID(1923307626); public static readonly SequenceGUID SEQ_Shared_Travel_78 = new SequenceGUID(-551989538); public static readonly SequenceGUID SEQ_Shared_Throw_88 = new SequenceGUID(-1418222434); public static readonly SequenceGUID SEQ_Shared_TargetArea_58 = new SequenceGUID(2011710); public static readonly SequenceGUID SEQ_Shared_Leap_34 = new SequenceGUID(1016261250); public static readonly SequenceGUID SEQ_Shared_Travel_79 = new SequenceGUID(-758544210); public static readonly SequenceGUID SEQ_Shared_Throw_89 = new SequenceGUID(1282544321); public static readonly SequenceGUID SEQ_Shared_Leap_35 = new SequenceGUID(182797108); public static readonly SequenceGUID SEQ_Shared_Throw_90 = new SequenceGUID(1601819540); public static readonly SequenceGUID SEQ_Shared_TargetArea_59 = new SequenceGUID(480112127); public static readonly SequenceGUID SEQ_Shared_Leap_36 = new SequenceGUID(-599577746); public static readonly SequenceGUID SEQ_Shared_Throw_91 = new SequenceGUID(1313550574); public static readonly SequenceGUID SEQ_Shared_Travel_80 = new SequenceGUID(-1841114834); public static readonly SequenceGUID SEQ_Shared_Throw_92 = new SequenceGUID(-1764208607); public static readonly SequenceGUID SEQ_Shared_Throw_93 = new SequenceGUID(874030576); public static readonly SequenceGUID SEQ_Shared_TargetArea_60 = new SequenceGUID(-899684701); public static readonly SequenceGUID SEQ_Shared_Leap_37 = new SequenceGUID(-169840319); public static readonly SequenceGUID SEQ_Shared_TargetArea_61 = new SequenceGUID(6652357); public static readonly SequenceGUID SEQ_Shared_TargetArea_62 = new SequenceGUID(-1349031342); public static readonly SequenceGUID SEQ_Shared_Travel_81 = new SequenceGUID(-305484411); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_11 = new SequenceGUID(-480106562); public static readonly SequenceGUID SEQ_Shared_Throw_94 = new SequenceGUID(-1157373433); public static readonly SequenceGUID SEQ_Shared_Throw_95 = new SequenceGUID(-1918138835); public static readonly SequenceGUID SEQ_Shared_TargetArea_63 = new SequenceGUID(857702110); public static readonly SequenceGUID SEQ_Dracula_EtherialSword_Throw_2 = new SequenceGUID(-154270194); public static readonly SequenceGUID SEQ_Shared_Throw_96 = new SequenceGUID(444638909); public static readonly SequenceGUID SEQ_Shared_ThrowFromAir_12 = new SequenceGUID(-141658823); public static readonly SequenceGUID SEQ_Shared_ThrowIntoAir_7 = new SequenceGUID(11272296); public static readonly SequenceGUID SEQ_Shared_TargetArea_64 = new SequenceGUID(669839259); public static readonly SequenceGUID SEQ_Aim_Line_CrossProjectiles2 = new SequenceGUID(1171815061); public static readonly SequenceGUID SEQ_Aim_Cone = new SequenceGUID(-432846973); public static readonly SequenceGUID SEQ_Aim_Dash = new SequenceGUID(-1591007313); public static readonly SequenceGUID SEQ_Aim_Circle_Counter = new SequenceGUID(-561257184); public static readonly SequenceGUID SEQ_Aim_Line_Narrow = new SequenceGUID(-185045081); public static readonly SequenceGUID SEQ_Aim_Line = new SequenceGUID(1647960385); public static readonly SequenceGUID SEQ_Aim_Cone_GreatswordLeapAttack = new SequenceGUID(-1050128313); public static readonly SequenceGUID SEQ_Aim_Circle = new SequenceGUID(-209993058); public static readonly SequenceGUID SEQ_Aim_Line_Circle = new SequenceGUID(-1445261184); public static readonly SequenceGUID SEQ_Vampire_Cliff_Jump = new SequenceGUID(-250413037); public static readonly SequenceGUID SEQ_Aim_Arc = new SequenceGUID(774513241); public static readonly SequenceGUID SEQ_Aim_Quad = new SequenceGUID(786845989); public static readonly SequenceGUID SEQ_Aim_Circle_1 = new SequenceGUID(-2098215489); public static readonly SequenceGUID SEQ_Aim_Rectangle = new SequenceGUID(673728001); public static readonly SequenceGUID SEQ_Aim_Circle_TargetBuff = new SequenceGUID(-1715250230); public static readonly SequenceGUID SEQ_Aim_Line_Narrow_1 = new SequenceGUID(250690388); public static readonly SequenceGUID SEQ_Aim_Line_CurvedThrow = new SequenceGUID(117745627); public static readonly SequenceGUID SEQ_Aim_Circle_CurvedThrow = new SequenceGUID(1842344352); public static readonly SequenceGUID SEQ_Aim_Line_1 = new SequenceGUID(-1150644444); public static readonly SequenceGUID SEQ_Aim_Cone_DirectionalShield = new SequenceGUID(94865519); public static readonly SequenceGUID SEQ_Aim_Circle_2 = new SequenceGUID(1484396183); public static readonly SequenceGUID SEQ_Aim_Line_NoHead = new SequenceGUID(225473254); public static readonly SequenceGUID SEQ_Mount_Horse_Jump = new SequenceGUID(1715324693); public static readonly SequenceGUID SEQ_Aim_Circle_3 = new SequenceGUID(-209993058); public static readonly SequenceGUID SEQ_Shared_Buff_714 = new SequenceGUID(788133272); public static readonly SequenceGUID SEQ_Shared_Buff_715 = new SequenceGUID(194374756); public static readonly SequenceGUID SEQ_Shared_Buff_716 = new SequenceGUID(-971641756); public static readonly SequenceGUID SEQ_Shared_Buff_717 = new SequenceGUID(-912751887); public static readonly SequenceGUID SEQ_Shared_Buff_718 = new SequenceGUID(805561297); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_2 = new SequenceGUID(-799560108); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_3 = new SequenceGUID(497053046); public static readonly SequenceGUID SEQ_Shared_Buff_719 = new SequenceGUID(1825855756); public static readonly SequenceGUID SEQ_Shared_Buff_720 = new SequenceGUID(793472448); public static readonly SequenceGUID SEQ_Shared_Buff_721 = new SequenceGUID(568233701); public static readonly SequenceGUID SEQ_Shared_Buff_722 = new SequenceGUID(-14695491); public static readonly SequenceGUID SEQ_Shared_Buff_723 = new SequenceGUID(2072442414); public static readonly SequenceGUID SEQ_Shared_Buff_724 = new SequenceGUID(-1453444470); public static readonly SequenceGUID SEQ_Shared_Buff_725 = new SequenceGUID(1701194996); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_4 = new SequenceGUID(-1997905482); public static readonly SequenceGUID SEQ_Shared_Buff_726 = new SequenceGUID(1296310414); public static readonly SequenceGUID SEQ_Shared_Buff_727 = new SequenceGUID(654592251); public static readonly SequenceGUID SEQ_Shared_Buff_728 = new SequenceGUID(1442811570); public static readonly SequenceGUID SEQ_Shared_Buff_729 = new SequenceGUID(1934840382); public static readonly SequenceGUID SEQ_Shared_Buff_730 = new SequenceGUID(-723832325); public static readonly SequenceGUID SEQ_Shared_Buff_731 = new SequenceGUID(-1069163628); public static readonly SequenceGUID SEQ_Shared_Buff_732 = new SequenceGUID(2051787328); public static readonly SequenceGUID SEQ_Shared_Buff_733 = new SequenceGUID(-220619878); public static readonly SequenceGUID SEQ_Shared_Buff_734 = new SequenceGUID(-1994503299); public static readonly SequenceGUID SEQ_Shared_Buff_735 = new SequenceGUID(246092504); public static readonly SequenceGUID SEQ_Shared_Buff_736 = new SequenceGUID(-571063229); public static readonly SequenceGUID SEQ_Shared_Buff_737 = new SequenceGUID(73179577); public static readonly SequenceGUID SEQ_Shared_Buff_738 = new SequenceGUID(-833021411); public static readonly SequenceGUID SEQ_Shared_Buff_739 = new SequenceGUID(2017830009); public static readonly SequenceGUID SEQ_Shared_Buff_740 = new SequenceGUID(-525641142); public static readonly SequenceGUID SEQ_Shared_Buff_741 = new SequenceGUID(1175841892); public static readonly SequenceGUID SEQ_Shared_Buff_742 = new SequenceGUID(501841911); public static readonly SequenceGUID SEQ_Shared_Buff_743 = new SequenceGUID(964527701); public static readonly SequenceGUID SEQ_Shared_Buff_744 = new SequenceGUID(1436938448); public static readonly SequenceGUID SEQ_Shared_Buff_745 = new SequenceGUID(454523856); public static readonly SequenceGUID SEQ_Visual_DoubleMaterial_1 = new SequenceGUID(-518490761); public static readonly SequenceGUID SEQ_Shared_Buff_746 = new SequenceGUID(1132128847); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_5 = new SequenceGUID(2127821750); public static readonly SequenceGUID SEQ_Shared_Buff_747 = new SequenceGUID(2097428419); public static readonly SequenceGUID SEQ_Shared_Buff_748 = new SequenceGUID(1634437354); public static readonly SequenceGUID SEQ_Shared_Buff_749 = new SequenceGUID(-1880731282); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_6 = new SequenceGUID(-21015626); public static readonly SequenceGUID SEQ_Shared_Buff_750 = new SequenceGUID(-257427053); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_7 = new SequenceGUID(-1573961432); public static readonly SequenceGUID SEQ_Shared_Buff_751 = new SequenceGUID(904639729); public static readonly SequenceGUID SEQ_Shared_Buff_752 = new SequenceGUID(-393875103); public static readonly SequenceGUID SEQ_Shared_Buff_753 = new SequenceGUID(-2016595958); public static readonly SequenceGUID SEQ_Shared_Buff_754 = new SequenceGUID(1024147411); public static readonly SequenceGUID SEQ_Shared_Buff_755 = new SequenceGUID(1441485742); public static readonly SequenceGUID SEQ_Shared_Buff_756 = new SequenceGUID(-93394336); public static readonly SequenceGUID SEQ_Shared_Buff_757 = new SequenceGUID(314703907); public static readonly SequenceGUID SEQ_Shared_Vampire_Wounded_2 = new SequenceGUID(-392965786); public static readonly SequenceGUID SEQ_Shared_Buff_758 = new SequenceGUID(848535622); public static readonly SequenceGUID SEQ_Shared_Buff_759 = new SequenceGUID(811061213); public static readonly SequenceGUID SEQ_Shared_Buff_760 = new SequenceGUID(1343459536); public static readonly SequenceGUID SEQ_Shared_Buff_761 = new SequenceGUID(992186245); public static readonly SequenceGUID SEQ_Shared_Buff_762 = new SequenceGUID(1411020990); public static readonly SequenceGUID SEQ_Shared_Buff_763 = new SequenceGUID(1267145775); public static readonly SequenceGUID SEQ_Shared_Buff_764 = new SequenceGUID(-1509061157); public static readonly SequenceGUID SEQ_Shared_Buff_765 = new SequenceGUID(1271922764); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_8 = new SequenceGUID(992071755); public static readonly SequenceGUID SEQ_Shared_Buff_766 = new SequenceGUID(-1125105782); public static readonly SequenceGUID SEQ_Shared_Buff_767 = new SequenceGUID(1755999096); public static readonly SequenceGUID SEQ_Shared_Buff_768 = new SequenceGUID(1649229104); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_1 = new SequenceGUID(815897770); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_9 = new SequenceGUID(-1629525495); public static readonly SequenceGUID SEQ_Shared_Buff_769 = new SequenceGUID(-1238573431); public static readonly SequenceGUID SEQ_Shared_Buff_770 = new SequenceGUID(-1865525559); public static readonly SequenceGUID SEQ_Shared_Buff_771 = new SequenceGUID(-77009866); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_10 = new SequenceGUID(-2025367531); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_11 = new SequenceGUID(2132381350); public static readonly SequenceGUID SEQ_Shared_Buff_772 = new SequenceGUID(-1542065154); public static readonly SequenceGUID SEQ_Shared_Buff_773 = new SequenceGUID(-1107502000); public static readonly SequenceGUID SEQ_Shared_Buff_774 = new SequenceGUID(1790635201); public static readonly SequenceGUID SEQ_Shared_Buff_775 = new SequenceGUID(-1012338904); public static readonly SequenceGUID SEQ_Shared_Buff_776 = new SequenceGUID(2013890846); public static readonly SequenceGUID SEQ_Shared_Buff_777 = new SequenceGUID(-731969650); public static readonly SequenceGUID SEQ_Shared_Buff_778 = new SequenceGUID(-1222478136); public static readonly SequenceGUID SEQ_Shared_Buff_779 = new SequenceGUID(-1060672429); public static readonly SequenceGUID SEQ_Shared_Buff_780 = new SequenceGUID(-1284432910); public static readonly SequenceGUID SEQ_Shared_Buff_781 = new SequenceGUID(-1527341868); public static readonly SequenceGUID SEQ_Shared_Buff_782 = new SequenceGUID(1602565217); public static readonly SequenceGUID SEQ_Shared_Buff_783 = new SequenceGUID(-1948901796); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_12 = new SequenceGUID(-917666632); public static readonly SequenceGUID SEQ_Shared_Buff_784 = new SequenceGUID(288246015); public static readonly SequenceGUID SEQ_Shared_Buff_785 = new SequenceGUID(-1504825288); public static readonly SequenceGUID SEQ_Shared_Buff_786 = new SequenceGUID(-245433912); public static readonly SequenceGUID SEQ_Shared_Buff_787 = new SequenceGUID(-2022718879); public static readonly SequenceGUID SEQ_Shared_Buff_788 = new SequenceGUID(1179241274); public static readonly SequenceGUID SEQ_Shared_Buff_789 = new SequenceGUID(2063444476); public static readonly SequenceGUID SEQ_Shared_Buff_790 = new SequenceGUID(-1669584691); public static readonly SequenceGUID SEQ_Shared_Buff_791 = new SequenceGUID(101419593); public static readonly SequenceGUID SEQ_Shared_Buff_792 = new SequenceGUID(-1164792738); public static readonly SequenceGUID SEQ_Shared_Buff_793 = new SequenceGUID(1743407406); public static readonly SequenceGUID SEQ_Shared_Buff_794 = new SequenceGUID(1902683533); public static readonly SequenceGUID SEQ_Shared_Buff_795 = new SequenceGUID(5382930); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_13 = new SequenceGUID(-690817738); public static readonly SequenceGUID SEQ_Shared_Buff_796 = new SequenceGUID(443627523); public static readonly SequenceGUID SEQ_Shared_Buff_797 = new SequenceGUID(1846842202); public static readonly SequenceGUID SEQ_Shared_Buff_798 = new SequenceGUID(1274333752); public static readonly SequenceGUID SEQ_Shared_Buff_799 = new SequenceGUID(415640907); public static readonly SequenceGUID SEQ_Shared_Buff_800 = new SequenceGUID(-1935078653); public static readonly SequenceGUID SEQ_Shared_Buff_801 = new SequenceGUID(1971323098); public static readonly SequenceGUID SEQ_Shared_Buff_802 = new SequenceGUID(-1245360117); public static readonly SequenceGUID SEQ_Shared_Buff_803 = new SequenceGUID(1987672995); public static readonly SequenceGUID SEQ_Shared_Buff_804 = new SequenceGUID(323220230); public static readonly SequenceGUID SEQ_Shared_Buff_805 = new SequenceGUID(-1458619814); public static readonly SequenceGUID SEQ_Shared_Buff_806 = new SequenceGUID(692334907); public static readonly SequenceGUID SEQ_Shared_Buff_807 = new SequenceGUID(201819439); public static readonly SequenceGUID SEQ_Shared_Buff_808 = new SequenceGUID(2042741328); public static readonly SequenceGUID SEQ_Shared_Buff_809 = new SequenceGUID(1221706814); public static readonly SequenceGUID SEQ_Shared_Buff_810 = new SequenceGUID(1105039835); public static readonly SequenceGUID SEQ_Shared_Buff_811 = new SequenceGUID(41198530); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_14 = new SequenceGUID(704094339); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_2 = new SequenceGUID(-384318226); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_15 = new SequenceGUID(-1022573366); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_16 = new SequenceGUID(-351202594); public static readonly SequenceGUID SEQ_Shared_Buff_812 = new SequenceGUID(-304787111); public static readonly SequenceGUID SEQ_Shared_Buff_813 = new SequenceGUID(1211238571); public static readonly SequenceGUID SEQ_Shared_Buff_814 = new SequenceGUID(1806339233); public static readonly SequenceGUID SEQ_Shared_Buff_815 = new SequenceGUID(608152398); public static readonly SequenceGUID SEQ_Shared_Buff_816 = new SequenceGUID(2059639509); public static readonly SequenceGUID SEQ_Shared_Buff_817 = new SequenceGUID(1941956260); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_3 = new SequenceGUID(1344147963); public static readonly SequenceGUID SEQ_Shared_Buff_818 = new SequenceGUID(-763325948); public static readonly SequenceGUID SEQ_Shared_Buff_819 = new SequenceGUID(-1934161550); public static readonly SequenceGUID SEQ_Shared_Buff_820 = new SequenceGUID(522366177); public static readonly SequenceGUID SEQ_Shared_Buff_821 = new SequenceGUID(-638884877); public static readonly SequenceGUID SEQ_Shared_Buff_822 = new SequenceGUID(787769271); public static readonly SequenceGUID SEQ_Shared_Buff_823 = new SequenceGUID(1939782948); public static readonly SequenceGUID SEQ_Shared_Buff_824 = new SequenceGUID(-1302319987); public static readonly SequenceGUID SEQ_Shared_Buff_825 = new SequenceGUID(-1710836405); public static readonly SequenceGUID SEQ_Shared_Buff_826 = new SequenceGUID(281205657); public static readonly SequenceGUID SEQ_Shared_Buff_827 = new SequenceGUID(604067743); public static readonly SequenceGUID SEQ_Shared_Buff_828 = new SequenceGUID(280953999); public static readonly SequenceGUID SEQ_Shared_Buff_829 = new SequenceGUID(82649927); public static readonly SequenceGUID SEQ_Shared_Buff_830 = new SequenceGUID(-1324279745); public static readonly SequenceGUID SEQ_Shared_Buff_831 = new SequenceGUID(-2133951226); public static readonly SequenceGUID SEQ_Shared_Buff_832 = new SequenceGUID(841414566); public static readonly SequenceGUID SEQ_Shared_Buff_833 = new SequenceGUID(1340015982); public static readonly SequenceGUID SEQ_Shared_Buff_834 = new SequenceGUID(-222877188); public static readonly SequenceGUID SEQ_Shared_Buff_835 = new SequenceGUID(45753906); public static readonly SequenceGUID SEQ_Shared_Buff_836 = new SequenceGUID(1074406831); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_4 = new SequenceGUID(-1457437722); public static readonly SequenceGUID SEQ_Shared_Buff_837 = new SequenceGUID(718009841); public static readonly SequenceGUID SEQ_Shared_Buff_838 = new SequenceGUID(488802764); public static readonly SequenceGUID SEQ_Shared_Buff_839 = new SequenceGUID(1295984304); public static readonly SequenceGUID SEQ_Shared_Buff_840 = new SequenceGUID(1450215533); public static readonly SequenceGUID SEQ_Shared_Buff_841 = new SequenceGUID(1839487075); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_33 = new SequenceGUID(34528551); public static readonly SequenceGUID SEQ_Shared_Buff_842 = new SequenceGUID(1664725197); public static readonly SequenceGUID SEQ_Shared_Buff_843 = new SequenceGUID(41685093); public static readonly SequenceGUID SEQ_Shared_Buff_844 = new SequenceGUID(-1269678766); public static readonly SequenceGUID SEQ_Shared_Buff_845 = new SequenceGUID(-580196539); public static readonly SequenceGUID SEQ_Shared_Buff_846 = new SequenceGUID(74443558); public static readonly SequenceGUID SEQ_Shared_Buff_847 = new SequenceGUID(-52129040); public static readonly SequenceGUID SEQ_Shared_Buff_848 = new SequenceGUID(1421502258); public static readonly SequenceGUID SEQ_Shared_Buff_849 = new SequenceGUID(2069814132); public static readonly SequenceGUID SEQ_Shared_Buff_850 = new SequenceGUID(-477347252); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_17 = new SequenceGUID(2130281422); public static readonly SequenceGUID SEQ_Shared_Buff_851 = new SequenceGUID(-1053646095); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_34 = new SequenceGUID(1684327748); public static readonly SequenceGUID SEQ_Shared_Buff_852 = new SequenceGUID(378694394); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_18 = new SequenceGUID(87384521); public static readonly SequenceGUID SEQ_Shared_Buff_853 = new SequenceGUID(315476397); public static readonly SequenceGUID SEQ_Shared_Buff_854 = new SequenceGUID(241016455); public static readonly SequenceGUID SEQ_Shared_Buff_855 = new SequenceGUID(1786153175); public static readonly SequenceGUID SEQ_Shared_Buff_856 = new SequenceGUID(-420743946); public static readonly SequenceGUID SEQ_Shared_Buff_857 = new SequenceGUID(-1437771621); public static readonly SequenceGUID SEQ_Shared_Buff_Simple_LEGACY_4 = new SequenceGUID(-1168797364); public static readonly SequenceGUID SEQ_Shared_Buff_858 = new SequenceGUID(-1371215668); public static readonly SequenceGUID SEQ_Shared_Buff_859 = new SequenceGUID(614748750); public static readonly SequenceGUID SEQ_Shared_Buff_860 = new SequenceGUID(675568159); public static readonly SequenceGUID SEQ_Shared_Buff_861 = new SequenceGUID(392593601); public static readonly SequenceGUID SEQ_Shared_Buff_862 = new SequenceGUID(-2055124607); public static readonly SequenceGUID SEQ_Shared_Buff_863 = new SequenceGUID(1395999555); public static readonly SequenceGUID SEQ_Shared_Buff_864 = new SequenceGUID(-1435347575); public static readonly SequenceGUID SEQ_Shared_Buff_865 = new SequenceGUID(1827923049); public static readonly SequenceGUID SEQ_Shared_Buff_866 = new SequenceGUID(892272919); public static readonly SequenceGUID SEQ_Shared_Buff_867 = new SequenceGUID(-1018675718); public static readonly SequenceGUID SEQ_Shared_Buff_868 = new SequenceGUID(673260503); public static readonly SequenceGUID SEQ_Shared_Buff_869 = new SequenceGUID(-1754779300); public static readonly SequenceGUID SEQ_Shared_Buff_870 = new SequenceGUID(1712460925); public static readonly SequenceGUID SEQ_Shared_Buff_871 = new SequenceGUID(-1616808271); public static readonly SequenceGUID SEQ_Shared_Buff_872 = new SequenceGUID(-1979069156); public static readonly SequenceGUID SEQ_Shared_Buff_873 = new SequenceGUID(-1794190966); public static readonly SequenceGUID SEQ_Shared_Buff_874 = new SequenceGUID(-722722692); public static readonly SequenceGUID SEQ_Shared_Buff_Simple_LEGACY_5 = new SequenceGUID(-394395367); public static readonly SequenceGUID SEQ_Shared_Buff_875 = new SequenceGUID(-130903905); public static readonly SequenceGUID SEQ_Shared_Buff_876 = new SequenceGUID(-923741237); public static readonly SequenceGUID SEQ_Shared_Buff_877 = new SequenceGUID(1403030992); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_9 = new SequenceGUID(1505916112); public static readonly SequenceGUID SEQ_Shared_Buff_878 = new SequenceGUID(134736413); public static readonly SequenceGUID SEQ_Shared_Buff_879 = new SequenceGUID(2007697424); public static readonly SequenceGUID SEQ_Shared_Buff_880 = new SequenceGUID(1011662380); public static readonly SequenceGUID SEQ_Shared_Buff_881 = new SequenceGUID(245547578); public static readonly SequenceGUID SEQ_Shared_Buff_882 = new SequenceGUID(-1297322678); public static readonly SequenceGUID SEQ_Shared_Buff_883 = new SequenceGUID(684570858); public static readonly SequenceGUID SEQ_Shared_Buff_884 = new SequenceGUID(-1204659707); public static readonly SequenceGUID SEQ_Shared_Buff_885 = new SequenceGUID(1611703173); public static readonly SequenceGUID SEQ_Shared_Buff_886 = new SequenceGUID(1225262840); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_19 = new SequenceGUID(1944377218); public static readonly SequenceGUID SEQ_Shared_Buff_887 = new SequenceGUID(-405005289); public static readonly SequenceGUID SEQ_Shared_Buff_888 = new SequenceGUID(891019520); public static readonly SequenceGUID SEQ_Shared_Buff_889 = new SequenceGUID(50394910); public static readonly SequenceGUID SEQ_Shared_Buff_890 = new SequenceGUID(21874947); public static readonly SequenceGUID SEQ_Shared_Buff_891 = new SequenceGUID(-888637906); public static readonly SequenceGUID SEQ_Shared_Buff_892 = new SequenceGUID(-1081110411); public static readonly SequenceGUID SEQ_Shared_Buff_893 = new SequenceGUID(-980100516); public static readonly SequenceGUID SEQ_Shared_Buff_894 = new SequenceGUID(2088261347); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_20 = new SequenceGUID(1878470515); public static readonly SequenceGUID SEQ_Shared_Buff_895 = new SequenceGUID(-660671872); public static readonly SequenceGUID SEQ_Shared_Buff_896 = new SequenceGUID(249421359); public static readonly SequenceGUID SEQ_Shared_Buff_897 = new SequenceGUID(27004685); public static readonly SequenceGUID SEQ_Shared_Buff_898 = new SequenceGUID(1963774870); public static readonly SequenceGUID SEQ_Shared_Buff_899 = new SequenceGUID(1426703799); public static readonly SequenceGUID SEQ_Shared_Buff_900 = new SequenceGUID(818819842); public static readonly SequenceGUID SEQ_Shared_Buff_901 = new SequenceGUID(1692147699); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_21 = new SequenceGUID(882743510); public static readonly SequenceGUID SEQ_Shared_Buff_902 = new SequenceGUID(953753448); public static readonly SequenceGUID SEQ_Shared_Buff_903 = new SequenceGUID(-296410013); public static readonly SequenceGUID SEQ_Shared_Buff_904 = new SequenceGUID(582943626); public static readonly SequenceGUID SEQ_Shared_Buff_905 = new SequenceGUID(1029732518); public static readonly SequenceGUID SEQ_Shared_Buff_906 = new SequenceGUID(-1046435398); public static readonly SequenceGUID SEQ_Shared_Buff_907 = new SequenceGUID(-1278688926); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_5 = new SequenceGUID(-253029276); public static readonly SequenceGUID SEQ_Shared_Buff_908 = new SequenceGUID(1266159352); public static readonly SequenceGUID SEQ_Shared_Buff_909 = new SequenceGUID(1843540154); public static readonly SequenceGUID SEQ_Shared_Buff_910 = new SequenceGUID(988418231); public static readonly SequenceGUID SEQ_Shared_Buff_911 = new SequenceGUID(1271078631); public static readonly SequenceGUID SEQ_Shared_Buff_912 = new SequenceGUID(-721710598); public static readonly SequenceGUID SEQ_Shared_Buff_913 = new SequenceGUID(-412264487); public static readonly SequenceGUID SEQ_Shared_Buff_914 = new SequenceGUID(644333998); public static readonly SequenceGUID SEQ_Shared_Buff_915 = new SequenceGUID(-501834546); public static readonly SequenceGUID SEQ_Shared_Buff_916 = new SequenceGUID(599415129); public static readonly SequenceGUID SEQ_Shared_Buff_917 = new SequenceGUID(-258785231); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_22 = new SequenceGUID(-1776338918); public static readonly SequenceGUID SEQ_Shared_Buff_918 = new SequenceGUID(-1212150612); public static readonly SequenceGUID SEQ_Shared_Buff_919 = new SequenceGUID(-562828492); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_23 = new SequenceGUID(-21767034); public static readonly SequenceGUID SEQ_Shared_Buff_920 = new SequenceGUID(-762066617); public static readonly SequenceGUID SEQ_Shared_Buff_921 = new SequenceGUID(882905808); public static readonly SequenceGUID SEQ_Shared_Buff_922 = new SequenceGUID(-1793590617); public static readonly SequenceGUID SEQ_Shared_Buff_923 = new SequenceGUID(2101838093); public static readonly SequenceGUID SEQ_Shared_Buff_924 = new SequenceGUID(1397868586); public static readonly SequenceGUID SEQ_Shared_Buff_925 = new SequenceGUID(-1853075880); public static readonly SequenceGUID SEQ_Shared_Buff_926 = new SequenceGUID(-2135560207); public static readonly SequenceGUID SEQ_Shared_Buff_927 = new SequenceGUID(1508015480); public static readonly SequenceGUID SEQ_Shared_Buff_928 = new SequenceGUID(988010954); public static readonly SequenceGUID SEQ_Shared_Buff_929 = new SequenceGUID(-61643096); public static readonly SequenceGUID SEQ_Shared_Buff_930 = new SequenceGUID(-1016812944); public static readonly SequenceGUID SEQ_Shared_Buff_931 = new SequenceGUID(1038799154); public static readonly SequenceGUID SEQ_Shared_Buff_932 = new SequenceGUID(1361539007); public static readonly SequenceGUID SEQ_Shared_Buff_933 = new SequenceGUID(-1767588953); public static readonly SequenceGUID SEQ_Shared_Buff_934 = new SequenceGUID(-1674886771); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_24 = new SequenceGUID(500868118); public static readonly SequenceGUID SEQ_Shared_Buff_935 = new SequenceGUID(1097610302); public static readonly SequenceGUID SEQ_Shared_Buff_936 = new SequenceGUID(-625624379); public static readonly SequenceGUID SEQ_Shared_Buff_937 = new SequenceGUID(-1594341278); public static readonly SequenceGUID SEQ_Shared_Buff_938 = new SequenceGUID(-1695302420); public static readonly SequenceGUID SEQ_Shared_Buff_939 = new SequenceGUID(-1220290419); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_25 = new SequenceGUID(1600272246); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_10 = new SequenceGUID(-227477195); public static readonly SequenceGUID SEQ_Shared_Buff_940 = new SequenceGUID(-1591576535); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_26 = new SequenceGUID(590459974); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_27 = new SequenceGUID(-1029673610); public static readonly SequenceGUID SEQ_Shared_Buff_941 = new SequenceGUID(-102441666); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_28 = new SequenceGUID(1637368558); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_35 = new SequenceGUID(-1404825009); public static readonly SequenceGUID SEQ_Shared_Buff_942 = new SequenceGUID(1517832549); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_29 = new SequenceGUID(-294228682); public static readonly SequenceGUID SEQ_Shared_Buff_943 = new SequenceGUID(-1086671226); public static readonly SequenceGUID SEQ_Shared_Buff_944 = new SequenceGUID(-932089162); public static readonly SequenceGUID SEQ_Shared_Buff_945 = new SequenceGUID(617751304); public static readonly SequenceGUID SEQ_Shared_Buff_946 = new SequenceGUID(621990350); public static readonly SequenceGUID SEQ_Shared_Buff_947 = new SequenceGUID(416675929); public static readonly SequenceGUID SEQ_Shared_Buff_948 = new SequenceGUID(447865704); public static readonly SequenceGUID SEQ_Shared_Buff_949 = new SequenceGUID(1237326971); public static readonly SequenceGUID SEQ_Shared_Buff_950 = new SequenceGUID(-139462500); public static readonly SequenceGUID SEQ_Shared_Buff_951 = new SequenceGUID(668615566); public static readonly SequenceGUID SEQ_Shared_Buff_952 = new SequenceGUID(1125692915); public static readonly SequenceGUID SEQ_Shared_Buff_953 = new SequenceGUID(-403130086); public static readonly SequenceGUID SEQ_Shared_Buff_954 = new SequenceGUID(-1344558566); public static readonly SequenceGUID SEQ_Shared_Buff_955 = new SequenceGUID(-1277726283); public static readonly SequenceGUID SEQ_Shared_Buff_956 = new SequenceGUID(-337529954); public static readonly SequenceGUID SEQ_Shared_Buff_957 = new SequenceGUID(1614550157); public static readonly SequenceGUID SEQ_Shared_Buff_958 = new SequenceGUID(926530266); public static readonly SequenceGUID SEQ_Shared_Buff_959 = new SequenceGUID(-1011882087); public static readonly SequenceGUID SEQ_Shared_Buff_960 = new SequenceGUID(-2100188431); public static readonly SequenceGUID SEQ_Shared_Buff_961 = new SequenceGUID(-988191218); public static readonly SequenceGUID SEQ_Shared_Buff_962 = new SequenceGUID(-1182580527); public static readonly SequenceGUID SEQ_Shared_Buff_963 = new SequenceGUID(970148236); public static readonly SequenceGUID SEQ_Shared_Buff_964 = new SequenceGUID(2053512434); public static readonly SequenceGUID SEQ_Shared_Buff_965 = new SequenceGUID(158416100); public static readonly SequenceGUID SEQ_Shared_Buff_966 = new SequenceGUID(730187135); public static readonly SequenceGUID SEQ_Shared_Buff_967 = new SequenceGUID(538397504); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_30 = new SequenceGUID(841019794); public static readonly SequenceGUID SEQ_Shared_Buff_968 = new SequenceGUID(-1237129738); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_11 = new SequenceGUID(-1464142112); public static readonly SequenceGUID SEQ_Shared_Buff_969 = new SequenceGUID(6770140); public static readonly SequenceGUID SEQ_Shared_Buff_970 = new SequenceGUID(499852069); public static readonly SequenceGUID SEQ_Shared_Buff_971 = new SequenceGUID(-1931360126); public static readonly SequenceGUID SEQ_Shared_Buff_972 = new SequenceGUID(1816318940); public static readonly SequenceGUID SEQ_Shared_Buff_973 = new SequenceGUID(-851774584); public static readonly SequenceGUID SEQ_Shared_Buff_974 = new SequenceGUID(1842725024); public static readonly SequenceGUID SEQ_Shared_Buff_975 = new SequenceGUID(-1518721974); public static readonly SequenceGUID SEQ_Shared_Buff_976 = new SequenceGUID(562212662); public static readonly SequenceGUID SEQ_Shared_Buff_977 = new SequenceGUID(730680856); public static readonly SequenceGUID SEQ_Shared_Buff_978 = new SequenceGUID(740313459); public static readonly SequenceGUID SEQ_Shared_Buff_979 = new SequenceGUID(-1462398302); public static readonly SequenceGUID SEQ_Shared_Buff_980 = new SequenceGUID(-829397219); public static readonly SequenceGUID SEQ_Shared_Buff_981 = new SequenceGUID(-262186033); public static readonly SequenceGUID SEQ_Shared_Buff_982 = new SequenceGUID(-803802849); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_31 = new SequenceGUID(503344502); public static readonly SequenceGUID SEQ_Shared_Buff_983 = new SequenceGUID(-1488107135); public static readonly SequenceGUID SEQ_Shared_Buff_984 = new SequenceGUID(679771092); public static readonly SequenceGUID SEQ_Shared_Buff_985 = new SequenceGUID(2032299398); public static readonly SequenceGUID SEQ_Shared_Buff_986 = new SequenceGUID(-479016080); public static readonly SequenceGUID SEQ_Shared_Buff_987 = new SequenceGUID(133231993); public static readonly SequenceGUID SEQ_Shared_Buff_988 = new SequenceGUID(251842629); public static readonly SequenceGUID SEQ_Shared_Buff_989 = new SequenceGUID(-157143947); public static readonly SequenceGUID SEQ_Shared_Buff_990 = new SequenceGUID(512019525); public static readonly SequenceGUID SEQ_Shared_Buff_991 = new SequenceGUID(-1447160418); public static readonly SequenceGUID SEQ_Shared_Buff_992 = new SequenceGUID(1159005088); public static readonly SequenceGUID SEQ_Shared_Buff_993 = new SequenceGUID(1537672849); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_32 = new SequenceGUID(-1276466468); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_33 = new SequenceGUID(1081331547); public static readonly SequenceGUID SEQ_Shared_Buff_994 = new SequenceGUID(-656781634); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_34 = new SequenceGUID(-1689867194); public static readonly SequenceGUID SEQ_Shared_Buff_995 = new SequenceGUID(-1482081827); public static readonly SequenceGUID SEQ_Shared_Buff_996 = new SequenceGUID(-425479819); public static readonly SequenceGUID SEQ_Shared_Buff_997 = new SequenceGUID(-1638336177); public static readonly SequenceGUID SEQ_Shared_Buff_998 = new SequenceGUID(1558016936); public static readonly SequenceGUID SEQ_Shared_Buff_999 = new SequenceGUID(1832317051); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_6 = new SequenceGUID(447387313); public static readonly SequenceGUID SEQ_Shared_Buff_1000 = new SequenceGUID(1696795438); public static readonly SequenceGUID SEQ_Shared_Buff_1001 = new SequenceGUID(827844071); public static readonly SequenceGUID SEQ_Shared_Buff_1002 = new SequenceGUID(-986449621); public static readonly SequenceGUID SEQ_Shared_Buff_1003 = new SequenceGUID(-1786677081); public static readonly SequenceGUID SEQ_Shared_Buff_1004 = new SequenceGUID(1429388747); public static readonly SequenceGUID SEQ_Shared_Buff_1005 = new SequenceGUID(2108975386); public static readonly SequenceGUID SEQ_Shared_Buff_1006 = new SequenceGUID(2047109175); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_35 = new SequenceGUID(643248850); public static readonly SequenceGUID SEQ_Shared_Buff_1007 = new SequenceGUID(-1239711029); public static readonly SequenceGUID SEQ_Shared_Buff_1008 = new SequenceGUID(1789397380); public static readonly SequenceGUID SEQ_Shared_Buff_1009 = new SequenceGUID(366351747); public static readonly SequenceGUID SEQ_Shared_Buff_1010 = new SequenceGUID(1087707803); public static readonly SequenceGUID SEQ_Shared_Buff_1011 = new SequenceGUID(1969715540); public static readonly SequenceGUID SEQ_Shared_Buff_1012 = new SequenceGUID(-64505487); public static readonly SequenceGUID SEQ_Shared_Buff_1013 = new SequenceGUID(1681784795); public static readonly SequenceGUID SEQ_Shared_Buff_1014 = new SequenceGUID(1195356796); public static readonly SequenceGUID SEQ_Shared_Buff_1015 = new SequenceGUID(1951151884); public static readonly SequenceGUID SEQ_Shared_Buff_1016 = new SequenceGUID(-1612061436); public static readonly SequenceGUID SEQ_Shared_Buff_1017 = new SequenceGUID(-674286298); public static readonly SequenceGUID SEQ_Shared_Buff_1018 = new SequenceGUID(185631241); public static readonly SequenceGUID SEQ_Shared_Buff_1019 = new SequenceGUID(-115285263); public static readonly SequenceGUID SEQ_Shared_Buff_1020 = new SequenceGUID(1738206485); public static readonly SequenceGUID SEQ_Shared_Buff_1021 = new SequenceGUID(1273996301); public static readonly SequenceGUID SEQ_Shared_Buff_1022 = new SequenceGUID(1202853991); public static readonly SequenceGUID SEQ_Shared_Buff_1023 = new SequenceGUID(-507515997); public static readonly SequenceGUID SEQ_Shared_Buff_1024 = new SequenceGUID(-898998781); public static readonly SequenceGUID SEQ_Shared_Buff_1025 = new SequenceGUID(1677449163); public static readonly SequenceGUID SEQ_Shared_Buff_1026 = new SequenceGUID(1804106501); public static readonly SequenceGUID SEQ_Shared_Buff_1027 = new SequenceGUID(-449577417); public static readonly SequenceGUID SEQ_Shared_Buff_1028 = new SequenceGUID(-1662268455); public static readonly SequenceGUID SEQ_Shared_Buff_1029 = new SequenceGUID(1553528549); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_12 = new SequenceGUID(153758706); public static readonly SequenceGUID SEQ_Shared_Buff_1030 = new SequenceGUID(1862698418); public static readonly SequenceGUID SEQ_Shared_Buff_1031 = new SequenceGUID(-90077662); public static readonly SequenceGUID SEQ_Shared_Buff_1032 = new SequenceGUID(2031166476); public static readonly SequenceGUID SEQ_Shared_Buff_1033 = new SequenceGUID(-635023302); public static readonly SequenceGUID SEQ_Shared_Buff_1034 = new SequenceGUID(1584949115); public static readonly SequenceGUID SEQ_Shared_Buff_1035 = new SequenceGUID(-2008859877); public static readonly SequenceGUID SEQ_Shared_Buff_1036 = new SequenceGUID(2021445091); public static readonly SequenceGUID SEQ_Shared_Buff_1037 = new SequenceGUID(868835423); public static readonly SequenceGUID SEQ_Shared_Buff_1038 = new SequenceGUID(261974185); public static readonly SequenceGUID SEQ_Shared_Buff_1039 = new SequenceGUID(328101931); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_36 = new SequenceGUID(-551310954); public static readonly SequenceGUID SEQ_Shared_Buff_1040 = new SequenceGUID(248233522); public static readonly SequenceGUID SEQ_Shared_Buff_1041 = new SequenceGUID(-90489613); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_7 = new SequenceGUID(1220611609); public static readonly SequenceGUID SEQ_Shared_Buff_1042 = new SequenceGUID(1946170880); public static readonly SequenceGUID SEQ_Shared_Buff_1043 = new SequenceGUID(-1166163130); public static readonly SequenceGUID SEQ_Shared_Buff_1044 = new SequenceGUID(-1690016477); public static readonly SequenceGUID SEQ_Shared_Buff_1045 = new SequenceGUID(-942332242); public static readonly SequenceGUID SEQ_Shared_Buff_1046 = new SequenceGUID(1396576163); public static readonly SequenceGUID SEQ_Shared_Buff_1047 = new SequenceGUID(-642549619); public static readonly SequenceGUID SEQ_Shared_Buff_1048 = new SequenceGUID(-440283627); public static readonly SequenceGUID SEQ_Shared_Buff_1049 = new SequenceGUID(-553273099); public static readonly SequenceGUID SEQ_Shared_Buff_1050 = new SequenceGUID(729839376); public static readonly SequenceGUID SEQ_Shared_Buff_1051 = new SequenceGUID(1567489606); public static readonly SequenceGUID SEQ_Shared_Buff_1052 = new SequenceGUID(1127643410); public static readonly SequenceGUID SEQ_Shared_Buff_1053 = new SequenceGUID(-237645342); public static readonly SequenceGUID SEQ_Shared_Buff_1054 = new SequenceGUID(-2080880815); public static readonly SequenceGUID SEQ_Shared_Buff_1055 = new SequenceGUID(-1149698240); public static readonly SequenceGUID SEQ_Shared_Buff_1056 = new SequenceGUID(-323826557); public static readonly SequenceGUID SEQ_Shared_Buff_1057 = new SequenceGUID(-705976111); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_37 = new SequenceGUID(-1231020842); public static readonly SequenceGUID SEQ_Shared_Buff_1058 = new SequenceGUID(-1337399798); public static readonly SequenceGUID SEQ_Shared_Buff_1059 = new SequenceGUID(-1976058646); public static readonly SequenceGUID SEQ_Shared_Buff_1060 = new SequenceGUID(-564502477); public static readonly SequenceGUID SEQ_Shared_Buff_1061 = new SequenceGUID(-714303206); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_38 = new SequenceGUID(920537931); public static readonly SequenceGUID SEQ_Shared_Buff_1062 = new SequenceGUID(-493773612); public static readonly SequenceGUID SEQ_Shared_Buff_1063 = new SequenceGUID(121744160); public static readonly SequenceGUID SEQ_Shared_Buff_1064 = new SequenceGUID(-1397941233); public static readonly SequenceGUID SEQ_Shared_Buff_1065 = new SequenceGUID(350878332); public static readonly SequenceGUID SEQ_Shared_Buff_1066 = new SequenceGUID(-1780042906); public static readonly SequenceGUID SEQ_Shared_Buff_1067 = new SequenceGUID(-971154663); public static readonly SequenceGUID SEQ_Shared_Buff_1068 = new SequenceGUID(-214541967); public static readonly SequenceGUID SEQ_Shared_Buff_1069 = new SequenceGUID(1052474327); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_39 = new SequenceGUID(762726402); public static readonly SequenceGUID SEQ_Shared_Buff_1070 = new SequenceGUID(-962550055); public static readonly SequenceGUID SEQ_Shared_Buff_1071 = new SequenceGUID(337820323); public static readonly SequenceGUID SEQ_Shared_Buff_1072 = new SequenceGUID(-1521085131); public static readonly SequenceGUID SEQ_Shared_Buff_1073 = new SequenceGUID(56669255); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_40 = new SequenceGUID(-1650396782); public static readonly SequenceGUID SEQ_Shared_Buff_1074 = new SequenceGUID(1201789146); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_41 = new SequenceGUID(345532973); public static readonly SequenceGUID SEQ_Shared_Buff_1075 = new SequenceGUID(-136222467); public static readonly SequenceGUID SEQ_Shared_Buff_1076 = new SequenceGUID(60459671); public static readonly SequenceGUID SEQ_Shared_Buff_1077 = new SequenceGUID(-496991686); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_42 = new SequenceGUID(1590119318); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_43 = new SequenceGUID(-724496035); public static readonly SequenceGUID SEQ_Shared_Buff_1078 = new SequenceGUID(593767377); public static readonly SequenceGUID SEQ_Shared_Buff_1079 = new SequenceGUID(-610940191); public static readonly SequenceGUID SEQ_Shared_Buff_1080 = new SequenceGUID(132105771); public static readonly SequenceGUID SEQ_Shared_Buff_1081 = new SequenceGUID(1201463726); public static readonly SequenceGUID SEQ_Shared_Buff_1082 = new SequenceGUID(567103422); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_44 = new SequenceGUID(2082760070); public static readonly SequenceGUID SEQ_Shared_Buff_1083 = new SequenceGUID(141700675); public static readonly SequenceGUID SEQ_Shared_Buff_1084 = new SequenceGUID(-141444257); public static readonly SequenceGUID SEQ_Shared_Buff_1085 = new SequenceGUID(-319063324); public static readonly SequenceGUID SEQ_Shared_Buff_1086 = new SequenceGUID(-998917923); public static readonly SequenceGUID SEQ_Curse_CurseOfTheForest = new SequenceGUID(-776791376); public static readonly SequenceGUID SEQ_Shared_Buff_1087 = new SequenceGUID(-1938202575); public static readonly SequenceGUID SEQ_Shared_Buff_1088 = new SequenceGUID(410525930); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_36 = new SequenceGUID(608075873); public static readonly SequenceGUID SEQ_Shared_Buff_1089 = new SequenceGUID(-33500055); public static readonly SequenceGUID SEQ_Shared_Buff_1090 = new SequenceGUID(-1881203293); public static readonly SequenceGUID SEQ_Shared_Buff_1091 = new SequenceGUID(514006159); public static readonly SequenceGUID SEQ_Shared_Buff_1092 = new SequenceGUID(991983090); public static readonly SequenceGUID SEQ_Shared_Buff_1093 = new SequenceGUID(968295701); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_8 = new SequenceGUID(-669082383); public static readonly SequenceGUID SEQ_Shared_Buff_1094 = new SequenceGUID(1283914892); public static readonly SequenceGUID SEQ_Shared_Buff_1095 = new SequenceGUID(-264759722); public static readonly SequenceGUID SEQ_Shared_Buff_1096 = new SequenceGUID(318258615); public static readonly SequenceGUID SEQ_Shared_Buff_1097 = new SequenceGUID(-830781672); public static readonly SequenceGUID SEQ_Shared_Buff_1098 = new SequenceGUID(-1841410209); public static readonly SequenceGUID SEQ_Shared_Buff_1099 = new SequenceGUID(145948143); public static readonly SequenceGUID SEQ_Shared_Buff_1100 = new SequenceGUID(145466938); public static readonly SequenceGUID SEQ_Shared_Buff_1101 = new SequenceGUID(1624168641); public static readonly SequenceGUID SEQ_Shared_Buff_1102 = new SequenceGUID(1255819341); public static readonly SequenceGUID SEQ_Shared_Buff_1103 = new SequenceGUID(-727868369); public static readonly SequenceGUID SEQ_Shared_SpawnAdds_4 = new SequenceGUID(-1679610405); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_45 = new SequenceGUID(1474440678); public static readonly SequenceGUID SEQ_Shared_Buff_1104 = new SequenceGUID(-244565397); public static readonly SequenceGUID SEQ_Shared_Buff_1105 = new SequenceGUID(72225634); public static readonly SequenceGUID SEQ_Shared_Buff_1106 = new SequenceGUID(2128716836); public static readonly SequenceGUID SEQ_Shared_Buff_1107 = new SequenceGUID(-2035119697); public static readonly SequenceGUID SEQ_Shared_Buff_1108 = new SequenceGUID(636598695); public static readonly SequenceGUID SEQ_Shared_Buff_1109 = new SequenceGUID(826836391); public static readonly SequenceGUID SEQ_Shared_Buff_1110 = new SequenceGUID(-1930138475); public static readonly SequenceGUID SEQ_Shared_Buff_1111 = new SequenceGUID(-1101824816); public static readonly SequenceGUID SEQ_Shared_Buff_1112 = new SequenceGUID(-1601957314); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_46 = new SequenceGUID(224353566); public static readonly SequenceGUID SEQ_Shared_Buff_1113 = new SequenceGUID(-1101244850); public static readonly SequenceGUID SEQ_Shared_Buff_1114 = new SequenceGUID(-478835256); public static readonly SequenceGUID SEQ_Shared_Buff_1115 = new SequenceGUID(2084356246); public static readonly SequenceGUID SEQ_Shared_Buff_1116 = new SequenceGUID(1706996083); public static readonly SequenceGUID SEQ_Shared_Buff_1117 = new SequenceGUID(1992040298); public static readonly SequenceGUID SEQ_Shared_Buff_1118 = new SequenceGUID(2054201218); public static readonly SequenceGUID SEQ_Shared_Buff_1119 = new SequenceGUID(-1458610796); public static readonly SequenceGUID SEQ_Shared_Buff_1120 = new SequenceGUID(1803156788); public static readonly SequenceGUID SEQ_Shared_Buff_1121 = new SequenceGUID(316423971); public static readonly SequenceGUID SEQ_Shared_Buff_1122 = new SequenceGUID(-1099162812); public static readonly SequenceGUID SEQ_Shared_Buff_1123 = new SequenceGUID(1204913465); public static readonly SequenceGUID SEQ_Shared_Buff_1124 = new SequenceGUID(488445515); public static readonly SequenceGUID SEQ_Shared_SpawnAdds_5 = new SequenceGUID(1583420999); public static readonly SequenceGUID SEQ_Shared_Buff_1125 = new SequenceGUID(-1919992643); public static readonly SequenceGUID SEQ_Shared_Buff_1126 = new SequenceGUID(1786569693); public static readonly SequenceGUID SEQ_Shared_Buff_1127 = new SequenceGUID(-989567770); public static readonly SequenceGUID SEQ_Shared_Buff_1128 = new SequenceGUID(1232580174); public static readonly SequenceGUID SEQ_Shared_Buff_1129 = new SequenceGUID(1187291476); public static readonly SequenceGUID SEQ_Shared_Buff_1130 = new SequenceGUID(334592434); public static readonly SequenceGUID SEQ_Shared_Buff_1131 = new SequenceGUID(314540267); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_47 = new SequenceGUID(-25802258); public static readonly SequenceGUID SEQ_Shared_Buff_1132 = new SequenceGUID(1718445249); public static readonly SequenceGUID SEQ_Shared_Buff_1133 = new SequenceGUID(-519112466); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_37 = new SequenceGUID(1808859720); public static readonly SequenceGUID SEQ_Shared_Buff_1134 = new SequenceGUID(-1137643990); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_48 = new SequenceGUID(38719726); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_13 = new SequenceGUID(-1463622075); public static readonly SequenceGUID SEQ_Shared_Buff_1135 = new SequenceGUID(-2107777331); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_9 = new SequenceGUID(-519750756); public static readonly SequenceGUID SEQ_Shared_Buff_1136 = new SequenceGUID(2122315138); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_10 = new SequenceGUID(679570738); public static readonly SequenceGUID SEQ_Shared_Buff_1137 = new SequenceGUID(738929827); public static readonly SequenceGUID SEQ_Shared_Buff_1138 = new SequenceGUID(-1129891899); public static readonly SequenceGUID SEQ_Shared_Buff_1139 = new SequenceGUID(-951124532); public static readonly SequenceGUID SEQ_Shared_Buff_1140 = new SequenceGUID(-923706268); public static readonly SequenceGUID SEQ_Shared_Buff_1141 = new SequenceGUID(2137585513); public static readonly SequenceGUID SEQ_Shared_Buff_1142 = new SequenceGUID(1499474317); public static readonly SequenceGUID SEQ_Shared_Buff_1143 = new SequenceGUID(344479146); public static readonly SequenceGUID SEQ_Shared_Buff_1144 = new SequenceGUID(146136335); public static readonly SequenceGUID SEQ_Shared_Buff_1145 = new SequenceGUID(-688175198); public static readonly SequenceGUID SEQ_Shared_Buff_1146 = new SequenceGUID(1658632126); public static readonly SequenceGUID SEQ_Shared_Buff_1147 = new SequenceGUID(-1659401826); public static readonly SequenceGUID SEQ_Shared_Buff_1148 = new SequenceGUID(-1013696923); public static readonly SequenceGUID SEQ_Shared_Buff_1149 = new SequenceGUID(959073526); public static readonly SequenceGUID SEQ_Shared_Buff_1150 = new SequenceGUID(1690753745); public static readonly SequenceGUID SEQ_Shared_Buff_1151 = new SequenceGUID(-310523017); public static readonly SequenceGUID SEQ_Shared_Buff_1152 = new SequenceGUID(-1379204469); public static readonly SequenceGUID SEQ_Shared_Buff_1153 = new SequenceGUID(-1009220843); public static readonly SequenceGUID SEQ_Shared_Buff_1154 = new SequenceGUID(-137709901); public static readonly SequenceGUID SEQ_Shared_Buff_1155 = new SequenceGUID(-745955468); public static readonly SequenceGUID SEQ_Shared_Buff_1156 = new SequenceGUID(475108967); public static readonly SequenceGUID SEQ_Shared_Buff_1157 = new SequenceGUID(-1917776745); public static readonly SequenceGUID SEQ_Shared_Buff_1158 = new SequenceGUID(1185434156); public static readonly SequenceGUID SEQ_Shared_Buff_1159 = new SequenceGUID(-1921796808); public static readonly SequenceGUID SEQ_Shared_Buff_1160 = new SequenceGUID(-2136432660); public static readonly SequenceGUID SEQ_Shared_Buff_1161 = new SequenceGUID(540710448); public static readonly SequenceGUID SEQ_Shared_Buff_1162 = new SequenceGUID(545331582); public static readonly SequenceGUID SEQ_Shared_Buff_1163 = new SequenceGUID(-562876751); public static readonly SequenceGUID SEQ_Shared_Buff_1164 = new SequenceGUID(-2133689620); public static readonly SequenceGUID SEQ_Shared_Buff_1165 = new SequenceGUID(1855895473); public static readonly SequenceGUID SEQ_Shared_Buff_1166 = new SequenceGUID(139627305); public static readonly SequenceGUID SEQ_Shared_Buff_1167 = new SequenceGUID(1021733469); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_49 = new SequenceGUID(156359659); public static readonly SequenceGUID SEQ_Shared_Buff_1168 = new SequenceGUID(-201173054); public static readonly SequenceGUID SEQ_Shared_Buff_1169 = new SequenceGUID(-1292788255); public static readonly SequenceGUID SEQ_Shared_Buff_1170 = new SequenceGUID(20086379); public static readonly SequenceGUID SEQ_Shared_Buff_1171 = new SequenceGUID(1391726744); public static readonly SequenceGUID SEQ_Shared_Buff_1172 = new SequenceGUID(-389499105); public static readonly SequenceGUID SEQ_Shared_Buff_1173 = new SequenceGUID(1278190605); public static readonly SequenceGUID SEQ_Shared_Buff_1174 = new SequenceGUID(-1151129870); public static readonly SequenceGUID SEQ_Shared_Buff_1175 = new SequenceGUID(1176683983); public static readonly SequenceGUID SEQ_Shared_Buff_1176 = new SequenceGUID(-36194487); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_50 = new SequenceGUID(-249672890); public static readonly SequenceGUID SEQ_Shared_Buff_1177 = new SequenceGUID(-1676342400); public static readonly SequenceGUID SEQ_Shared_Buff_1178 = new SequenceGUID(1022692224); public static readonly SequenceGUID SEQ_Shared_Buff_1179 = new SequenceGUID(-2091536271); public static readonly SequenceGUID SEQ_Shared_Buff_1180 = new SequenceGUID(-934834116); public static readonly SequenceGUID SEQ_Shared_Buff_1181 = new SequenceGUID(1174835558); public static readonly SequenceGUID SEQ_Shared_Buff_1182 = new SequenceGUID(-880059334); public static readonly SequenceGUID SEQ_Shared_Buff_1183 = new SequenceGUID(1900240160); public static readonly SequenceGUID SEQ_Shared_Buff_1184 = new SequenceGUID(-198193139); public static readonly SequenceGUID SEQ_Shared_Buff_1185 = new SequenceGUID(-782607475); public static readonly SequenceGUID SEQ_Shared_Buff_1186 = new SequenceGUID(1934885773); public static readonly SequenceGUID SEQ_Shared_Buff_1187 = new SequenceGUID(-912751886); public static readonly SequenceGUID SEQ_Shared_Buff_1188 = new SequenceGUID(-1885562623); public static readonly SequenceGUID SEQ_Shared_Buff_1189 = new SequenceGUID(-766137225); public static readonly SequenceGUID SEQ_Shared_Buff_1190 = new SequenceGUID(-1534553052); public static readonly SequenceGUID SEQ_Shared_Buff_1191 = new SequenceGUID(-807787225); public static readonly SequenceGUID SEQ_Shared_Buff_1192 = new SequenceGUID(248965608); public static readonly SequenceGUID SEQ_Shared_Buff_1193 = new SequenceGUID(1882310745); public static readonly SequenceGUID SEQ_Shared_Buff_1194 = new SequenceGUID(-1651637391); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_11 = new SequenceGUID(833827369); public static readonly SequenceGUID SEQ_Shared_Buff_1195 = new SequenceGUID(682081775); public static readonly SequenceGUID SEQ_Shared_Buff_1196 = new SequenceGUID(-1412032879); public static readonly SequenceGUID SEQ_Shared_Buff_1197 = new SequenceGUID(2043230706); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_51 = new SequenceGUID(140377254); public static readonly SequenceGUID SEQ_Shared_Buff_1198 = new SequenceGUID(-615795623); public static readonly SequenceGUID SEQ_Shared_Buff_1199 = new SequenceGUID(-1490283271); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_12 = new SequenceGUID(856566164); public static readonly SequenceGUID SEQ_Shared_Buff_1200 = new SequenceGUID(666055863); public static readonly SequenceGUID SEQ_Shared_Buff_1201 = new SequenceGUID(-920297011); public static readonly SequenceGUID SEQ_Shared_Buff_1202 = new SequenceGUID(1246326725); public static readonly SequenceGUID SEQ_Shared_Buff_1203 = new SequenceGUID(175224071); public static readonly SequenceGUID SEQ_Shared_Buff_1204 = new SequenceGUID(-1998801684); public static readonly SequenceGUID SEQ_Shared_Buff_1205 = new SequenceGUID(-1418719606); public static readonly SequenceGUID SEQ_Shared_Buff_1206 = new SequenceGUID(449667528); public static readonly SequenceGUID SEQ_Shared_Buff_1207 = new SequenceGUID(1221979236); public static readonly SequenceGUID SEQ_Shared_Buff_1208 = new SequenceGUID(1987896901); public static readonly SequenceGUID SEQ_Shared_Buff_1209 = new SequenceGUID(1206582964); public static readonly SequenceGUID SEQ_Shared_Buff_1210 = new SequenceGUID(2054462371); public static readonly SequenceGUID SEQ_Shared_Buff_1211 = new SequenceGUID(1222236249); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_52 = new SequenceGUID(662134958); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_38 = new SequenceGUID(1085182887); public static readonly SequenceGUID SEQ_Shared_Buff_1212 = new SequenceGUID(1920982259); public static readonly SequenceGUID SEQ_Shared_Buff_1213 = new SequenceGUID(-1080874772); public static readonly SequenceGUID SEQ_Shared_Buff_1214 = new SequenceGUID(760067815); public static readonly SequenceGUID SEQ_Shared_Buff_1215 = new SequenceGUID(1122007206); public static readonly SequenceGUID SEQ_Shared_Buff_1216 = new SequenceGUID(-234706234); public static readonly SequenceGUID SEQ_Shared_Buff_1217 = new SequenceGUID(-390965354); public static readonly SequenceGUID SEQ_Shared_Buff_1218 = new SequenceGUID(1903061553); public static readonly SequenceGUID SEQ_Shared_Buff_1219 = new SequenceGUID(-308666202); public static readonly SequenceGUID SEQ_Shared_Buff_1220 = new SequenceGUID(-1189842410); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_13 = new SequenceGUID(-1851223383); public static readonly SequenceGUID SEQ_Shared_Buff_1221 = new SequenceGUID(-517465433); public static readonly SequenceGUID SEQ_Shared_Buff_1222 = new SequenceGUID(1545812523); public static readonly SequenceGUID SEQ_Shared_Buff_1223 = new SequenceGUID(-660872435); public static readonly SequenceGUID SEQ_Shared_Buff_1224 = new SequenceGUID(1286549866); public static readonly SequenceGUID SEQ_Shared_Buff_1225 = new SequenceGUID(1155349266); public static readonly SequenceGUID SEQ_Shared_Buff_1226 = new SequenceGUID(-687757782); public static readonly SequenceGUID SEQ_Shared_Buff_1227 = new SequenceGUID(1134337464); public static readonly SequenceGUID SEQ_Shared_Buff_1228 = new SequenceGUID(1823379672); public static readonly SequenceGUID SEQ_Shared_Buff_1229 = new SequenceGUID(1736420407); public static readonly SequenceGUID SEQ_Shared_Buff_1230 = new SequenceGUID(-34673529); public static readonly SequenceGUID SEQ_Shared_Buff_1231 = new SequenceGUID(1781405288); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_53 = new SequenceGUID(-811226122); public static readonly SequenceGUID SEQ_Shared_Buff_1232 = new SequenceGUID(-1194118928); public static readonly SequenceGUID SEQ_Corruption_Area_Debuff = new SequenceGUID(307097943); public static readonly SequenceGUID SEQ_Shared_Buff_1233 = new SequenceGUID(-830349911); public static readonly SequenceGUID SEQ_Shared_Buff_1234 = new SequenceGUID(-1929005482); public static readonly SequenceGUID SEQ_Shared_Buff_1235 = new SequenceGUID(1081181676); public static readonly SequenceGUID SEQ_Shared_Buff_1236 = new SequenceGUID(-1728013909); public static readonly SequenceGUID SEQ_Shared_Buff_1237 = new SequenceGUID(1223852316); public static readonly SequenceGUID SEQ_Shared_Buff_1238 = new SequenceGUID(1801797465); public static readonly SequenceGUID SEQ_Shared_Buff_1239 = new SequenceGUID(-1288949232); public static readonly SequenceGUID SEQ_Shared_Buff_1240 = new SequenceGUID(-933910724); public static readonly SequenceGUID SEQ_Shared_Buff_1241 = new SequenceGUID(1761674989); public static readonly SequenceGUID SEQ_Shared_Buff_1242 = new SequenceGUID(-1676422926); public static readonly SequenceGUID SEQ_Shared_Buff_1243 = new SequenceGUID(1388536341); public static readonly SequenceGUID SEQ_Shared_Buff_1244 = new SequenceGUID(1651884891); public static readonly SequenceGUID SEQ_Shared_Buff_1245 = new SequenceGUID(933569268); public static readonly SequenceGUID SEQ_Shared_Buff_1246 = new SequenceGUID(-540894737); public static readonly SequenceGUID SEQ_Shared_Buff_1247 = new SequenceGUID(-1473016354); public static readonly SequenceGUID SEQ_Shared_Buff_1248 = new SequenceGUID(-1136321949); public static readonly SequenceGUID SEQ_Shared_Buff_1249 = new SequenceGUID(-655428011); public static readonly SequenceGUID SEQ_Shared_Buff_1250 = new SequenceGUID(1611175131); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_14 = new SequenceGUID(1187329472); public static readonly SequenceGUID SEQ_Shared_Buff_1251 = new SequenceGUID(-1093355676); public static readonly SequenceGUID SEQ_Shared_Buff_1252 = new SequenceGUID(-243489544); public static readonly SequenceGUID SEQ_Shared_Buff_1253 = new SequenceGUID(-1693317756); public static readonly SequenceGUID SEQ_Shared_Buff_1254 = new SequenceGUID(-1304667105); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_15 = new SequenceGUID(-1249967607); public static readonly SequenceGUID SEQ_Shared_Buff_1255 = new SequenceGUID(-1231160842); public static readonly SequenceGUID SEQ_Shared_Buff_1256 = new SequenceGUID(-715561670); public static readonly SequenceGUID SEQ_Shared_Buff_1257 = new SequenceGUID(548947314); public static readonly SequenceGUID SEQ_Shared_Buff_1258 = new SequenceGUID(886588705); public static readonly SequenceGUID SEQ_Shared_Buff_1259 = new SequenceGUID(-1456297920); public static readonly SequenceGUID SEQ_Shared_Buff_1260 = new SequenceGUID(-118752116); public static readonly SequenceGUID SEQ_Shared_Buff_1261 = new SequenceGUID(-813012498); public static readonly SequenceGUID SEQ_Shared_Buff_1262 = new SequenceGUID(1798510237); public static readonly SequenceGUID SEQ_Shared_Buff_1263 = new SequenceGUID(-1288859921); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_39 = new SequenceGUID(-39731605); public static readonly SequenceGUID SEQ_Shared_Buff_1264 = new SequenceGUID(706798644); public static readonly SequenceGUID SEQ_Shared_Buff_1265 = new SequenceGUID(-823033539); public static readonly SequenceGUID SEQ_Shared_Buff_1266 = new SequenceGUID(1690983089); public static readonly SequenceGUID SEQ_Shared_Buff_1267 = new SequenceGUID(194374756); public static readonly SequenceGUID SEQ_Shared_Buff_1268 = new SequenceGUID(102100068); public static readonly SequenceGUID SEQ_Shared_Buff_1269 = new SequenceGUID(-1019764130); public static readonly SequenceGUID SEQ_Shared_Buff_1270 = new SequenceGUID(-26939092); public static readonly SequenceGUID SEQ_Shared_Buff_1271 = new SequenceGUID(1785604851); public static readonly SequenceGUID SEQ_Shared_Buff_1272 = new SequenceGUID(-255013147); public static readonly SequenceGUID SEQ_Shared_Buff_1273 = new SequenceGUID(649580950); public static readonly SequenceGUID SEQ_Shared_Buff_1274 = new SequenceGUID(-837942339); public static readonly SequenceGUID SEQ_Shared_Buff_1275 = new SequenceGUID(-1678792410); public static readonly SequenceGUID SEQ_Shared_Buff_1276 = new SequenceGUID(1737901958); public static readonly SequenceGUID SEQ_Shared_Buff_1277 = new SequenceGUID(-1569554402); public static readonly SequenceGUID SEQ_Shared_Buff_1278 = new SequenceGUID(-1753224701); public static readonly SequenceGUID SEQ_Shared_Buff_1279 = new SequenceGUID(-895850973); public static readonly SequenceGUID SEQ_Shared_Buff_1280 = new SequenceGUID(1358222886); public static readonly SequenceGUID SEQ_Shared_Buff_1281 = new SequenceGUID(1511740833); public static readonly SequenceGUID SEQ_Shared_Buff_1282 = new SequenceGUID(-212639867); public static readonly SequenceGUID SEQ_Shared_Buff_1283 = new SequenceGUID(1699498748); public static readonly SequenceGUID SEQ_Shared_Dash_Phase_40 = new SequenceGUID(1938218286); public static readonly SequenceGUID SEQ_Shared_Buff_1284 = new SequenceGUID(-484218979); public static readonly SequenceGUID SEQ_Shared_Buff_1285 = new SequenceGUID(853862302); public static readonly SequenceGUID SEQ_Shared_Buff_1286 = new SequenceGUID(285352382); public static readonly SequenceGUID SEQ_Shared_Buff_1287 = new SequenceGUID(1280819354); public static readonly SequenceGUID SEQ_Shared_Buff_1288 = new SequenceGUID(-1470646340); public static readonly SequenceGUID SEQ_Shared_Buff_1289 = new SequenceGUID(758819407); public static readonly SequenceGUID SEQ_Shared_Buff_1290 = new SequenceGUID(2090062871); public static readonly SequenceGUID SEQ_Shared_Buff_1291 = new SequenceGUID(607977852); public static readonly SequenceGUID SEQ_Shared_Buff_1292 = new SequenceGUID(-1847225637); public static readonly SequenceGUID SEQ_Shared_Buff_1293 = new SequenceGUID(-1266654342); public static readonly SequenceGUID SEQ_Shared_Buff_1294 = new SequenceGUID(-912751887); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_54 = new SequenceGUID(908345158); public static readonly SequenceGUID SEQ_Shared_Buff_1295 = new SequenceGUID(529961412); public static readonly SequenceGUID SEQ_Shared_Buff_1296 = new SequenceGUID(1593241970); public static readonly SequenceGUID SEQ_Shared_Buff_1297 = new SequenceGUID(-2101970339); public static readonly SequenceGUID SEQ_Shared_Buff_1298 = new SequenceGUID(1273057663); public static readonly SequenceGUID SEQ_Shared_Buff_1299 = new SequenceGUID(1600751188); public static readonly SequenceGUID SEQ_Shared_Buff_1300 = new SequenceGUID(394274367); public static readonly SequenceGUID SEQ_Shared_Buff_1301 = new SequenceGUID(-1935475089); public static readonly SequenceGUID SEQ_Shared_Buff_Stun_14 = new SequenceGUID(1067931931); public static readonly SequenceGUID SEQ_Shared_Buff_1302 = new SequenceGUID(-1285049160); public static readonly SequenceGUID SEQ_Shared_Buff_1303 = new SequenceGUID(-1302608796); public static readonly SequenceGUID SEQ_Shared_Buff_1304 = new SequenceGUID(-1817177850); public static readonly SequenceGUID SEQ_Shared_Buff_1305 = new SequenceGUID(-553696765); public static readonly SequenceGUID SEQ_Shared_Buff_1306 = new SequenceGUID(572020460); public static readonly SequenceGUID SEQ_Shared_Buff_1307 = new SequenceGUID(1526445002); public static readonly SequenceGUID SEQ_Shared_Buff_1308 = new SequenceGUID(-714440515); public static readonly SequenceGUID SEQ_Shared_Buff_1309 = new SequenceGUID(-483640042); public static readonly SequenceGUID SEQ_Shared_Buff_1310 = new SequenceGUID(-1128422431); public static readonly SequenceGUID SEQ_Shared_Boss_Wounded_55 = new SequenceGUID(-242694330); public static readonly SequenceGUID SEQ_Shared_Buff_Shapeshift_16 = new SequenceGUID(1617874952); public static readonly SequenceGUID SEQ_Shared_Buff_1311 = new SequenceGUID(-1259715324); public static readonly SequenceGUID SEQ_Shared_Buff_1312 = new SequenceGUID(348594247); public static readonly SequenceGUID SEQ_Shared_Buff_1313 = new SequenceGUID(944447155); public static readonly SequenceGUID SEQ_Shared_Buff_1314 = new SequenceGUID(-971641756); public static readonly SequenceGUID SEQ_Shared_Buff_1315 = new SequenceGUID(722959956); public static readonly SequenceGUID SEQ_Shared_Buff_1316 = new SequenceGUID(1243442488); public static readonly SequenceGUID SEQ_Shared_Buff_1317 = new SequenceGUID(-1979972196); public static readonly SequenceGUID SEQ_Shared_Element_Active_Buff = new SequenceGUID(733080929); public static readonly SequenceGUID SEQ_Shared_ItemRouting_RouteItem = new SequenceGUID(883792507); public static readonly SequenceGUID SEQ_Shared_ItemRouting_RouteItem_1 = new SequenceGUID(-215115141); public static readonly SequenceGUID SEQ_Critter_FadeOut = new SequenceGUID(-1805106407); public static readonly SequenceGUID SEQ_Critter_FadeOut_1 = new SequenceGUID(-215877148); public static readonly SequenceGUID SEQ_Critter_FadeOut_2 = new SequenceGUID(1930688531); public static readonly SequenceGUID SEQ_Mood_Music_Castle = new SequenceGUID(1177632520); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_15 = new SequenceGUID(-1501610625); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Raid_Disabled = new SequenceGUID(1787467007); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1460 = new SequenceGUID(-866620570); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1461 = new SequenceGUID(-1512061917); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1462 = new SequenceGUID(236166753); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial = new SequenceGUID(1369289285); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_1 = new SequenceGUID(1295171774); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1463 = new SequenceGUID(-545567202); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1464 = new SequenceGUID(-1143912659); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1465 = new SequenceGUID(361475432); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1466 = new SequenceGUID(-1570275419); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1467 = new SequenceGUID(-934668852); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1468 = new SequenceGUID(1198353065); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1469 = new SequenceGUID(1670875646); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_2 = new SequenceGUID(70012098); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_3 = new SequenceGUID(-2126608198); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_4 = new SequenceGUID(-1849086499); public static readonly SequenceGUID SEQ_Shared_MaterialFade_Cast = new SequenceGUID(744716132); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1470 = new SequenceGUID(-1372758868); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1471 = new SequenceGUID(695720409); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_8 = new SequenceGUID(122622181); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1472 = new SequenceGUID(1897950783); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1473 = new SequenceGUID(-1113638251); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1474 = new SequenceGUID(2050020607); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1475 = new SequenceGUID(-1463991385); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1476 = new SequenceGUID(-2133353815); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1477 = new SequenceGUID(-1508071449); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1478 = new SequenceGUID(-1359864558); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1479 = new SequenceGUID(462883560); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1480 = new SequenceGUID(1475907701); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1481 = new SequenceGUID(-1799207393); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1482 = new SequenceGUID(723112157); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1483 = new SequenceGUID(931457972); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1484 = new SequenceGUID(1403376551); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1485 = new SequenceGUID(488669801); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1486 = new SequenceGUID(19261702); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1487 = new SequenceGUID(2029142671); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1488 = new SequenceGUID(835335023); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1489 = new SequenceGUID(477563624); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1490 = new SequenceGUID(1938383587); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_5 = new SequenceGUID(801095593); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1491 = new SequenceGUID(530466107); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1492 = new SequenceGUID(-1534168078); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1493 = new SequenceGUID(-85126470); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_6 = new SequenceGUID(-2049398036); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1494 = new SequenceGUID(1715795904); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_7 = new SequenceGUID(1016967749); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1495 = new SequenceGUID(1871855832); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1496 = new SequenceGUID(-1242250545); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1497 = new SequenceGUID(2057553871); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_ApplyMaterial_8 = new SequenceGUID(537013257); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1498 = new SequenceGUID(535100674); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1499 = new SequenceGUID(-1567601405); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1500 = new SequenceGUID(1425192979); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1501 = new SequenceGUID(288342295); public static readonly SequenceGUID SEQ_Shared_MaterialFade_Cast_1 = new SequenceGUID(1854926198); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1502 = new SequenceGUID(344875062); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1503 = new SequenceGUID(-2099268892); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1504 = new SequenceGUID(-1636953223); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1505 = new SequenceGUID(-1874646359); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1506 = new SequenceGUID(-908974030); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1507 = new SequenceGUID(-230361274); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1508 = new SequenceGUID(1659083729); public static readonly SequenceGUID SEQ_Shared_Ability_Cast_1509 = new SequenceGUID(1807158279); public static readonly SequenceGUID SEQ_CharacterGhostMaterial = new SequenceGUID(-1549825849); public static readonly SequenceGUID SEQ_Interact_Sit_Standup = new SequenceGUID(299439523); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_9 = new SequenceGUID(-1797853852); public static readonly SequenceGUID SEQ_Interact_Sit_Standup_1 = new SequenceGUID(1813752812); public static readonly SequenceGUID SEQ_Concussion = new SequenceGUID(1838584438); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_10 = new SequenceGUID(1528675446); public static readonly SequenceGUID SEQ_Interact_Sit_Standup_2 = new SequenceGUID(-1393347676); public static readonly SequenceGUID SEQ_RepairBuff = new SequenceGUID(-1772593456); public static readonly SequenceGUID SEQ_Shared_OverTime_Effect_1 = new SequenceGUID(-1997617673); public static readonly SequenceGUID SEQ_Workstation_WoodenCoffin_Start = new SequenceGUID(-1337798842); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_10 = new SequenceGUID(2093586496); public static readonly SequenceGUID SEQ_Vampire_LowHealth = new SequenceGUID(-1287036017); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_11 = new SequenceGUID(1357913476); public static readonly SequenceGUID SEQ_SunDebuff_BuildUp_Ilves = new SequenceGUID(698259940); public static readonly SequenceGUID SEQ_Shared_Buff_MaterialTransition_5 = new SequenceGUID(1297984539); public static readonly SequenceGUID SEQ_Interact_Sit_Standup_3 = new SequenceGUID(693729272); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_12 = new SequenceGUID(459450474); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_13 = new SequenceGUID(-1091363821); public static readonly SequenceGUID SEQ_Shared_MultiMaterial_14 = new SequenceGUID(2122897232); public static readonly SequenceGUID SEQ_Interact_Sit_Standup_4 = new SequenceGUID(1781596080); public static readonly SequenceGUID SEQ_Consumable_TrippyShroom = new SequenceGUID(1370191900); public static readonly SequenceGUID SEQ_Mood_Music_Boss_Shared = new SequenceGUID(-1331914304); public static readonly SequenceGUID SEQ_Shared_EntityVisualBuff_11 = new SequenceGUID(-210403172); public static readonly SequenceGUID SEQ_Shared_Wounded = new SequenceGUID(-1790785992); public static readonly SequenceGUID SEQ_Interact_Sit_Standup_5 = new SequenceGUID(-388485176); public static readonly SequenceGUID SEQ_Mood_Music_Boss_Shared_1 = new SequenceGUID(-31183133); public static readonly SequenceGUID SEQ_Interact_Throne_StandUp = new SequenceGUID(-947164663); public static readonly SequenceGUID SEQ_Interact_Throne = new SequenceGUID(-224796567); public static readonly SequenceGUID SEQ_Shared_Wounded_1 = new SequenceGUID(937213907); public static readonly SequenceGUID SEQ_Shared_Vampire_Feed_Dash_And_Channel_BODYSPECIFIC = new SequenceGUID(202202817); public static readonly SequenceGUID SEQ_Shared_Wounded_2 = new SequenceGUID(-119121293); public static readonly SequenceGUID SEQ_Interact_Sit_Standup_6 = new SequenceGUID(-311133228); public static readonly SequenceGUID SEQ_Mood_Music_Boss_Shared_2 = new SequenceGUID(-2056618872); public static readonly SequenceGUID SEQ_Shared_Wounded_3 = new SequenceGUID(395723216); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_16 = new SequenceGUID(1568123197); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_17 = new SequenceGUID(-957535138); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_18 = new SequenceGUID(275681045); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_19 = new SequenceGUID(1147420759); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_20 = new SequenceGUID(1092519336); public static readonly SequenceGUID SEQ_Stash_Shared_Close_14 = new SequenceGUID(-1748653598); public static readonly SequenceGUID SEQ_Stash_Shared_Open_14 = new SequenceGUID(-1236683260); public static readonly SequenceGUID SEQ_Shared_Trigger_464 = new SequenceGUID(1513846978); public static readonly SequenceGUID SEQ_Shared_Trigger_465 = new SequenceGUID(-1042636446); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Gate_Iron_Grate_Big_Open = new SequenceGUID(1202451887); public static readonly SequenceGUID SEQ_Stash_Shared_Close_15 = new SequenceGUID(1788101020); public static readonly SequenceGUID SEQ_Stash_Shared_Open_15 = new SequenceGUID(611850156); public static readonly SequenceGUID SEQ_Stash_Chest_Wood_Close = new SequenceGUID(-1514019615); public static readonly SequenceGUID SEQ_Stash_Chest_Wood_InActive = new SequenceGUID(-1823382730); public static readonly SequenceGUID SEQ_Stash_Chest_Wood_Active = new SequenceGUID(-1265605136); public static readonly SequenceGUID SEQ_Stash_Shared_Close_16 = new SequenceGUID(1744817569); public static readonly SequenceGUID SEQ_Stash_Shared_Open_16 = new SequenceGUID(120509511); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_21 = new SequenceGUID(252221572); public static readonly SequenceGUID SEQ_Workstation_FusionForge_Active = new SequenceGUID(2018157658); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_8 = new SequenceGUID(1192380880); public static readonly SequenceGUID SEQ_Castle_OuterWall_Gate_Iron_Close_01 = new SequenceGUID(-1451863086); public static readonly SequenceGUID SEQ_Castle_OuterWall_Gate_Iron_Open_01 = new SequenceGUID(-1831178797); public static readonly SequenceGUID SEQ_Stash_Shared_Close_17 = new SequenceGUID(-1037525608); public static readonly SequenceGUID SEQ_Stash_Shared_Open_17 = new SequenceGUID(585275278); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Gate_Iron_Grate_Big_Close = new SequenceGUID(50428815); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Gate_Iron_Grate_Big_Open_1 = new SequenceGUID(1110907424); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Gate_Iron_Grate_Big_Close_1 = new SequenceGUID(-911612634); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Gate_Iron_Grate_Big_Open_2 = new SequenceGUID(-1547482327); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_22 = new SequenceGUID(89260213); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_9 = new SequenceGUID(1158826448); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_23 = new SequenceGUID(-297576039); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_02_3 = new SequenceGUID(1457498367); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Open_02_2 = new SequenceGUID(303661888); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Close_01_3 = new SequenceGUID(1365164522); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Open_01_2 = new SequenceGUID(1478657560); public static readonly SequenceGUID SEQ_TileModelPhased_2 = new SequenceGUID(-112739322); public static readonly SequenceGUID SEQ_Shared_Workstation_Inactive_10 = new SequenceGUID(1359650276); public static readonly SequenceGUID SEQ_Mount_Stable_2 = new SequenceGUID(2127751073); public static readonly SequenceGUID SEQ_TileModelPhased_3 = new SequenceGUID(757439364); public static readonly SequenceGUID SEQ_Castle_Wall_Door_Gate_Iron_Grate_Big_Close_2 = new SequenceGUID(1848655294); public static readonly SequenceGUID SEQ_InteractableObject_4 = new SequenceGUID(-1687938342); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_24 = new SequenceGUID(-1893989133); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_25 = new SequenceGUID(245156696); public static readonly SequenceGUID SEQ_Contest_Start = new SequenceGUID(922857755); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_26 = new SequenceGUID(272405597); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_27 = new SequenceGUID(-1329790392); public static readonly SequenceGUID SEQ_Shared_Trigger_466 = new SequenceGUID(1813704946); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_28 = new SequenceGUID(1438487636); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_29 = new SequenceGUID(1095545684); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_30 = new SequenceGUID(343930240); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_31 = new SequenceGUID(-1459258013); public static readonly SequenceGUID SEQ_Workstation_Anvil_Active = new SequenceGUID(751469092); public static readonly SequenceGUID SEQ_TileModelDismantle_14 = new SequenceGUID(833382023); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_32 = new SequenceGUID(-106851139); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_33 = new SequenceGUID(176141195); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_34 = new SequenceGUID(-690347375); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_35 = new SequenceGUID(-559128395); public static readonly SequenceGUID SEQ_TileModelDismantle_15 = new SequenceGUID(189290690); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_36 = new SequenceGUID(289209131); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_37 = new SequenceGUID(-1683770083); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_38 = new SequenceGUID(1160285755); public static readonly SequenceGUID SEQ_Workstation_AlchemyLab_Small_Active = new SequenceGUID(-1516016616); public static readonly SequenceGUID SEQ_Shared_Object_Destroy_163 = new SequenceGUID(-1090424061); public static readonly SequenceGUID SEQ_TileModelDismantle_16 = new SequenceGUID(-1603206932); public static readonly SequenceGUID SEQ_Shared_Workstation_Active_39 = new SequenceGUID(1736074680); public static readonly SequenceGUID SEQ_Shared_Trigger_467 = new SequenceGUID(206046532); public static readonly SequenceGUID SEQ_TileModelDismantle_17 = new SequenceGUID(-871915695); public static readonly SequenceGUID SEQ_TileModelBuilding_13 = new SequenceGUID(1352661667); public static readonly SequenceGUID SEQ_Workstation_Coffin_Respawn_3 = new SequenceGUID(1994653569); public static readonly SequenceGUID SEQ_Workstation_Coffin_Respawn_4 = new SequenceGUID(633631492); public static readonly SequenceGUID SEQ_Blink_Standard_White_3 = new SequenceGUID(1382804845); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_24 = new SequenceGUID(-1643558594); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_25 = new SequenceGUID(444656805); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_26 = new SequenceGUID(-1279170467); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_27 = new SequenceGUID(449577650); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_28 = new SequenceGUID(-1473834020); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_29 = new SequenceGUID(1655789198); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_5 = new SequenceGUID(1576562360); public static readonly SequenceGUID SEQ_Door_DecayFall = new SequenceGUID(-981879444); public static readonly SequenceGUID SEQ_Vampire_Sleeping = new SequenceGUID(-1479130741); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_6 = new SequenceGUID(-482571428); public static readonly SequenceGUID SEQ_Unit_Ghoul_FakeDeath = new SequenceGUID(1323744525); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_30 = new SequenceGUID(658850847); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_31 = new SequenceGUID(472211403); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_7 = new SequenceGUID(-1209284771); public static readonly SequenceGUID SEQ_Vampire_Respawn = new SequenceGUID(-1353398848); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_8 = new SequenceGUID(-2006592169); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_9 = new SequenceGUID(1194505009); public static readonly SequenceGUID SEQ_Shared_Travel_Landing_32 = new SequenceGUID(-108918944); public static readonly SequenceGUID SEQ_Knockback = new SequenceGUID(330770554); public static readonly SequenceGUID SEQ_Door_Knock = new SequenceGUID(-552544126); public static readonly SequenceGUID SEQ_Shared_UnitSpawn_10 = new SequenceGUID(-1624727735); public static readonly SequenceGUID SEQ_Vampire_Landing = new SequenceGUID(-393107469); public static readonly SequenceGUID SEQ_Vampire_LeapAbility_Travel = new SequenceGUID(541522686); } } namespace Bloodcraft.Patches { [HarmonyPatch] internal static class AbilityRunScriptsSystemPatch { private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _exoForm = ConfigService.ExoPrestiging; private static readonly bool _familiars = ConfigService.FamiliarSystem; private const float COOLDOWN_FACTOR = 8f; private static readonly Dictionary _classSpells = new Dictionary(); private static readonly PrefabGUID _useWaypointAbilityGroup = PrefabGUIDs.AB_Interact_UseWaypoint_AbilityGroup; private static readonly PrefabGUID _useCastleWaypointAbilityGroup = PrefabGUIDs.AB_Interact_UseWaypoint_Castle_AbilityGroup; private static readonly PrefabGUID _vanishBuff = Buffs.VanishBuff; private static ServerGameManager ServerGameManager => Core.ServerGameManager; public static IReadOnlyDictionary ClassSpells => _classSpells; [HarmonyPatch(typeof(AbilityRunScriptsSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(AbilityRunScriptsSystem __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_classes) { return; } EntityQuery onPostCastEndedQuery = __instance._OnPostCastEndedQuery; NativeArray val = ((EntityQuery)(ref onPostCastEndedQuery)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { AbilityPostCastEndedEvent current = enumerator.Current; if (current.AbilityGroup.Has() || !current.Character.TryGetPlayer(out var player)) { continue; } PrefabGUID prefabGuid = current.AbilityGroup.GetPrefabGuid(); ServerGameManager serverGameManager; if (player.IsExoForm() && Shapeshifts.ShapeshiftRegistry.TryGetByAbilityGroup(prefabGuid, out var form)) { if (form.TryGetCooldown(prefabGuid, out var cooldown)) { serverGameManager = ServerGameManager; ((ServerGameManager)(ref serverGameManager)).SetAbilityGroupCooldown(current.Character, prefabGuid, cooldown); } } else if (ClassSpells.ContainsKey(prefabGuid)) { float num = (ClassSpells[prefabGuid].Equals(0) ? 8f : ((float)(ClassSpells[prefabGuid] + 1) * 8f)); serverGameManager = ServerGameManager; ((ServerGameManager)(ref serverGameManager)).SetAbilityGroupCooldown(current.Character, prefabGuid, num); } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(AbilityCastStarted_SetupAbilityTargetSystem_Shared), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(AbilityCastStarted_SetupAbilityTargetSystem_Shared __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { AbilityCastStartedEvent current = enumerator.Current; PrefabGUID prefabGuid = current.AbilityGroup.GetPrefabGuid(); if ((!((PrefabGUID)(ref prefabGuid)).Equals(_useCastleWaypointAbilityGroup) && !((PrefabGUID)(ref prefabGuid)).Equals(_useWaypointAbilityGroup)) || !current.Character.TryGetPlayer(out var player)) { continue; } User user = player.GetUser(); ulong platformId = user.PlatformId; bool num = platformId.HasActiveFamiliar(); bool flag = platformId.HasDismissedFamiliar(); if (num && !flag) { Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (!activeFamiliar.HasBuff(_vanishBuff)) { Familiars.AutoCallMap[player] = activeFamiliar; Familiars.DismissFamiliar(player, activeFamiliar, user, platformId); } } } } finally { val2.Dispose(); } } public static void AddClassSpell(PrefabGUID prefabGuid, int spellIndex) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) _classSpells.TryAdd(prefabGuid, spellIndex); } } [HarmonyPatch] internal static class BehaviourStateChangedSystemPatch { private static readonly bool _familiars = ConfigService.FamiliarSystem; [HarmonyPatch(typeof(CreateGameplayEventOnBehaviourStateChangedSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(CreateGameplayEventOnBehaviourStateChangedSystem __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery _query_221632411_ = __instance.__query_221632411_0; NativeArray val = ((EntityQuery)(ref _query_221632411_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); _query_221632411_ = __instance.__query_221632411_0; NativeArray val2 = ((EntityQuery)(ref _query_221632411_)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(true); try { for (int i = 0; i < val2.Length; i++) { Entity entity = val[i]; BehaviourTreeStateChangedEvent val3 = val2[i]; Entity entity2 = val3.Entity; if (!componentLookup.HasComponent(entity2) || !entity2.TryGetFollowedPlayer(out var player)) { continue; } if (((object)(GenericEnemyState)(ref val3.NewState)).Equals((object)(GenericEnemyState)64)) { entity2.With((VExtensions.WithRefHandler)delegate(ref BehaviourTreeState behaviourTreeState) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) behaviourTreeState.Value = (GenericEnemyState)256; }); entity.With((VExtensions.WithRefHandler)delegate(ref BehaviourTreeStateChangedEvent behaviourTreeState) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) behaviourTreeState.NewState = (GenericEnemyState)256; }); Familiars.HandleFamiliarMinions(entity2); } else if (((object)(GenericEnemyState)(ref val3.NewState)).Equals((object)(GenericEnemyState)2)) { Familiars.TryReturnFamiliar(player, entity2); } } } finally { val.Dispose(); } } } [HarmonyPatch] internal static class BuffSystemSpawnPatches { private readonly struct BuffSpawnContext { public Entity BuffEntity { get; init; } public Entity BuffTarget { get; init; } public bool TargetIsPlayer { get; init; } public ulong SteamId { get; init; } public ComponentLookup PlayerLookup { get; init; } public ComponentLookup BlockFeedLookup { get; init; } } private static readonly GameModeType _gameMode = SystemService.ServerGameSettingsSystem._Settings.GameModeType; private static readonly bool _eliteShardBearers = ConfigService.EliteShardBearers; private static readonly bool _legacies = ConfigService.LegacySystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _exoForm = ConfigService.ExoPrestiging; private static readonly bool _trueImmortal = ConfigService.TrueImmortal; private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _familiarPvP = ConfigService.FamiliarPvP; private static readonly bool _potionStacking = ConfigService.PotionStacking; private static readonly bool _professions = ConfigService.ProfessionSystem; private static readonly bool _alchemy = !Profession.Alchemy.IsDisabled(); private const float FAMILIAR_TRAVEL_DURATION = 7.5f; private const float MINION_LIFETIME = 30f; private const int MAX_PROFESSION_LEVEL = 100; private static readonly PrefabGUID _fallenAngel = PrefabGUIDs.CHAR_Paladin_FallenAngel; private static readonly PrefabGUID _solarus = PrefabGUIDs.CHAR_ChurchOfLight_Paladin_VBlood; private static readonly PrefabGUID _holyBubbleBuff = Buffs.HolyBubbleBuff; private static readonly PrefabGUID _gateBossFeedCompleteBuff = Buffs.GateBossFeedCompleteBuff; private static readonly PrefabGUID _holyBeamPowerBuff = Buffs.HolyBeamPowerBuff; private static readonly PrefabGUID _pvpProtectedBuff = Buffs.PvPProtectedBuff; private static readonly PrefabGUID _pveCombatBuff = Buffs.PvECombatBuff; private static readonly PrefabGUID _pvpCombatBuff = Buffs.PvPCombatBuff; private static readonly PrefabGUID _phasingBuff = Buffs.PhasingBuff; private static readonly PrefabGUID _witchPigTransformationBuff = Buffs.WitchPigTransformationBuff; private static readonly PrefabGUID _wranglerPotionBuff = Buffs.WranglerPotionBuff; private static readonly PrefabGUID _highlordGroundSwordBossBuff = Buffs.HighlordGroundSwordBossBuff; private static readonly PrefabGUID _bloodCurseBuff = Buffs.DraculaBloodCurseBuff; private static readonly PrefabGUID _inkCrawlerDeathBuff = Buffs.InkCrawlerDeathBuff; private static readonly PrefabGUID _targetSwallowedBuff = Buffs.TargetSwallowedBuff; private static readonly PrefabGUID _combatStanceBuff = Buffs.CombatStanceBuff; private static readonly PrefabGUID _evolvedVampireBuff = Buffs.EvolvedVampireBuff; private static readonly PrefabGUID _draculaReturnHideBuff = Buffs.DraculaReturnHideBuff; private static readonly PrefabGUID _batLandingTravel = new PrefabGUID(-371745443); private static readonly EntityQuery _query = QueryService.BuffSpawnServerQuery; private static readonly Dictionary> _buffSpawnActions = new Dictionary> { { _gateBossFeedCompleteBuff, HandleEliteSolarusFinalPhase }, { _bloodCurseBuff, HandleTrueImmortal }, { _pveCombatBuff, HandlePveCombatBuff }, { _pvpCombatBuff, HandlePvpCombatBuff }, { _combatStanceBuff, HandleCombatStanceBuff }, { _witchPigTransformationBuff, HandleWitchPigTransformation }, { _phasingBuff, HandlePhasingBuff }, { _highlordGroundSwordBossBuff, HandleHighlordSwordBuff }, { _inkCrawlerDeathBuff, HandleInkCrawlerDeathBuff }, { _draculaReturnHideBuff, HandleDraculaReturnHide } }; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static DebugEventsSystem DebugEventsSystem => SystemService.DebugEventsSystem; private static ModificationsRegistry ModificationsRegistry => SystemService.ModificationSystem.Registry; [HarmonyPatch(typeof(BuffSystem_Spawn_Server), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(BuffSystem_Spawn_Server __instance) { //IL_08ca: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Expected O, but got Unknown //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0014: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_03f6: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_06cd: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d4: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06f8: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_0746: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_0770: Unknown result type (might be due to invalid IL or missing references) //IL_0777: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a0: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028a: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07be: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_02f8: Unknown result type (might be due to invalid IL or missing references) //IL_0373: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06e2: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_0706: Unknown result type (might be due to invalid IL or missing references) //IL_0752: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_023f: Unknown result type (might be due to invalid IL or missing references) //IL_0241: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_0837: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_0410: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_0791: Unknown result type (might be due to invalid IL or missing references) //IL_0793: Unknown result type (might be due to invalid IL or missing references) //IL_0795: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_0853: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_07eb: Unknown result type (might be due to invalid IL or missing references) //IL_032c: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0332: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_05a5: Unknown result type (might be due to invalid IL or missing references) //IL_048c: Unknown result type (might be due to invalid IL or missing references) //IL_04b6: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0728: Unknown result type (might be due to invalid IL or missing references) //IL_072a: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0731: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_02b7: Unknown result type (might be due to invalid IL or missing references) //IL_080a: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_03c1: Unknown result type (might be due to invalid IL or missing references) //IL_064c: Unknown result type (might be due to invalid IL or missing references) //IL_064e: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0655: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_061a: Unknown result type (might be due to invalid IL or missing references) //IL_05b4: Unknown result type (might be due to invalid IL or missing references) //IL_05b6: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_04bf: Unknown result type (might be due to invalid IL or missing references) //IL_04c1: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04c8: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_0867: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0822: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_0661: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_0555: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e5: Unknown result type (might be due to invalid IL or missing references) //IL_0880: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_082e: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_066a: Unknown result type (might be due to invalid IL or missing references) //IL_05de: Unknown result type (might be due to invalid IL or missing references) //IL_05e0: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_055e: Unknown result type (might be due to invalid IL or missing references) //IL_0892: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_08a1: Unknown result type (might be due to invalid IL or missing references) //IL_0575: Unknown result type (might be due to invalid IL or missing references) //IL_057a: Unknown result type (might be due to invalid IL or missing references) //IL_057e: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } using NativeAccessor nativeAccessor = _query.ToEntityArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor3 = _query.ToComponentDataArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor2 = _query.ToComponentDataArrayAccessor((Allocator)2); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(true); ((SystemBase)__instance).GetComponentLookup(true); try { for (int i = 0; i < nativeAccessor.Length; i++) { Entity buffEntity = nativeAccessor[i]; Entity target = nativeAccessor2[i].Target; PrefabGUID prefabGuid = nativeAccessor3[i]; string prefabName = prefabGuid.GetPrefabName(); if (!target.Exists()) { continue; } bool flag = componentLookup.HasComponent(target); ulong steamId = (flag ? target.GetSteamId() : 0); Entity value; Entity player; switch (GetBuffType(((PrefabGUID)(ref prefabGuid)).GuidHash, prefabName)) { case 1: { if (!_eliteShardBearers) { break; } PrefabGUID prefabGuid2 = target.GetPrefabGuid(); if (!((PrefabGUID)(ref prefabGuid2)).Equals(_solarus)) { break; } if (!target.Has() && !target.HasBuff(_holyBeamPowerBuff) && target.TryApplyAndGetBuff(_holyBeamPowerBuff, out buffEntity) && buffEntity.Has()) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); } continue; } case 2: if (_trueImmortal && flag) { if (buffEntity.Has() && !buffEntity.GetSpellTarget().IsVBloodOrGateBoss()) { Shapeshifts.TrueImmortal(buffEntity, target); } continue; } break; case 3: if (flag) { value = Entity.Null; if (target.HasBuff(_evolvedVampireBuff)) { buffEntity.Remove(); } if (_familiars && steamId.HasActiveFamiliar()) { value = Familiars.GetActiveFamiliar(target); Familiars.HandleFamiliarEnteringCombat(target, value); Familiars.SyncAggro(target, value); } continue; } break; case 4: if (!(_familiars && flag)) { break; } if (steamId.HasActiveFamiliar()) { value = Familiars.GetActiveFamiliar(target); if (!_familiarPvP) { User user2 = target.GetUser(); Familiars.DismissFamiliar(target, value, user2, steamId); } else { Familiars.HandleFamiliarEnteringCombat(target, value); } } continue; case 5: if (!(_familiars && flag)) { break; } if (buffEntity.Has()) { continue; } value = Familiars.GetActiveFamiliar(target); if (value.Exists() && value.TryApplyAndGetBuffWithOwner(target, _targetSwallowedBuff, out buffEntity) && buffEntity.Has()) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { lifeTime.Duration = 7.5f; }); } continue; case 7: if (_familiars && target.IsVBloodOrGateBoss()) { buffEntity.Destroy(); continue; } break; case 8: if (flag) { if (_familiars && steamId.HasDismissedFamiliar() && Familiars.AutoCallMap.TryRemove(target, out value)) { Familiars.CallFamiliar(target, value, target.GetUser(), steamId); } if (_legacies || _expertise) { Buffs.RefreshStats(target); } continue; } break; case 9: if (!_familiars) { break; } if (!target.TryGetFollowedPlayer(out player)) { continue; } value = Familiars.GetActiveFamiliar(player); if (value.Exists() && value.TryGetBuff(_highlordGroundSwordBossBuff, out buffEntity)) { buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref AmplifyBuff amplifyBuff) { amplifyBuff.AmplifyModifier = -0.75f; }); buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 30f; lifeTime.EndAction = (LifeTimeEndAction)2; }); } continue; case 10: if (!_familiars) { break; } if (target.TryGetFollowedPlayer(out player) && buffEntity.Has()) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 30f; lifeTime.EndAction = (LifeTimeEndAction)2; }); } continue; case 11: if (flag) { if (_potionStacking && !prefabName.Contains("holyresistance", StringComparison.CurrentCultureIgnoreCase)) { if (buffEntity.Has()) { buffEntity.Remove(); } if (buffEntity.Has()) { buffEntity.Remove(); } } if (_professions && _alchemy) { int key = ProfessionFactory.GetProfession(prefabGuid).GetProfessionData(steamId).Key; float num = 1f + (float)key / 100f; if (buffEntity.Has()) { LifeTime val = buffEntity.Read(); if (val.Duration != -1f) { val.Duration *= num; } buffEntity.Write(val); } if (!prefabName.Contains("holyresistance", StringComparison.CurrentCultureIgnoreCase) && buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { for (int j = 0; j < dynamicBuffer.Length; j++) { ModifyUnitStatBuff_DOTS val2 = dynamicBuffer[j]; val2.Value *= 1f + (float)key / 100f; dynamicBuffer[j] = val2; } } if (buffEntity.Has() && buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer2) && !dynamicBuffer2.IsEmpty) { CreateGameplayEventsOnTick val3 = dynamicBuffer2[0]; val3.MaxTicks = (int)((float)val3.MaxTicks * num); dynamicBuffer2[0] = val3; } } if (_familiars && !((PrefabGUID)(ref prefabGuid)).Equals(_wranglerPotionBuff)) { value = Familiars.GetActiveFamiliar(target); if (value.Exists() && (!buffEntity.Has() || !value.IsDisabled())) { value.TryApplyBuff(prefabGuid); } } } else { if (!target.TryGetFollowedPlayer(out player)) { continue; } if (_potionStacking && !prefabName.Contains("holyresistance", StringComparison.CurrentCultureIgnoreCase)) { if (buffEntity.Has()) { buffEntity.Remove(); } if (buffEntity.Has()) { buffEntity.Remove(); } } if (_familiars && !((PrefabGUID)(ref prefabGuid)).Equals(_wranglerPotionBuff)) { value = Familiars.GetActiveFamiliar(player); if (value.Exists() && (!buffEntity.Has() || !value.IsDisabled())) { value.TryApplyBuff(prefabGuid); } } } continue; case 12: if (_familiars) { if (target.TryGetFollowedPlayer(out player) && !Misc.PlayerBoolsManager.GetPlayerBool(player.GetSteamId(), "VBloodEmotes")) { buffEntity.Destroy(); } continue; } break; case 13: if (_familiars && flag) { value = Familiars.GetActiveFamiliar(target); if (value.Exists()) { value.TryApplyBuff(prefabGuid); } continue; } break; case 14: if (flag) { if (target.HasBuff(_evolvedVampireBuff)) { buffEntity.Remove(); } else if (_familiars && steamId.HasActiveFamiliar()) { value = Familiars.GetActiveFamiliar(target); Familiars.SyncAggro(target, value); } } continue; case 15: if (_familiars) { if (target.IsFollowingPlayer()) { buffEntity.Destroy(); } continue; } break; case 16: if (_familiars && flag) { User user = target.GetUser(); if (Familiars.AutoCallMap.TryRemove(target, out value) && value.Exists()) { Familiars.CallFamiliar(target, value, user, steamId); } continue; } break; } if (!flag || target.IsDueling()) { continue; } Entity owner = buffEntity.GetOwner(); bool flag2 = owner.IsPlayer(); GameModeType gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)0)) { if (flag2 && !((Entity)(ref owner)).Equals(target)) { PreventDebuff(buffEntity); } else if (_familiars) { if (owner.IsFollowingPlayer()) { PreventDebuff(buffEntity); } else if (owner.GetOwner().IsFollowingPlayer()) { PreventDebuff(buffEntity); } } continue; } gameMode = _gameMode; if (!((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)1) || !target.HasBuff(_pvpProtectedBuff)) { continue; } if (flag2 && !((Entity)(ref owner)).Equals(target)) { PreventDebuff(buffEntity); } else if (_familiars) { if (owner.IsFollowingPlayer()) { PreventDebuff(buffEntity); } else if (owner.GetOwner().IsFollowingPlayer()) { PreventDebuff(buffEntity); } } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag3 = default(bool); BepInExWarningLogInterpolatedStringHandler val4 = new BepInExWarningLogInterpolatedStringHandler(39, 1, ref flag3); if (flag3) { ((BepInExLogInterpolatedStringHandler)val4).AppendLiteral("[BuffSystem_Spawn_Server] - Exception: "); ((BepInExLogInterpolatedStringHandler)val4).AppendFormatted(ex); } log.LogWarning(val4); } } private static int GetBuffType(int prefabGuid, string prefabName = "") { string text = prefabName.ToLower(); if (text.Contains("consumable") || text.Contains("elixir")) { return 11; } if (text.Contains("emote_onaggro")) { return 12; } if (text.Contains("userelic")) { return 13; } return prefabGuid switch { 358972271 => 1, -354622715 => 2, 581443919 => 3, 697095869 => 4, -89195359 => 5, 1356064917 => 7, -79611032 => 8, -6635580 => 9, -1584595113 => 10, -952067173 => 3, 404387047 => 15, -371745443 => 16, _ => 0, }; } private static void PreventDebuff(Entity buffEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) if (buffEntity.TryGetComponent(out Buff componentData) && ((object)(BuffEffectType)(ref componentData.BuffEffectType)).Equals((object)(BuffEffectType)0)) { buffEntity.Destroy(); } } private static void HandleConsumable(Entity buffEntity, Entity target, PrefabGUID buffGuid, string prefabName, bool targetIsPlayer, ulong steamId) { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0004: 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) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) Entity player; if (targetIsPlayer) { ApplyConsumableToPlayer(buffEntity, target, buffGuid, prefabName, steamId); } else if (target.TryGetFollowedPlayer(out player)) { ApplyConsumableToFollower(buffEntity, player, prefabName); } } private static void HandleAggroEmote(Entity buffEntity, Entity target) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) if (_familiars && target.TryGetFollowedPlayer(out var player) && !Misc.PlayerBoolsManager.GetPlayerBool(player.GetSteamId(), "VBloodEmotes")) { buffEntity.Destroy(); } } private static void HandleUseRelic(Entity buffEntity, Entity target, bool targetIsPlayer) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) if (_familiars && targetIsPlayer) { Entity activeFamiliar = Familiars.GetActiveFamiliar(target); if (activeFamiliar.Exists()) { activeFamiliar.TryApplyBuff(buffEntity.GetPrefabGuid()); } } } private static void HandleEliteSolarusFinalPhase(BuffSpawnContext buff) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) if (!_eliteShardBearers) { return; } PrefabGUID prefabGuid = buff.BuffTarget.GetPrefabGuid(); if (((PrefabGUID)(ref prefabGuid)).Equals(_solarus) && !buff.BuffTarget.HasBuff(_holyBeamPowerBuff) && !buff.BlockFeedLookup.HasComponent(buff.BuffTarget) && buff.BuffTarget.TryApplyAndGetBuff(_holyBeamPowerBuff, out var buffEntity)) { buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 0f; lifeTime.EndAction = (LifeTimeEndAction)0; }); } } private static void HandleTrueImmortal(BuffSpawnContext buff) { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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) if (_trueImmortal && buff.TargetIsPlayer && !buff.BuffEntity.GetSpellTarget().IsVBloodOrGateBoss()) { Shapeshifts.TrueImmortal(buff.BuffEntity, buff.BuffTarget); } } private static void HandlePveCombatBuff(BuffSpawnContext buff) { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) if (buff.TargetIsPlayer) { if (buff.BuffTarget.HasBuff(_evolvedVampireBuff)) { buff.BuffEntity.Remove(); } if (_familiars && buff.SteamId.HasActiveFamiliar()) { Entity activeFamiliar = Familiars.GetActiveFamiliar(buff.BuffTarget); Familiars.HandleFamiliarEnteringCombat(buff.BuffTarget, activeFamiliar); Familiars.SyncAggro(buff.BuffTarget, activeFamiliar); } } } private static void HandlePvpCombatBuff(BuffSpawnContext buff) { //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) if (_familiars && buff.TargetIsPlayer && buff.SteamId.HasActiveFamiliar()) { Entity activeFamiliar = Familiars.GetActiveFamiliar(buff.BuffTarget); if (!_familiarPvP) { User user = buff.BuffTarget.GetUser(); Familiars.DismissFamiliar(buff.BuffTarget, activeFamiliar, user, buff.SteamId); } else { Familiars.HandleFamiliarEnteringCombat(buff.BuffTarget, activeFamiliar); } } } private static void HandleWitchPigTransformation(BuffSpawnContext buff) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) if (_familiars && buff.BuffTarget.IsVBloodOrGateBoss()) { buff.BuffEntity.Destroy(); } } private static void HandlePhasingBuff(BuffSpawnContext buff) { //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) if (buff.TargetIsPlayer) { if (_familiars && buff.SteamId.HasDismissedFamiliar() && Familiars.AutoCallMap.TryRemove(buff.BuffTarget, out var value)) { Familiars.CallFamiliar(buff.BuffTarget, value, buff.BuffTarget.GetUser(), buff.SteamId); } if (_legacies || _expertise) { Buffs.RefreshStats(buff.BuffTarget); } } } private static void HandleCombatStanceBuff(BuffSpawnContext buff) { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) if (buff.TargetIsPlayer) { if (buff.BuffTarget.HasBuff(_evolvedVampireBuff)) { buff.BuffEntity.Remove(); } else if (_familiars && buff.SteamId.HasActiveFamiliar()) { Entity activeFamiliar = Familiars.GetActiveFamiliar(buff.BuffTarget); Familiars.SyncAggro(buff.BuffTarget, activeFamiliar); } } } private static void HandleHighlordSwordBuff(BuffSpawnContext buff) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) if (!_familiars || !buff.BuffTarget.TryGetFollowedPlayer(out var player)) { return; } Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (activeFamiliar.Exists() && activeFamiliar.TryGetBuff(_highlordGroundSwordBossBuff, out var buffEntity)) { buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref AmplifyBuff amplify) { amplify.AmplifyModifier = -0.75f; }); buffEntity.AddWith((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 30f; lifeTime.EndAction = (LifeTimeEndAction)2; }); } } private static void HandleInkCrawlerDeathBuff(BuffSpawnContext buff) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) if (_familiars && buff.BuffTarget.TryGetFollowedPlayer(out var _)) { buff.BuffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) lifeTime.Duration = 30f; lifeTime.EndAction = (LifeTimeEndAction)2; }); } } private static void HandleDraculaReturnHide(BuffSpawnContext ctx) { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) if (_familiars && ctx.BuffTarget.IsFollowingPlayer()) { ctx.BuffEntity.Destroy(); } } private static void ApplyConsumableToPlayer(Entity buffEntity, Entity player, PrefabGUID buffGuid, string prefabName, ulong steamId) { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0139: 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_014b: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) if (_potionStacking && !prefabName.Contains("holyresistance", StringComparison.CurrentCultureIgnoreCase)) { buffEntity.Remove(); buffEntity.Remove(); } if (_professions && _alchemy) { int professionLevel = ProfessionFactory.GetProfession(buffGuid).GetProfessionLevel(steamId); float duration = 1f + (float)professionLevel / 100f; buffEntity.With((VExtensions.WithRefHandler)delegate(ref LifeTime lifeTime) { if (!((object)(LifeTimeEndAction)(ref lifeTime.EndAction)).Equals((object)(LifeTimeEndAction)0)) { lifeTime.Duration *= duration; } }); if (!prefabName.Contains("holyresistance", StringComparison.CurrentCultureIgnoreCase) && buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { for (int i = 0; i < dynamicBuffer.Length; i++) { ModifyUnitStatBuff_DOTS val = dynamicBuffer[i]; val.Value *= duration; dynamicBuffer[i] = val; } } if (buffEntity.Has() && buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer2) && !dynamicBuffer2.IsEmpty) { CreateGameplayEventsOnTick val2 = dynamicBuffer2[0]; val2.MaxTicks = (int)((float)val2.MaxTicks * duration); dynamicBuffer2[0] = val2; } } if (_familiars && !((PrefabGUID)(ref buffGuid)).Equals(_wranglerPotionBuff)) { Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (activeFamiliar.Exists() && (!buffEntity.Has() || !activeFamiliar.IsDisabled())) { activeFamiliar.TryApplyBuff(buffGuid); } } } private static void ApplyConsumableToFollower(Entity buffEntity, Entity playerCharacter, string prefabName) { //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0031: 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_001b: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) if (_potionStacking && !prefabName.Contains("holyresistance", StringComparison.CurrentCultureIgnoreCase)) { buffEntity.Remove(); buffEntity.Remove(); } if (!_familiars) { return; } PrefabGUID prefabGuid = buffEntity.GetPrefabGuid(); if (!((PrefabGUID)(ref prefabGuid)).Equals(_wranglerPotionBuff)) { Entity activeFamiliar = Familiars.GetActiveFamiliar(playerCharacter); if (activeFamiliar.Exists() && (!buffEntity.Has() || !activeFamiliar.IsDisabled())) { activeFamiliar.TryApplyBuff(buffEntity.GetPrefabGuid()); } } } private static void TryPreventDebuff(Entity buffEntity, Entity target, bool targetIsPlayer) { //IL_0004: 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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000c: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Invalid comparison between Unknown and I4 //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) if (targetIsPlayer) { Entity owner = buffEntity.GetOwner(); bool flag = owner.IsPlayer(); bool flag2 = false; if ((int)_gameMode == 0) { flag2 = flag && !((Entity)(ref owner)).Equals(target); } else if ((int)_gameMode == 1 && target.HasBuff(_pvpProtectedBuff)) { flag2 = flag && !((Entity)(ref owner)).Equals(target); } if (!flag2 && _familiars && (owner.IsFollowingPlayer() || owner.GetOwner().IsFollowingPlayer())) { flag2 = true; } if (flag2) { PreventDebuff(buffEntity); } } } } [HarmonyPatch] internal static class ChatMessageSystemPatch { private static readonly Regex _regexMAC = new Regex(";mac([^;]+)$"); private static readonly Queue _pendingEclipseMessages = new Queue(); [HarmonyBefore(new string[] { "CrimsonChatFilter" })] [HarmonyPatch(typeof(ChatMessageSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ChatMessageSystem __instance) { //IL_001b: 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_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) if (!Core.Eclipsed) { return; } if (Core.IsReady) { ProcessPendingEclipseMessages(); } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val3 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); try { for (int i = 0; i < val2.Length; i++) { Entity entity = val2[i]; ChatMessageEvent val4 = val3[i]; string value = ((FixedString512Bytes)(ref val4.MessageText)).Value; bool flag = value.Contains("[ECLIPSE]", StringComparison.Ordinal); string originalMessage; if (!Core.IsReady) { if (flag) { _pendingEclipseMessages.Enqueue(value); entity.Destroy(immediate: true); } } else if (CheckMAC(value, out originalMessage)) { EclipseService.HandleClientMessage(originalMessage); entity.Destroy(immediate: true); } else if (flag) { Core.Log.LogWarning((object)"Failed to verify MAC for Eclipse client message."); } } } finally { val2.Dispose(); val3.Dispose(); } } private static void ProcessPendingEclipseMessages() { string result; while (_pendingEclipseMessages.TryDequeue(out result)) { if (CheckMAC(result, out var originalMessage)) { EclipseService.HandleClientMessage(originalMessage); } else { Core.Log.LogWarning((object)"Failed to verify MAC for queued Eclipse client message."); } } } public static bool CheckMAC(string receivedMessage, out string originalMessage) { Match match = _regexMAC.Match(receivedMessage); originalMessage = ""; if (match.Success) { string value = match.Groups[1].Value; string text = _regexMAC.Replace(receivedMessage, ""); if (VerifyMAC(text, value, Core.NEW_SHARED_KEY)) { originalMessage = text; return true; } } return false; } private static bool VerifyMAC(string message, string receivedMAC, byte[] key) { using HMACSHA256 hMACSHA = new HMACSHA256(key); byte[] bytes = Encoding.UTF8.GetBytes(message); string s = Convert.ToBase64String(hMACSHA.ComputeHash(bytes)); return CryptographicOperations.FixedTimeEquals(Encoding.UTF8.GetBytes(s), Encoding.UTF8.GetBytes(receivedMAC)); } public static string GenerateMAC(string message) { using HMACSHA256 hMACSHA = new HMACSHA256(Core.NEW_SHARED_KEY); byte[] bytes = Encoding.UTF8.GetBytes(message); return Convert.ToBase64String(hMACSHA.ComputeHash(bytes)); } } [HarmonyPatch] internal static class ClaimAchievementSystemPatch { private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly PrefabGUID _shelter = PrefabGUIDs.Journal_Shelter; private static readonly PrefabGUID _gettingReadyForTheHunt = PrefabGUIDs.Journal_GettingReadyForTheHunt; private static SystemService SystemService => Core.SystemService; private static EntityCommandBufferSystem EntityCommandBufferSystem => SystemService.EntityCommandBufferSystem; [HarmonyPostfix] [HarmonyPatch(typeof(ClaimAchievementSystem), "HandleEvent")] private static void ClaimAchievementSystemPostfix(ClaimAchievementSystem __instance, EntityCommandBuffer commandBuffer, PrefabGUID claimAchievementGUID, FromCharacter fromCharacter, bool forceClaim) { //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002c: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) if (Core.IsReady && _leveling && ((PrefabGUID)(ref claimAchievementGUID)).Equals(_shelter)) { Entity character = fromCharacter.Character; Entity user = fromCharacter.User; if (user.TryGetComponent(out AchievementOwner componentData)) { Entity entityOnServer = ((NetworkedEntity)(ref componentData.Entity)).GetEntityOnServer(); EntityCommandBuffer val = EntityCommandBufferSystem.CreateCommandBuffer(); __instance.CompleteAchievement(val, _gettingReadyForTheHunt, user, character, entityOnServer, false, false); } } } } [HarmonyPatch] internal static class CraftingSystemPatches { private static readonly bool _professions = ConfigService.ProfessionSystem; private static readonly bool _quests = ConfigService.QuestSystem; private const float BASE_PROFESSION_XP = 50f; private const float CRAFT_THRESHOLD = 0.975f; private const float SCT_DELAY = 0.75f; private const int MAX_PROFESSION_LEVEL = 100; private static readonly float _craftRateModifier = SystemService.ServerGameSettingsSystem._Settings.CraftRateModifier; private static readonly ConcurrentDictionary>> _playerCraftingJobs = new ConcurrentDictionary>>(); public static readonly ConcurrentDictionary>> ValidatedCraftingJobs = new ConcurrentDictionary>>(); private static readonly ConcurrentDictionary _playerLegendaryCraftingJobs = new ConcurrentDictionary(); public static readonly ConcurrentDictionary ValidatedLegendaryCraftingJobs = new ConcurrentDictionary(); private static readonly Dictionary _craftFinished = new Dictionary(); private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static Singleton NetworkIdSystem => SystemService.NetworkIdSystem; [HarmonyPatch(typeof(ForgeSystem_Update), "OnUpdate")] [HarmonyPrefix] private static void Prefix(ForgeSystem_Update __instance) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0087: 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_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Invalid comparison between Unknown and I4 //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_professions && !_quests)) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; Forge_Shared val3 = current.Read(); if ((int)val3.State == 0) { continue; } User user = current.Read().Owner._Entity.GetUser(); ulong platformId = user.PlatformId; Entity entity = val3.ItemEntity._Entity; PrefabGUID val4 = entity.GetPrefabGuid(); if (entity.Has()) { val4 = entity.Read().OutputItem; } else if (entity.Has()) { DynamicBuffer val5 = entity.ReadBuffer(); int currentTier = entity.Read().CurrentTier; val4 = val5[currentTier].TierPrefab; } if ((int)val3.State != 3) { continue; } if (platformId.TryGetPlayerQuests(out Dictionary quests)) { QuestSystem.ProcessQuestProgress(quests, val4, 1, user); } else if (!_professions) { continue; } float value = 50f * (float)ProfessionMappings.GetTierMultiplier(val4); IProfession profession = ProfessionFactory.GetProfession(val4); if (profession != null && !profession.GetProfessionEnum().IsDisabled() && entity.Has()) { Entity entity2 = PrefabCollectionSystem._PrefabGuidToEntityMap[val4]; Durability val6 = entity.Read(); Durability val7 = entity2.Read(); if (!(val6.MaxDurability > val7.MaxDurability)) { float delay = 0.75f; ProfessionSystem.SetProfession(current, ((NetworkedEntity)(ref user.LocalCharacter)).GetEntityOnServer(), platformId, value, profession, ref delay); EquipmentQualityManager.ApplyPlayerEquipmentStats(platformId, entity); } } } } finally { val2.Dispose(); } } [HarmonyPatch(typeof(UpdateCraftingSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(UpdateCraftingSystem __instance) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_professions && !_quests)) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); DynamicBuffer val3 = default(DynamicBuffer); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.Has()) { continue; } ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(current, ref val3) && !val3.IsEmpty) { if (!_craftFinished.ContainsKey(current)) { _craftFinished[current] = false; } QueuedWorkstationCraftAction craftAction = val3[0]; float recipeReduction = (((Enum)current.Read().WorkstationLevel).HasFlag((Enum)(object)(WorkstationLevel)2) ? 0.75f : 1f); ProcessQueuedCraftAction(current, craftAction, recipeReduction); } } } finally { val2.Dispose(); } } [HarmonyPatch(typeof(UpdatePrisonSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(UpdatePrisonSystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_professions) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); DynamicBuffer val3 = default(DynamicBuffer); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.Has()) { continue; } ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(current, ref val3) && !val3.IsEmpty) { if (!_craftFinished.ContainsKey(current)) { _craftFinished[current] = false; } QueuedWorkstationCraftAction craftAction = val3[0]; ProcessQueuedCraftAction(current, craftAction, 1f); } } } finally { val2.Dispose(); } } [HarmonyPatch(typeof(StartCraftingSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(StartCraftingSystem __instance) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_professions && !_quests)) { return; } EntityQuery startCraftItemEventQuery = __instance._StartCraftItemEventQuery; NativeArray val = ((EntityQuery)(ref startCraftItemEventQuery)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); Entity val2 = default(Entity); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.TryGetComponent(out StartCraftItemEvent componentData) && current.TryGetComponent(out FromCharacter componentData2)) { Singleton networkIdSystem = NetworkIdSystem; Entity key = (((NetworkIdLookupMap)(ref networkIdSystem._NetworkIdLookupMap)).TryGetValue(componentData.Workstation, ref val2) ? val2 : Entity.Null); PrefabGUID recipeId = componentData.RecipeId; PrefabGUID itemFromRecipePrefab = GetItemFromRecipePrefab(PrefabCollectionSystem._PrefabGuidToEntityMap.ContainsKey(recipeId) ? PrefabCollectionSystem._PrefabGuidToEntityMap[recipeId] : Entity.Null); ulong steamId = componentData2.User.GetSteamId(); if (!_playerCraftingJobs.ContainsKey(steamId)) { _playerCraftingJobs.TryAdd(steamId, new Dictionary>()); } if (!_playerCraftingJobs[steamId].ContainsKey(key)) { _playerCraftingJobs[steamId].Add(key, new Dictionary()); } Dictionary dictionary = _playerCraftingJobs[steamId][key]; if (!dictionary.ContainsKey(itemFromRecipePrefab)) { dictionary[itemFromRecipePrefab] = 1; } else { dictionary[itemFromRecipePrefab] = ++dictionary[itemFromRecipePrefab]; } _playerCraftingJobs[steamId][key] = dictionary; } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(StopCraftingSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(StopCraftingSystem __instance) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_professions && !_quests)) { return; } EntityQuery eventQuery = __instance._EventQuery; NativeArray val = ((EntityQuery)(ref eventQuery)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); Entity val2 = default(Entity); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.TryGetComponent(out StopCraftItemEvent componentData) || !current.TryGetComponent(out FromCharacter componentData2)) { continue; } Singleton networkIdSystem = NetworkIdSystem; Entity key = (((NetworkIdLookupMap)(ref networkIdSystem._NetworkIdLookupMap)).TryGetValue(componentData.Workstation, ref val2) ? val2 : Entity.Null); PrefabGUID recipeGuid = componentData.RecipeGuid; PrefabGUID itemFromRecipePrefab = GetItemFromRecipePrefab(PrefabCollectionSystem._PrefabGuidToEntityMap.ContainsKey(recipeGuid) ? PrefabCollectionSystem._PrefabGuidToEntityMap[recipeGuid] : Entity.Null); ulong steamId = componentData2.User.GetSteamId(); if (ValidatedCraftingJobs.TryGetValue(steamId, out var value) && value.TryGetValue(key, out var value2) && value2.ContainsKey(itemFromRecipePrefab)) { int num = value2[itemFromRecipePrefab]; num = (value2[itemFromRecipePrefab] = num - 1); if (value2[itemFromRecipePrefab] <= 0) { value2.Remove(itemFromRecipePrefab); } } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(MoveItemBetweenInventoriesSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(MoveItemBetweenInventoriesSystem __instance) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: 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_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_professions && !_quests)) { return; } EntityQuery moveItemBetweenInventoriesEventQuery = __instance._MoveItemBetweenInventoriesEventQuery; NativeArray val = ((EntityQuery)(ref moveItemBetweenInventoriesEventQuery)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); Entity val2 = default(Entity); Entity val4 = default(Entity); DynamicBuffer val5 = default(DynamicBuffer); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.TryGetComponent(out MoveItemBetweenInventoriesEvent componentData) || !current.TryGetComponent(out FromCharacter componentData2)) { continue; } ulong steamId = componentData2.Character.GetSteamId(); Singleton networkIdSystem = NetworkIdSystem; Entity val3 = (((NetworkIdLookupMap)(ref networkIdSystem._NetworkIdLookupMap)).TryGetValue(componentData.ToInventory, ref val2) ? val2 : Entity.Null); int fromSlot = componentData.FromSlot; PrefabGUID val6; if (InventoryUtilities.TryGetInventoryEntity(EntityManager, componentData2.Character, ref val4, 0)) { ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(val4, ref val5) && fromSlot >= 0 && fromSlot < val5.Length) { val6 = val5[fromSlot].ItemType; goto IL_00ea; } } val6 = PrefabGUID.Empty; goto IL_00ea; IL_00ea: PrefabGUID key = val6; if (!val3.Has()) { continue; } if (_playerCraftingJobs.TryGetValue(steamId, out var value) && value.TryGetValue(val3, out var value2) && value2.ContainsKey(key)) { int num = value2[key]; num = (value2[key] = num - 1); if (value2[key] <= 0) { value2.Remove(key); } } if (ValidatedCraftingJobs.TryGetValue(steamId, out var value3) && value3.TryGetValue(val3, out var value4) && value4.ContainsKey(key)) { int num3 = value4[key]; num3 = (value4[key] = num3 - 1); if (value4[key] <= 0) { value4.Remove(key); } } } } finally { val.Dispose(); } } private static void ProcessQueuedCraftAction(Entity entity, QueuedWorkstationCraftAction craftAction, float recipeReduction) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: 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_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) ulong steamId = craftAction.InitiateUser.GetSteamId(); bool flag = _craftFinished[entity]; PrefabGUID recipeGuid = craftAction.RecipeGuid; Entity val = (PrefabCollectionSystem._PrefabGuidToEntityMap.ContainsKey(recipeGuid) ? PrefabCollectionSystem._PrefabGuidToEntityMap[recipeGuid] : Entity.Null); PrefabGUID itemFromRecipePrefab = GetItemFromRecipePrefab(val); if (val.TryGetComponent(out RecipeData componentData)) { float craftDuration = componentData.CraftDuration; float progressTime = craftAction.ProgressTime; float num = craftDuration * recipeReduction / _craftRateModifier; if (!flag && progressTime / num >= 0.975f) { _craftFinished[entity] = true; ValidateCraftingJob(entity, itemFromRecipePrefab, steamId); } else if (flag && progressTime / num < 0.975f) { _craftFinished[entity] = false; } } } private static PrefabGUID GetItemFromRecipePrefab(Entity recipePrefab) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) if (recipePrefab.Exists() && recipePrefab.Has()) { return recipePrefab.ReadBuffer()[0].Guid; } return PrefabGUID.Empty; } private static void ValidateCraftingJob(Entity craftingStation, PrefabGUID itemPrefabGUID, ulong steamId) { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0021: 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_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) if (!_playerCraftingJobs.TryGetValue(steamId, out var value) || !value.TryGetValue(craftingStation, out var value2) || !value2.ContainsKey(itemPrefabGUID)) { return; } if (value2[itemPrefabGUID] > 0) { if (!ValidatedCraftingJobs.ContainsKey(steamId)) { ValidatedCraftingJobs[steamId] = new Dictionary>(); } if (!ValidatedCraftingJobs[steamId].ContainsKey(craftingStation)) { ValidatedCraftingJobs[steamId].Add(craftingStation, new Dictionary()); } Dictionary dictionary = ValidatedCraftingJobs[steamId][craftingStation]; if (!dictionary.ContainsKey(itemPrefabGUID)) { dictionary[itemPrefabGUID] = 1; } else { dictionary[itemPrefabGUID]++; } ValidatedCraftingJobs[steamId][craftingStation] = dictionary; int num = value2[itemPrefabGUID]; num = (value2[itemPrefabGUID] = num - 1); if (value2[itemPrefabGUID] <= 0) { value2.Remove(itemPrefabGUID); } } else if (value2[itemPrefabGUID] <= 0) { value2.Remove(itemPrefabGUID); } } } [HarmonyPatch] internal static class CreateGameplayEventOnDestroySystemPatch { private static readonly bool _professions = ConfigService.ProfessionSystem; private static readonly bool _quests = ConfigService.QuestSystem; private const int BASE_PROFESSION_XP = 100; private const float SCT_DELAY = 0.75f; private static readonly PrefabGUID _fishingTravelToTarget = PrefabGUIDs.AB_Fishing_Draw_TravelToTarget; private static readonly PrefabGUID _fishingQuestGoal = PrefabGUIDs.FakeItem_AnyFish; [HarmonyPatch(typeof(CreateGameplayEventOnDestroySystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(CreateGameplayEventOnDestroySystem __instance) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_professions && !_quests)) { return; } EntityQuery _query_1297357609_ = __instance.__query_1297357609_0; NativeArray val = ((EntityQuery)(ref _query_1297357609_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.TryGetComponent(out EntityOwner componentData) || !componentData.Owner.Exists() || !current.TryGetComponent(out PrefabGUID componentData2) || !((PrefabGUID)(ref componentData2)).Equals(_fishingTravelToTarget)) { continue; } Entity owner = componentData.Owner; Entity userEntity = owner.GetUserEntity(); User user = userEntity.GetUser(); ulong platformId = user.PlatformId; PrefabGUID val2 = PrefabGUID.Empty; Entity buffTarget = current.GetBuffTarget(); if (_quests && platformId.TryGetPlayerQuests(out Dictionary quests)) { QuestSystem.ProcessQuestProgress(quests, _fishingQuestGoal, 1, user); } if (buffTarget.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { val2 = dynamicBuffer[0].DropTableGuid; } if (!((PrefabGUID)(ref val2)).IsEmpty()) { IProfession profession = ProfessionFactory.GetProfession(val2); if (profession != null && !profession.GetProfessionEnum().IsDisabled()) { int fishingModifier = ProfessionMappings.GetFishingModifier(val2); float delay = 0.75f; ProfessionSystem.SetProfession(buffTarget, owner, platformId, 100 * fishingModifier, profession, ref delay); ProfessionSystem.GiveProfessionBonus(buffTarget, val2, owner, userEntity, user, platformId, profession, delay); } } } } finally { val.Dispose(); } } } [HarmonyPatch] internal static class CreateGameplayEventOnTickSpawnSystemPatch { private static readonly GameModeType _gameMode = SystemService.ServerGameSettingsSystem._Settings.GameModeType; private static readonly PrefabGUID _pvpProtectedBuff = new PrefabGUID(1111481396); private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; [HarmonyPatch(typeof(CreateGameplayEventOnTickSystem_Spawn), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(CreateGameplayEventOnTickSystem_Spawn __instance) { //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.Has() || !current.TryGetComponent(out Buff componentData) || !current.TryGetComponent(out EntityOwner componentData2) || !componentData2.Owner.IsPlayer()) { continue; } Entity target = componentData.Target; if (!target.IsPlayer() || target.IsDueling()) { continue; } GameModeType gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)0)) { DestroyUtility.Destroy(EntityManager, current, (DestroyDebugReason)0, (string)null, 0); continue; } gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)1) && target.HasBuff(_pvpProtectedBuff)) { DestroyUtility.Destroy(EntityManager, current, (DestroyDebugReason)0, (string)null, 0); } } } finally { val2.Dispose(); } } } [HarmonyPatch] internal static class DeathEventListenerSystemPatch { public class DeathEventArgs : EventArgs { public Entity Source { get; set; } public Entity Target { get; set; } public HashSet DeathParticipants { get; set; } public float ScrollingTextDelay { get; set; } } private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _legacies = ConfigService.LegacySystem; private static readonly bool _professions = ConfigService.ProfessionSystem; private static readonly bool _allowMinions = ConfigService.FamiliarSystem && ConfigService.AllowMinions; public static event EventHandler OnDeathEventHandler; private static void RaiseDeathEvent(DeathEventArgs deathEvent) { DeathEventListenerSystemPatch.OnDeathEventHandler?.Invoke(null, deathEvent); } [HarmonyPatch(typeof(DeathEventListenerSystem), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePostfix(DeathEventListenerSystem __instance) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0084: 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_008e: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: 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_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } using NativeAccessor nativeAccessor = __instance._DeathEventQuery.ToComponentDataArrayAccessor((Allocator)2); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup blockFeedBuffLookup = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup traderLookup = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup unitLevelLookup = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup componentLookup2 = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup vBloodConsumeSourceLookup = ((SystemBase)__instance).GetComponentLookup(true); for (int i = 0; i < nativeAccessor.Length; i++) { DeathEvent val = nativeAccessor[i]; if (!ValidateTarget(val, ref blockFeedBuffLookup, ref traderLookup, ref unitLevelLookup, ref vBloodConsumeSourceLookup)) { continue; } if (componentLookup.HasComponent(val.Died)) { Entity val2 = ValidateSource(val.Killer); bool flag = ((object)(StatChangeReason)(ref val.StatChangeReason)).Equals((object)(StatChangeReason)13); bool flag2 = componentLookup2.HasComponent(val.Died); if (!val2.Exists()) { continue; } DeathEventArgs deathEvent = new DeathEventArgs { Source = val2, Target = val.Died, DeathParticipants = Progression.GetDeathParticipants(val2), ScrollingTextDelay = 0f }; if (flag2) { if (_allowMinions) { FamiliarUnlockSystem.OnUpdate(null, deathEvent); } continue; } RaiseDeathEvent(deathEvent); if (_legacies && flag) { BloodSystem.ProcessLegacy(deathEvent); } } else if (_professions && val.Killer.IsPlayer()) { ProfessionSystem.UpdateProfessions(val.Killer, val.Died); } } } private static Entity ValidateSource(Entity source) { //IL_0000: 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) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_0010: 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_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0030: 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_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) Entity result = Entity.Null; if (source.IsPlayer()) { return source; } if (!source.TryGetComponent(out EntityOwner componentData)) { return result; } Entity player2; if (componentData.Owner.TryGetPlayer(out var player)) { result = player; } else if (componentData.Owner.TryGetFollowedPlayer(out player2)) { result = player2; } return result; } private static bool ValidateTarget(DeathEvent deathEvent, ref ComponentLookup blockFeedBuffLookup, ref ComponentLookup traderLookup, ref ComponentLookup unitLevelLookup, ref ComponentLookup vBloodConsumeSourceLookup) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0204: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) if (deathEvent.Killer == deathEvent.Died) { return false; } if (_familiars && deathEvent.Died.TryGetFollowedPlayer(out var player)) { ulong steamId = player.GetSteamId(); if (steamId.HasActiveFamiliar()) { Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (((Entity)(ref activeFamiliar)).Equals(deathEvent.Died)) { Familiars.DestroyFamiliarServant(Familiars.GetFamiliarServant(player)); Familiars.ActiveFamiliarManager.ResetActiveFamiliarData(steamId); } } return false; } if (FamiliarBindingSystem.PlayerBattleFamiliars.Any()) { KeyValuePair> keyValuePair = FamiliarBindingSystem.PlayerBattleFamiliars.FirstOrDefault((KeyValuePair> kvp) => kvp.Value.Contains(deathEvent.Died)); if (keyValuePair.Key != 0L) { ulong key = keyValuePair.Key; FamiliarBindingSystem.PlayerBattleFamiliars[key].Remove(deathEvent.Died); if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(deathEvent.Died)) { Familiars.HandleFamiliarMinions(deathEvent.Died); } if (!FamiliarBindingSystem.PlayerBattleFamiliars[key].Any() && BattleService.Matchmaker.MatchPairs.TryGetMatch(key, out var matchingPair)) { ulong num = ((matchingPair.Item1 == key) ? matchingPair.Item2 : matchingPair.Item1); if (FamiliarBindingSystem.PlayerBattleFamiliars[num].Any()) { foreach (Entity item in FamiliarBindingSystem.PlayerBattleFamiliars[num]) { if (LinkMinionToOwnerOnSpawnSystemPatch.FamiliarMinions.ContainsKey(item)) { Familiars.HandleFamiliarMinions(item); } if (item.Exists()) { item.Destroy(); } } FamiliarBindingSystem.PlayerBattleFamiliars[num].Clear(); BattleService.Matchmaker.HandleMatchCompletion(matchingPair, num); } } return false; } } if (vBloodConsumeSourceLookup.HasComponent(deathEvent.Died) || blockFeedBuffLookup.HasComponent(deathEvent.Died) || traderLookup.HasComponent(deathEvent.Died) || !unitLevelLookup.HasComponent(deathEvent.Died)) { return false; } return true; } } [HarmonyPatch] internal static class DebugLoggerPatch { private const string MAP_ICON_ERROR = "PlayerMapIcon requires the creator to have the PlayerCharacter component."; private static bool Familiars { get; } = ConfigService.FamiliarSystem; [HarmonyPatch(typeof(Debug), "LogError", new Type[] { typeof(Object) })] [HarmonyPrefix] private static bool LogErrorPrefix(Object message) { if (!Core.IsReady) { return true; } if (!Familiars) { return true; } return !message.ToString().Contains("PlayerMapIcon requires the creator to have the PlayerCharacter component."); } } [HarmonyPatch] internal static class EmoteSystemPatch { private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _familiarBattles = ConfigService.FamiliarBattles; private static readonly bool _exoForm = ConfigService.ExoPrestiging; private static readonly bool _familiarCombat = ConfigService.FamiliarCombat; private static readonly bool _familiarPvP = ConfigService.FamiliarPvP; private static readonly PrefabGUID _ignoredFaction = PrefabGUIDs.Faction_Ignored; private static readonly PrefabGUID _playerFaction = PrefabGUIDs.Faction_Players; private static readonly PrefabGUID _vanishBuff = Buffs.VanishBuff; private static readonly PrefabGUID _dominateBuff = Buffs.DominateBuff; private static readonly PrefabGUID _invulnerableBuff = Buffs.AdminInvulnerableBuff; private static readonly PrefabGUID _pveCombatBuff = Buffs.PvECombatBuff; private static readonly PrefabGUID _pvpCombatBuff = Buffs.PvPCombatBuff; private static readonly PrefabGUID _takeFlightBuff = Buffs.TakeFlightBuff; private static readonly PrefabGUID _exoFormBuff = Buffs.EvolvedVampireBuff; private static readonly PrefabGUID _phasingBuff = Buffs.PhasingBuff; private static readonly PrefabGUID _gateBossFeedCompleteBuff = Buffs.GateBossFeedCompleteBuff; private static readonly PrefabGUID _waveAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_Wave_AbilityGroup; private static readonly PrefabGUID _saluteAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_Salute_AbilityGroup; private static readonly PrefabGUID _clapAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_Clap_AbilityGroup; private static readonly PrefabGUID _tauntAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_Taunt_AbilityGroup; private static readonly PrefabGUID _yesAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_Yes_AbilityGroup; private static readonly PrefabGUID _noAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_No_AbilityGroup; private static readonly PrefabGUID _beckonAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_Beckon_AbilityGroup; private static readonly PrefabGUID _bowAbilityGroup = PrefabGUIDs.AB_Emote_Vampire_Bow_AbilityGroup; private static readonly PrefabGUID _disableAggroBuff = Buffs.DisableAggroBuff; private static readonly PrefabGUID _interactModeBuff = Buffs.InteractModeBuff; private static readonly Dictionary> _emoteActions = new Dictionary> { { _waveAbilityGroup, CallDismiss }, { _saluteAbilityGroup, CombatMode }, { _clapAbilityGroup, BindUnbind }, { _beckonAbilityGroup, InteractMode }, { _tauntAbilityGroup, HandleShapeshift } }; private static readonly Dictionary> _matchActions = new Dictionary> { { _yesAbilityGroup, AcceptBattle }, { _noAbilityGroup, DeclineBattle } }; public static readonly HashSet BlockShapeshift = new HashSet(); public static readonly HashSet<(ulong, ulong)> BattleChallenges = new HashSet<(ulong, ulong)>(); private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; public static IReadOnlyDictionary> EmoteActions => _emoteActions; [HarmonyPatch(typeof(EmoteSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(EmoteSystem __instance) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_0139: 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_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_familiars && !_exoForm)) { return; } EntityQuery query = __instance._Query; NativeArray val = ((EntityQuery)(ref query)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; UseEmoteEvent val2 = current.Read(); FromCharacter val3 = current.Read(); User val4 = val3.User.Read(); Entity character = val3.Character; ulong platformId = val4.PlatformId; (ulong, ulong) matchingPair; if (_exoForm && ((PrefabGUID)(ref val2.Action)).Equals(_tauntAbilityGroup) && Misc.PlayerBoolsManager.GetPlayerBool(platformId, "Shapeshift")) { if (_emoteActions.TryGetValue(val2.Action, out var value)) { value(val4, character, platformId); } } else if (_familiarBattles && BattleChallenges.TryGetMatch(platformId, out matchingPair) && (((PrefabGUID)(ref val2.Action)).Equals(_yesAbilityGroup) || ((PrefabGUID)(ref val2.Action)).Equals(_noAbilityGroup))) { if (_matchActions.TryGetValue(val2.Action, out var value2)) { value2(matchingPair); } } else if (_familiars && Misc.PlayerBoolsManager.GetPlayerBool(platformId, "EmoteActions")) { Action value3; if (character.HasBuff(_dominateBuff) && EmoteActions.ContainsKey(val2.Action)) { LocalizationService.HandleServerReply(EntityManager, val4, "You can't use emote actions when using dominate form!"); } else if (character.HasBuff(_takeFlightBuff) && EmoteActions.ContainsKey(val2.Action)) { LocalizationService.HandleServerReply(EntityManager, val4, "You can't use emote actions when using bat form!"); } else if (((PrefabGUID)(ref val2.Action)).Equals(_beckonAbilityGroup) && character.PlayerInCombat()) { LocalizationService.HandleServerReply(EntityManager, val4, "You can't interact with your familiar during combat!"); } else if (EmoteActions.TryGetValue(val2.Action, out value3)) { value3(val4, character, platformId); } } } } finally { val.Dispose(); } } private static void HandleShapeshift(User user, Entity playerCharacter, ulong steamId) { //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) Entity buffEntity2; if (!Shapeshifts.ShapeshiftCache.TryGetShapeshiftBuff(steamId, out var shapeshiftBuff)) { BlockShapeshift.Add(steamId); LocalizationService.HandleServerReply(EntityManager, user, "Select a form you've unlocked first! ('.prestige sf [EvolvedVampire|CorruptedSerpent]')"); } else if (!playerCharacter.HasBuff(shapeshiftBuff)) { if (playerCharacter.TryApplyAndGetBuff(_phasingBuff, out var buffEntity) && buffEntity.Has()) { buffEntity.Remove(); } } else if (playerCharacter.TryGetBuff(shapeshiftBuff, out buffEntity2)) { BlockShapeshift.Add(steamId); playerCharacter.TryApplyBuff(_gateBossFeedCompleteBuff); buffEntity2.Destroy(); } } public static void BindUnbind(User user, Entity playerCharacter, ulong steamId) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_000d: 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) if (Familiars.GetActiveFamiliar(playerCharacter).Exists()) { Familiars.UnbindFamiliar(user, playerCharacter); } else { Familiars.BindFamiliar(user, playerCharacter); } } public static void CallDismiss(User user, Entity playerCharacter, ulong steamId) { //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) if (steamId.HasActiveFamiliar()) { Entity activeFamiliar = Familiars.GetActiveFamiliar(playerCharacter); if (activeFamiliar.Exists()) { if (steamId.HasDismissedFamiliar()) { if (playerCharacter.HasBuff(_pvpCombatBuff)) { LocalizationService.HandleServerReply(EntityManager, user, "You can't call your familiar during PvP combat!"); } else { Familiars.CallFamiliar(playerCharacter, activeFamiliar, user, steamId); } } else if (activeFamiliar.HasBuff(_interactModeBuff)) { InteractMode(user, playerCharacter, steamId); Familiars.DismissFamiliar(playerCharacter, activeFamiliar, user, steamId); } else { Familiars.DismissFamiliar(playerCharacter, activeFamiliar, user, steamId); } } else { LocalizationService.HandleServerReply(EntityManager, user, "Active familiar doesn't exist! If that doesn't seem right try using '.fam reset'."); } } else { LocalizationService.HandleServerReply(EntityManager, user, "Couldn't find active familiar..."); } } public static void CombatMode(User user, Entity playerCharacter, ulong steamId) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: 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_003c: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) if (!_familiarCombat) { LocalizationService.HandleServerReply(EntityManager, user, "Familiar combat is not enabled."); } else if (playerCharacter.PlayerInCombat()) { LocalizationService.HandleServerReply(EntityManager, user, "You can't toggle familiar combat mode during PvE/PvP combat!"); } else if (steamId.HasActiveFamiliar()) { Entity activeFamiliar = Familiars.GetActiveFamiliar(playerCharacter); if (!activeFamiliar.Exists()) { LocalizationService.HandleServerReply(EntityManager, user, "Couldn't find active familiar..."); } else if (activeFamiliar.HasBuff(_invulnerableBuff)) { activeFamiliar.TryRemoveBuff(_invulnerableBuff); activeFamiliar.SetFaction(_playerFaction); Familiars.EnableAggro(activeFamiliar); activeFamiliar.EnableAggroable(); LocalizationService.HandleServerReply(EntityManager, user, "Familiar combat enabled."); } else { activeFamiliar.TryApplyBuff(_invulnerableBuff); activeFamiliar.SetFaction(_ignoredFaction); Familiars.DisableAggro(activeFamiliar); activeFamiliar.DisableAggroable(); LocalizationService.HandleServerReply(EntityManager, user, "Familiar combat disabled."); } } else { LocalizationService.HandleServerReply(EntityManager, user, "Couldn't find active familiar..."); } } public static void InteractMode(User user, Entity playerCharacter, ulong steamId) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: 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_0098: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) Familiars.ActiveFamiliarData activeFamiliarData = Familiars.ActiveFamiliarManager.GetActiveFamiliarData(steamId); Entity familiar = activeFamiliarData.Familiar; Entity servant = activeFamiliarData.Servant; Entity servantCoffin = Familiars.GetServantCoffin(servant); if (activeFamiliarData.Dismissed) { LocalizationService.HandleServerReply(EntityManager, user, "Can't interact with familiar when dismissed!"); } else { if (!familiar.Exists() || !servant.Exists() || !servantCoffin.Exists()) { return; } if (familiar.HasBuff(_vanishBuff)) { LocalizationService.HandleServerReply(EntityManager, user, "Can't interact with familiar when binding/unbinding!"); } else if (familiar.HasBuff(_interactModeBuff)) { DataService.FamiliarPersistence.FamiliarEquipmentManager.SaveFamiliarEquipment(steamId, activeFamiliarData.FamiliarId, DataService.FamiliarPersistence.FamiliarEquipmentManager.GetFamiliarEquipment(activeFamiliarData.Servant)); Familiars.EnableAggro(familiar); familiar.TryRemoveBuff(_interactModeBuff); servant.With((VExtensions.WithRefHandler)delegate(ref Interactable interactable) { interactable.Disabled = true; }); servantCoffin.Add(); servant.Add(); } else { Familiars.DisableAggro(familiar); familiar.TryApplyBuffInteractMode(_interactModeBuff); servantCoffin.Remove(); servant.Remove(); servant.With((VExtensions.WithRefHandler)delegate(ref Interactable interactable) { interactable.Disabled = false; }); } } } private static void AcceptBattle((ulong, ulong) match) { BattleService.Matchmaker.QueueMatch(match); BattleChallenges.Remove(match); } private static void DeclineBattle((ulong, ulong) match) { BattleService.NotifyBothPlayers(match.Item1, match.Item2, "The challenge has been declined."); BattleChallenges.Remove(match); } } [HarmonyPatch] internal static class FamiliarServantPatches { private static readonly bool _familiars = ConfigService.FamiliarSystem; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static Singleton NetworkIdSystem => SystemService.NetworkIdSystem; [HarmonyPatch(typeof(EquipServantItemFromInventorySystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(EquipServantItemFromInventorySystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Expected O, but got Unknown //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val3 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(false); try { NetworkIdLookupMap networkIdLookupMap = NetworkIdSystem._NetworkIdLookupMap; Entity val5 = default(Entity); Entity inventory = default(Entity); bool flag = default(bool); for (int i = 0; i < val2.Length; i++) { Entity entity = val2[i]; EquipServantItemFromInventoryEvent val4 = val3[i]; NetworkId toEntity = val4.ToEntity; NetworkId fromInventory = val4.FromInventory; int slotIndex = val4.SlotIndex; if (!((NetworkIdLookupMap)(ref networkIdLookupMap)).TryGetValue(toEntity, ref val5) || !componentLookup.HasComponent(val5) || !((NetworkIdLookupMap)(ref networkIdLookupMap)).TryGetValue(fromInventory, ref inventory)) { continue; } if (InvalidFamiliarEquipment(inventory, slotIndex)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val6 = new BepInExWarningLogInterpolatedStringHandler(50, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val6).AppendLiteral("[EquipServantItemFromInventorySystem] isLegendary!"); } log.LogWarning(val6); entity.Destroy(immediate: true); } else { Entity servantFamiliar = Familiars.GetServantFamiliar(val5); if (servantFamiliar.Exists()) { Buffs.RefreshStats(servantFamiliar); } } } } finally { val2.Dispose(); val3.Dispose(); } } private static bool InvalidFamiliarEquipment(Entity inventory, int slotIndex) { //IL_0000: 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) //IL_0017: Unknown result type (might be due to invalid IL or missing references) InventoryBuffer val = default(InventoryBuffer); if (InventoryUtilities.TryGetItemAtSlot(EntityManager, inventory, slotIndex, ref val)) { return ((NetworkedEntity)(ref val.ItemEntity)).GetEntityOnServer().IsAncestralWeapon(); } return false; } [HarmonyPatch(typeof(EquipServantItemSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(EquipServantItemSystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0083: 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_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Expected O, but got Unknown //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val3 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val4 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(false); try { _ = NetworkIdSystem; Entity val7 = default(Entity); Entity inventory = default(Entity); bool flag = default(bool); for (int i = 0; i < val2.Length; i++) { Entity entity = val2[i]; EquipServantItemEvent val5 = val3[i]; FromCharacter val6 = val4[i]; NetworkId toEntity = val5.ToEntity; int slotIndex = val5.SlotIndex; Singleton networkIdSystem = NetworkIdSystem; if (!((NetworkIdLookupMap)(ref networkIdSystem._NetworkIdLookupMap)).TryGetValue(toEntity, ref val7) || !componentLookup.HasComponent(val7) || !InventoryUtilities.TryGetInventoryEntity(EntityManager, val6.Character, ref inventory, 0)) { continue; } if (InvalidFamiliarEquipment(inventory, slotIndex)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val8 = new BepInExWarningLogInterpolatedStringHandler(37, 0, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val8).AppendLiteral("[EquipServantItemSystem] isLegendary!"); } log.LogWarning(val8); entity.Destroy(immediate: true); } else { Entity servantFamiliar = Familiars.GetServantFamiliar(val7); if (servantFamiliar.Exists()) { Buffs.RefreshStats(servantFamiliar); } } } } finally { val2.Dispose(); val3.Dispose(); val4.Dispose(); } } [HarmonyPatch(typeof(UnEquipServantItemSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(UnEquipServantItemSystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(false); try { Entity val3 = default(Entity); for (int i = 0; i < val2.Length; i++) { NetworkId fromEntity = val2[i].FromEntity; Singleton networkIdSystem = NetworkIdSystem; if (((NetworkIdLookupMap)(ref networkIdSystem._NetworkIdLookupMap)).TryGetValue(fromEntity, ref val3) && componentLookup.HasComponent(val3)) { Entity servantFamiliar = Familiars.GetServantFamiliar(val3); if (servantFamiliar.Exists()) { Buffs.RefreshStats(servantFamiliar); } } } } finally { val2.Dispose(); } } [HarmonyPatch(typeof(EquipmentTransferSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(EquipmentTransferSystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0083: 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_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: 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_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val3 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val4 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(false); try { _ = NetworkIdSystem; Entity val7 = default(Entity); for (int i = 0; i < val2.Length; i++) { Entity entity = val2[i]; EquipmentToEquipmentTransferEvent val5 = val3[i]; FromCharacter val6 = val4[i]; NetworkId toEntity = val5.ToEntity; EquipmentType equipmentType = val5.EquipmentType; bool servantToCharacter = val5.ServantToCharacter; if (!servantToCharacter) { Singleton networkIdSystem = NetworkIdSystem; if (((NetworkIdLookupMap)(ref networkIdSystem._NetworkIdLookupMap)).TryGetValue(toEntity, ref val7) && componentLookup.HasComponent(val7) && val6.Character.TryGetComponent(out Equipment componentData)) { NetworkedEntity equipmentEntity = ((Equipment)(ref componentData)).GetEquipmentEntity(equipmentType); if (((NetworkedEntity)(ref equipmentEntity)).GetEntityOnServer().IsAncestralWeapon()) { entity.Destroy(immediate: true); continue; } Entity servantFamiliar = Familiars.GetServantFamiliar(val7); if (servantFamiliar.Exists()) { Buffs.RefreshStats(servantFamiliar); } continue; } } if (servantToCharacter) { Entity character = val6.Character; if (character.GetSteamId().HasActiveFamiliar()) { Buffs.RefreshStats(Familiars.GetActiveFamiliar(character)); } } } } finally { val2.Dispose(); val3.Dispose(); val4.Dispose(); } } [HarmonyPatch(typeof(ServantPowerSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(ServantPowerSystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(false); try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (componentLookup.HasComponent(current)) { Entity servantFamiliar = Familiars.GetServantFamiliar(current); if (servantFamiliar.Exists()) { Familiars.SyncFamiliarServant(servantFamiliar, current); } } } } finally { val2.Dispose(); } } [HarmonyPatch(typeof(MoveItemBetweenInventoriesSystem), "OnUpdate")] [HarmonyPrefix] public static void OnUpdatePrefix(MoveItemBetweenInventoriesSystem __instance) { //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Expected O, but got Unknown //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001e: 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_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } using NativeAccessor nativeAccessor = __instance._MoveItemBetweenInventoriesEventQuery.ToEntityArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor2 = __instance._MoveItemBetweenInventoriesEventQuery.ToComponentDataArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor3 = __instance._MoveItemBetweenInventoriesEventQuery.ToComponentDataArrayAccessor((Allocator)2); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(false); try { Entity val3 = default(Entity); for (int i = 0; i < nativeAccessor.Length; i++) { Entity entity = nativeAccessor[i]; MoveItemBetweenInventoriesEvent val = nativeAccessor2[i]; FromCharacter val2 = nativeAccessor3[i]; NetworkId toInventory = val.ToInventory; int fromSlot = val.FromSlot; Singleton networkIdSystem = NetworkIdSystem; if (!((NetworkIdLookupMap)(ref networkIdSystem._NetworkIdLookupMap)).TryGetValue(toInventory, ref val3)) { continue; } Entity character = val2.Character; if (!componentLookup.HasComponent(val3)) { continue; } if (InvalidFamiliarEquipment(character, fromSlot)) { entity.Destroy(immediate: true); continue; } Entity activeFamiliar = Familiars.GetActiveFamiliar(character); if (activeFamiliar.Exists()) { Buffs.RefreshStats(activeFamiliar); } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val4 = new BepInExErrorLogInterpolatedStringHandler(60, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val4).AppendLiteral("[MoveItemBetweenInventoriesSystem] Error in OnUpdatePrefix: "); ((BepInExLogInterpolatedStringHandler)val4).AppendFormatted(ex); } log.LogError(val4); } } } [HarmonyPatch] internal static class GearLevelPatches { private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly Dictionary _playerMaxWeaponLevels = new Dictionary(); private const float SOURCE_LEVEL_FACTOR = 0.3f; private static SystemService SystemService => Core.SystemService; [HarmonyPatch(typeof(WeaponLevelSystem_Destroy), "OnUpdate")] [HarmonyPostfix] private static void WeaponLevelDestroyPostfix(WeaponLevelSystem_Destroy __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_leveling) { return; } EntityQuery _query_1111682408_ = __instance.__query_1111682408_0; NativeArray val = ((EntityQuery)(ref _query_1111682408_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { if (enumerator.Current.TryGetComponent(out EntityOwner componentData) && componentData.Owner.Exists() && componentData.Owner.TryGetPlayer(out var player)) { LevelingSystem.SetLevel(player); } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(WeaponLevelSystem_Spawn), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(WeaponLevelSystem_Spawn __instance) { //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_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: 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_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } EntityQuery _query_1111682356_ = __instance.__query_1111682356_0; NativeArray val = ((EntityQuery)(ref _query_1111682356_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.Has() || !current.TryGetComponent(out EntityOwner componentData) || !componentData.Owner.Exists()) { continue; } if (_expertise && componentData.Owner.TryGetPlayer(out var player)) { WeaponType weaponTypeFromWeaponEntity = WeaponSystem.GetWeaponTypeFromWeaponEntity(current); if (!weaponTypeFromWeaponEntity.Equals(WeaponType.Unarmed)) { weaponTypeFromWeaponEntity.Equals(WeaponType.FishingPole); } Buffs.RefreshStats(player); } if (_leveling && componentData.Owner.TryGetPlayer(out player)) { LevelingSystem.SetLevel(player); } else { if (_leveling || !_expertise || !componentData.Owner.TryGetPlayer(out player)) { continue; } ulong steamId = player.GetSteamId(); if (WeaponSystem.GetWeaponTypeFromWeaponEntity(current).Equals(WeaponType.Unarmed) && steamId.TryGetPlayerUnarmedExpertise(out var expertise)) { float unarmedLevel = expertise.Key; current.With((VExtensions.WithRefHandler)delegate(ref WeaponLevel weaponLevel) { weaponLevel.Level = unarmedLevel; }); } } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(WeaponLevelSystem_Spawn), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePostfix(WeaponLevelSystem_Spawn __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_leveling) { return; } EntityQuery _query_1111682356_ = __instance.__query_1111682356_0; NativeArray val = ((EntityQuery)(ref _query_1111682356_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { if (enumerator.Current.TryGetComponent(out EntityOwner componentData) && componentData.Owner.Exists() && componentData.Owner.TryGetPlayer(out var player)) { LevelingSystem.SetLevel(player); } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(ArmorLevelSystem_Spawn), "OnUpdate")] [HarmonyPrefix] private static void ArmorLevelSpawnPrefix(ArmorLevelSystem_Spawn __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_leveling) { return; } EntityQuery _query_663986227_ = __instance.__query_663986227_0; NativeArray val = ((EntityQuery)(ref _query_663986227_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.TryGetComponent(out EntityOwner componentData) && componentData.Owner.Exists() && componentData.Owner.IsPlayer()) { current.With((VExtensions.WithRefHandler)delegate(ref ArmorLevel armorLevel) { armorLevel.Level = 0f; }); } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(ArmorLevelSystem_Spawn), "OnUpdate")] [HarmonyPostfix] private static void ArmorLevelSpawnPostfix(ArmorLevelSystem_Spawn __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_leveling) { return; } EntityQuery _query_663986227_ = __instance.__query_663986227_0; NativeArray val = ((EntityQuery)(ref _query_663986227_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { if (enumerator.Current.TryGetComponent(out EntityOwner componentData) && componentData.Owner.Exists() && componentData.Owner.TryGetPlayer(out var player)) { LevelingSystem.SetLevel(player); } } } finally { val.Dispose(); } } [HarmonyPatch(typeof(ArmorLevelSystem_Destroy), "OnUpdate")] [HarmonyPostfix] private static void ArmorLevelDestroyPostfix(ArmorLevelSystem_Destroy __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_leveling) { return; } EntityQuery _query_663986292_ = __instance.__query_663986292_0; NativeArray val = ((EntityQuery)(ref _query_663986292_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { if (enumerator.Current.TryGetComponent(out EntityOwner componentData) && componentData.Owner.Exists() && componentData.Owner.TryGetPlayer(out var player)) { LevelingSystem.SetLevel(player); } } } finally { val.Dispose(); } } } [HarmonyPatch] internal static class ImprisonedBuffSystemPatch { private static readonly bool _familiars = ConfigService.FamiliarSystem; private static EntityManager EntityManager => Core.EntityManager; [HarmonyPatch(typeof(ImprisonedBuffSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ImprisonedBuffSystem __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0072: 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_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery _query_1231815368_ = __instance.__query_1231815368_0; NativeArray val = ((EntityQuery)(ref _query_1231815368_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.Has()) { continue; } Entity buffTarget = current.GetBuffTarget(); if (!buffTarget.Has() && buffTarget.Has()) { if (buffTarget.Has()) { buffTarget.Remove(); } if (buffTarget.Has()) { buffTarget.Remove(); } if (buffTarget.Has()) { buffTarget.Remove(); } DestroyUtility.Destroy(EntityManager, buffTarget, (DestroyDebugReason)0, (string)null, 0); } } } finally { val.Dispose(); } } } [HarmonyPatch] internal static class InitializationPatch { [HarmonyPatch(typeof(WarEventRegistrySystem), "RegisterWarEventEntities")] [HarmonyPostfix] private static void RegisterWarEventEntitiesPostfix() { //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Expected O, but got Unknown //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Expected O, but got Unknown bool flag = default(bool); try { Core.OnInitialize(); if (Core.IsReady) { ManualLogSource log = Core.Log; BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(15, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("Bloodcraft"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.13.22"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("] initialized!"); } log.LogInfo(val); } } catch (Exception ex) { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(47, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Bloodcraft"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("1.13.22"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("] failed to initialize, exiting on try-catch: "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log2.LogError(val2); } } } [HarmonyPatch] internal static class ItemPickupSystemPatch { private static readonly bool _quests = ConfigService.QuestSystem; [HarmonyPatch(typeof(ItemPickupSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ItemPickupSystem __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_quests) { return; } EntityQuery query = __instance._Query; NativeArray val = ((EntityQuery)(ref query)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.Has() && current.TryGetComponent(out EntityOwner componentData) && componentData.Owner.Exists() && componentData.Owner.TryGetPlayer(out var player)) { ulong steamId = player.GetSteamId(); if (StatChangeSystemPatch.LastDamageTime.ContainsKey(steamId)) { StatChangeSystemPatch.RemoveOnItemPickup(steamId); } } } } finally { val.Dispose(); } } } [HarmonyPatch] internal static class JewelSpawnSystemPatch { private static readonly Random _random = new Random(); private const float POWER_MIN = 0.25f; private static readonly bool _extraRecipes = ConfigService.ExtraRecipes; private static readonly PrefabGUID _gemCuttingTable = new PrefabGUID(-21483617); private static readonly PrefabGUID _advancedGrinder = new PrefabGUID(-178579946); private static readonly List _jewelTemplates = new List(6) { new PrefabGUID(1412786604), new PrefabGUID(2023809276), new PrefabGUID(97169184), new PrefabGUID(-147757377), new PrefabGUID(-1796954295), new PrefabGUID(271061481) }; private static SystemService SystemService => Core.SystemService; private static SpellModSyncSystem_Server SpellModSyncSystemServer => SystemService.SpellModSyncSystem_Server; [HarmonyPatch(typeof(JewelSpawnSystem), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePostfix(JewelSpawnSystem __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Expected O, but got Unknown //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01aa: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01ba: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_020f: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_0412: Unknown result type (might be due to invalid IL or missing references) //IL_0414: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_033e: Unknown result type (might be due to invalid IL or missing references) //IL_0373: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_extraRecipes) { return; } EntityQuery jewelSpawnQuery = __instance._JewelSpawnQuery; NativeArray val = ((EntityQuery)(ref jewelSpawnQuery)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); bool flag = default(bool); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.TryGetComponent(out PrefabGUID componentData) || !current.TryGetComponent(out InventoryItem componentData2) || !componentData2.ContainerEntity.TryGetComponent(out InventoryConnection componentData3)) { continue; } PrefabGUID prefabGuid = componentData3.InventoryOwner.GetPrefabGuid(); if (!((PrefabGUID)(ref prefabGuid)).Equals(_gemCuttingTable) || !_jewelTemplates.Contains(componentData) || !current.TryGetComponent(out SpellModSetComponent componentData4) || !current.TryGetComponent(out JewelInstance componentData5)) { continue; } PrefabGUID val2 = componentData5.OverrideAbilityType; if (((PrefabGUID)(ref val2)).IsEmpty()) { val2 = componentData5.Ability; } if (!Jewels.TryGetSpellMods(val2, out var spellMods)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val3 = new BepInExWarningLogInterpolatedStringHandler(64, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral("JewelSpawnSystemPatch: No spell mods found for ability group! ("); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(val2); ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral(")"); } log.LogWarning(val3); continue; } List list = new List(); SpellModSet spellMods2 = componentData4.SpellMods; if (Enumerable.Contains(spellMods, spellMods2.Mod0.Id)) { list.Add(spellMods2.Mod0.Id); } if (Enumerable.Contains(spellMods, spellMods2.Mod1.Id)) { list.Add(spellMods2.Mod1.Id); } if (Enumerable.Contains(spellMods, spellMods2.Mod2.Id)) { list.Add(spellMods2.Mod2.Id); } if (Enumerable.Contains(spellMods, spellMods2.Mod3.Id)) { list.Add(spellMods2.Mod3.Id); } if (Enumerable.Contains(spellMods, spellMods2.Mod4.Id)) { list.Add(spellMods2.Mod4.Id); } if (Enumerable.Contains(spellMods, spellMods2.Mod5.Id)) { list.Add(spellMods2.Mod5.Id); } if (Enumerable.Contains(spellMods, spellMods2.Mod6.Id)) { list.Add(spellMods2.Mod6.Id); } if (Enumerable.Contains(spellMods, spellMods2.Mod7.Id)) { list.Add(spellMods2.Mod7.Id); } List list2 = new List(); list2.AddRange(spellMods.Except(list)); List list3 = list2; list3.Shuffle(); int count = 8 - spellMods2.Count; List list4 = new List(); list4.AddRange(list3.Take(count)); List list5 = list4; int num = 0; for (int i = 4; i < 8; i++) { if (num >= list5.Count) { break; } PrefabGUID id = list5[num]; float randomPower = GetRandomPower(); switch (i) { case 4: if (((PrefabGUID)(ref spellMods2.Mod4.Id)).IsEmpty()) { spellMods2.Mod4.Id = id; spellMods2.Mod4.Power = randomPower; num++; } break; case 5: if (((PrefabGUID)(ref spellMods2.Mod5.Id)).IsEmpty()) { spellMods2.Mod5.Id = id; spellMods2.Mod5.Power = randomPower; num++; } break; case 6: if (((PrefabGUID)(ref spellMods2.Mod6.Id)).IsEmpty()) { spellMods2.Mod6.Id = id; spellMods2.Mod6.Power = randomPower; num++; } break; case 7: if (((PrefabGUID)(ref spellMods2.Mod7.Id)).IsEmpty()) { spellMods2.Mod7.Id = id; spellMods2.Mod7.Power = randomPower; num++; } break; } } spellMods2.Count += (byte)list5.Count; if (spellMods2.Count > 8) { spellMods2.Count = 8; } SpellModSyncSystemServer.AddSpellMod(ref spellMods2); componentData4.SpellMods = spellMods2; current.Write(componentData4); SpellModSyncSystemServer.AddSpellMod(ref spellMods2); } } finally { val.Dispose(); } } private static void HandleSpellModSet(Entity entity, ref LegendaryItemSpellModSetComponent spellModSetComponent, ref SpellModSet spellModSet, List setMods, float powerMin = 1f) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0031: 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_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02cf: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) List second = new List(); if (setMods.Contains(spellModSet.Mod0.Id)) { setMods.Add(spellModSet.Mod0.Id); } if (setMods.Contains(spellModSet.Mod1.Id)) { setMods.Add(spellModSet.Mod1.Id); } if (setMods.Contains(spellModSet.Mod2.Id)) { setMods.Add(spellModSet.Mod2.Id); } if (setMods.Contains(spellModSet.Mod3.Id)) { setMods.Add(spellModSet.Mod3.Id); } if (setMods.Contains(spellModSet.Mod4.Id)) { setMods.Add(spellModSet.Mod4.Id); } if (setMods.Contains(spellModSet.Mod5.Id)) { setMods.Add(spellModSet.Mod5.Id); } if (setMods.Contains(spellModSet.Mod6.Id)) { setMods.Add(spellModSet.Mod6.Id); } if (setMods.Contains(spellModSet.Mod7.Id)) { setMods.Add(spellModSet.Mod7.Id); } List list = new List(); list.AddRange(setMods.Except(second)); List list2 = list; list2.Shuffle(); int count = 8 - spellModSet.Count; List list3 = new List(); list3.AddRange(list2.Take(count)); List list4 = list3; int num = 0; for (int i = 4; i < 8; i++) { if (num >= list4.Count) { break; } PrefabGUID id = list4[num]; float power = Mathf.Clamp((float)_random.NextDouble(), powerMin, 1f); switch (i) { case 4: if (((PrefabGUID)(ref spellModSet.Mod4.Id)).IsEmpty()) { spellModSet.Mod4.Id = id; spellModSet.Mod4.Power = power; num++; } break; case 5: if (((PrefabGUID)(ref spellModSet.Mod5.Id)).IsEmpty()) { spellModSet.Mod5.Id = id; spellModSet.Mod5.Power = power; num++; } break; case 6: if (((PrefabGUID)(ref spellModSet.Mod6.Id)).IsEmpty()) { spellModSet.Mod6.Id = id; spellModSet.Mod6.Power = power; num++; } break; case 7: if (((PrefabGUID)(ref spellModSet.Mod7.Id)).IsEmpty()) { spellModSet.Mod7.Id = id; spellModSet.Mod7.Power = power; num++; } break; } } spellModSet.Count += (byte)list4.Count; if (spellModSet.Count > 8) { spellModSet.Count = 8; } SpellModSyncSystemServer.AddSpellMod(ref spellModSet); spellModSetComponent.StatMods = spellModSet; entity.Write(spellModSetComponent); } private static float GetRandomPower() { return 0.25f + (float)_random.NextDouble() * 0.25f; } } [HarmonyPatch] internal static class KnockbackSystemSpawnPatch { private static readonly GameModeType _gameMode = SystemService.ServerGameSettingsSystem._Settings.GameModeType; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly PrefabGUID _pvpProtectionBuff = new PrefabGUID(1111481396); private static readonly PrefabGUID _allyKnockbackBuff = new PrefabGUID(-2099203048); private static ServerGameManager ServerGameManger => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; [HarmonyPatch(typeof(KnockbackSystemSpawn), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(KnockbackSystemSpawn __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_0093: 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) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery _query_1729431709_ = __instance.__query_1729431709_0; NativeArray val = ((EntityQuery)(ref _query_1729431709_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.TryGetComponent(out EntityOwner componentData) || !componentData.Owner.Exists() || !current.TryGetComponent(out PrefabGUID componentData2) || componentData2 == _allyKnockbackBuff) { continue; } Entity buffTarget = current.GetBuffTarget(); Entity owner = componentData.Owner; if (buffTarget.IsDueling()) { continue; } GameModeType gameMode; if (owner.IsFollowingPlayer() && buffTarget.TryGetPlayer(out var player)) { ServerGameManager serverGameManger = ServerGameManger; if (((ServerGameManager)(ref serverGameManger)).IsAllies(buffTarget, owner)) { PreventKnockback(current); continue; } gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)0)) { PreventKnockback(current); } else if (player.HasBuff(_pvpProtectionBuff)) { PreventKnockback(current); } } else { if (!owner.IsPlayer() || ((Entity)(ref owner)).Equals(buffTarget) || !buffTarget.TryGetPlayer(out player)) { continue; } gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)1) && player.HasBuff(_pvpProtectionBuff)) { PreventKnockback(current); continue; } gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)0)) { PreventKnockback(current); } } } } finally { val.Dispose(); } } private static void PreventKnockback(Entity knockbackBuff) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) if (knockbackBuff.TryGetComponent(out Buff componentData) && ((object)(BuffEffectType)(ref componentData.BuffEffectType)).Equals((object)(BuffEffectType)0)) { knockbackBuff.Destroy(); } } } [HarmonyPatch] internal static class LinkMinionToOwnerOnSpawnSystemPatch { private static readonly GameModeType _gameMode = SystemService.ServerGameSettingsSystem._Settings.GameModeType; private static readonly bool _familiars = ConfigService.FamiliarSystem; private const float MINION_LIFETIME = 30f; public static readonly ConcurrentDictionary> FamiliarMinions = new ConcurrentDictionary>(); private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; [HarmonyPatch(typeof(LinkMinionToOwnerOnSpawnSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(LinkMinionToOwnerOnSpawnSystem __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery query = __instance._Query; NativeArray val = ((EntityQuery)(ref query)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.TryGetComponent(out EntityOwner componentData) || !componentData.Owner.Exists()) { continue; } if (componentData.Owner.TryGetFollowedPlayer(out var player)) { Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (activeFamiliar.Exists()) { HandleFamiliarMinionSpawn(activeFamiliar, current); current.Write(new EntityOwner { Owner = player }); } } else if (componentData.Owner.Has()) { HandleFamiliarMinionSpawn(componentData.Owner, current); } else if (componentData.Owner.IsDisabled()) { current.Destroy(); } } } finally { val.Dispose(); } } private static void HandleFamiliarMinionSpawn(Entity familiar, Entity minion) { //IL_0005: 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: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) if (!FamiliarMinions.ContainsKey(familiar)) { FamiliarMinions.TryAdd(familiar, new HashSet { minion }); } else { FamiliarMinions[familiar].Add(minion); } minion.NothingLivesForever(30f); } } [HarmonyPatch] internal static class PlayerTeleportSystemPatch { private static readonly bool _familiars = ConfigService.FamiliarSystem; [HarmonyPatch(typeof(PlayerTeleportSystem), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePrefix(PlayerTeleportSystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[1]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.Has() && current.TryGetComponent(out FromCharacter componentData)) { Entity activeFamiliar = Familiars.GetActiveFamiliar(componentData.Character); if (activeFamiliar.Exists()) { Familiars.TryReturnFamiliar(activeFamiliar, componentData.Character); } } } } finally { val2.Dispose(); } } } [HarmonyPatch] internal static class ReactToInventoryChangedSystemPatch { private static readonly Random _random = new Random(); private static readonly bool _professions = ConfigService.ProfessionSystem; private static readonly bool _quests = ConfigService.QuestSystem; private static readonly bool _extraRecipes = ConfigService.ExtraRecipes; private static readonly WaitForSeconds _delay = new WaitForSeconds(0.5f); private const int MAX_PROFESSION_LEVEL = 100; private const float BASE_PROFESSION_XP = 50f; private const float ALCHEMY_FACTOR = 3f; private const float BLOOD_POTION_FACTOR = 25f; private const float MERLOT_BONUS = 2f; private const float MAX_BLOOD_QUALITY = 100f; private const float ONYX_TEAR_FACTOR = 8f; private const float SCT_DELAY = 0.75f; private const float PRIMAL_DELAY = 0.5f; private static readonly PrefabGUID _itemJewelTemplate = new PrefabGUID(1075994038); private static readonly PrefabGUID _advancedGrinder = new PrefabGUID(-178579946); private static readonly PrefabGUID _gemCuttingTable = new PrefabGUID(-21483617); private static readonly PrefabGUID _onyxTear = PrefabGUIDs.Item_Ingredient_OnyxTear; private static readonly List _jewelTemplates = new List(6) { new PrefabGUID(1412786604), new PrefabGUID(2023809276), new PrefabGUID(97169184), new PrefabGUID(-147757377), new PrefabGUID(-1796954295), new PrefabGUID(271061481) }; private static readonly List _perfectGems = new List(6) { PrefabGUIDs.Item_Ingredient_Gem_Amethyst_T04, PrefabGUIDs.Item_Ingredient_Gem_Ruby_T04, PrefabGUIDs.Item_Ingredient_Gem_Sapphire_T04, PrefabGUIDs.Item_Ingredient_Gem_Emerald_T04, PrefabGUIDs.Item_Ingredient_Gem_Topaz_T04, PrefabGUIDs.Item_Ingredient_Gem_Miststone_T04 }; private static readonly Dictionary _perfectGemPrimals = new Dictionary { { PrefabGUIDs.Item_Ingredient_Gem_Emerald_T04, PrefabGUIDs.Item_Jewel_Unholy_T04 }, { PrefabGUIDs.Item_Ingredient_Gem_Topaz_T04, PrefabGUIDs.Item_Jewel_Storm_T04 }, { PrefabGUIDs.Item_Ingredient_Gem_Miststone_T04, PrefabGUIDs.Item_Jewel_Illusion_T04 }, { PrefabGUIDs.Item_Ingredient_Gem_Sapphire_T04, PrefabGUIDs.Item_Jewel_Frost_T04 }, { PrefabGUIDs.Item_Ingredient_Gem_Amethyst_T04, PrefabGUIDs.Item_Jewel_Chaos_T04 }, { PrefabGUIDs.Item_Ingredient_Gem_Ruby_T04, PrefabGUIDs.Item_Jewel_Blood_T04 } }; private static readonly ConcurrentDictionary _stationCooldowns = new ConcurrentDictionary(); private const float PRIMAL_COOLDOWN = 0.25f; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static JewelSpawnSystem JewelSpawnSystem => SystemService.JewelSpawnSystem; [HarmonyPatch(typeof(ReactToInventoryChangedSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ReactToInventoryChangedSystem __instance) { //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_0200: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_01b7: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_028a: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_02a6: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03b6: Unknown result type (might be due to invalid IL or missing references) //IL_03c2: Unknown result type (might be due to invalid IL or missing references) //IL_0410: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_0456: Unknown result type (might be due to invalid IL or missing references) //IL_0462: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_0432: Unknown result type (might be due to invalid IL or missing references) //IL_0434: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_03f0: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_professions && !_quests && !_extraRecipes)) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); DynamicBuffer val5 = default(DynamicBuffer); while (enumerator.MoveNext()) { InventoryChangedEvent current = enumerator.Current; Entity inventoryEntity = current.InventoryEntity; InventoryChangedEventType changeType = current.ChangeType; if (!((object)(InventoryChangedEventType)(ref changeType)).Equals((object)(InventoryChangedEventType)1) || !inventoryEntity.TryGetComponent(out InventoryConnection componentData)) { continue; } if (_quests && componentData.InventoryOwner.IsPlayer()) { User val3 = componentData.InventoryOwner.Read().UserEntity.Read(); if (StatChangeSystemPatch.LastDamageTime.TryGetValue(val3.PlatformId, out var value) && (DateTime.UtcNow - value).TotalSeconds < 0.10000000149011612 && val3.PlatformId.TryGetPlayerQuests(out Dictionary quests)) { QuestSystem.ProcessQuestProgress(quests, current.Item, current.Amount, val3); } } else { if (!componentData.InventoryOwner.TryGetComponent(out UserOwner componentData2) || !((NetworkedEntity)(ref componentData2.Owner)).GetEntityOnServer().TryGetComponent(out User componentData3)) { continue; } Entity inventoryOwner = componentData.InventoryOwner; ulong platformId = componentData3.PlatformId; Dictionary dictionary = new Dictionary(); Entity entityOnServer = ((NetworkedEntity)(ref componentData3.ClanEntity)).GetEntityOnServer(); PrefabGUID val4 = current.Item; Entity itemEntity = current.ItemEntity; string prefabName = val4.GetPrefabName(); if (_extraRecipes) { PrefabGUID prefabGuid = inventoryOwner.GetPrefabGuid(); if (((PrefabGUID)(ref prefabGuid)).Equals(_gemCuttingTable) && ((PrefabGUID)(ref val4)).Equals(_itemJewelTemplate)) { SpawnPrimalJewel(inventoryOwner, inventoryEntity); continue; } } if (itemEntity.Has()) { int currentTier = itemEntity.Read().CurrentTier; val4 = itemEntity.ReadBuffer()[currentTier].TierPrefab; } if (!entityOnServer.Exists()) { dictionary.TryAdd(componentData3.PlatformId, componentData3); } else { ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryGetBuffer(entityOnServer, ref val5) && !val5.IsEmpty) { Enumerator enumerator2 = val5.GetEnumerator(); while (enumerator2.MoveNext()) { if (enumerator2.Current.UserEntity.TryGetComponent(out User componentData4)) { dictionary.TryAdd(componentData4.PlatformId, componentData4); } } } } foreach (KeyValuePair item in dictionary) { platformId = item.Key; componentData3 = item.Value; if (!CraftingSystemPatches.ValidatedCraftingJobs.TryGetValue(platformId, out var value2) || !value2.TryGetValue(inventoryOwner, out var value3) || !value3.TryGetValue(val4, out var value4) || value4 <= 0) { continue; } value4--; if (value4 == 0) { value3.Remove(val4); } else { value3[val4] = value4; } if (_quests && platformId.TryGetPlayerQuests(out Dictionary quests2)) { QuestSystem.ProcessQuestProgress(quests2, val4, 1, componentData3); } if (!_professions) { break; } float num = 50f * (float)ProfessionMappings.GetTierMultiplier(val4); float delay = 0.75f; if (prefabName.Contains("Elixir")) { num *= 2f; } IProfession profession = ProfessionFactory.GetProfession(val4); if (profession == null || profession.GetProfessionEnum().IsDisabled()) { continue; } if (!(profession is BlacksmithingProfession)) { if (!(profession is AlchemyProfession)) { if (!(profession is EnchantingProfession)) { if (profession is TailoringProfession) { ProfessionSystem.SetProfession(componentData.InventoryOwner, ((NetworkedEntity)(ref componentData3.LocalCharacter)).GetEntityOnServer(), platformId, num, profession, ref delay); EquipmentQualityManager.ApplyPlayerEquipmentStats(platformId, itemEntity); } } else { ProfessionSystem.SetProfession(componentData.InventoryOwner, ((NetworkedEntity)(ref componentData3.LocalCharacter)).GetEntityOnServer(), platformId, num, profession, ref delay); EquipmentQualityManager.ApplyPlayerEquipmentStats(platformId, itemEntity); } } else { if (itemEntity.TryGetComponent(out StoredBlood componentData5)) { float num2 = ((!prefabName.Contains("Bloodwine")) ? 2.5f : 5f); float num3 = 1f + componentData5.BloodQuality / 100f; num2 += num3; num *= num2; } ProfessionSystem.SetProfession(value: (!((PrefabGUID)(ref val4)).Equals(_onyxTear)) ? (num * 3f) : (num * 8f), target: componentData.InventoryOwner, source: ((NetworkedEntity)(ref componentData3.LocalCharacter)).GetEntityOnServer(), steamID: platformId, handler: profession, delay: ref delay); } } else { ProfessionSystem.SetProfession(componentData.InventoryOwner, ((NetworkedEntity)(ref componentData3.LocalCharacter)).GetEntityOnServer(), platformId, num, profession, ref delay); EquipmentQualityManager.ApplyPlayerEquipmentStats(platformId, itemEntity); } break; } } } } finally { val2.Dispose(); } } private static void SpawnPrimalJewel(Entity station, Entity inventory) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) if (!station.TryGetComponent(out NetworkId componentData)) { return; } DateTime utcNow = DateTime.UtcNow; if (_stationCooldowns.TryGetValue(componentData, out var value) && (utcNow - value).TotalSeconds < 0.25) { return; } _stationCooldowns[componentData] = utcNow; ResetStation(componentData).Run(); PrefabGUID val = PrefabGUID.Empty; PrefabGUID val2 = PrefabGUID.Empty; ServerGameManager serverGameManager; foreach (PrefabGUID perfectGem in _perfectGems) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(station, perfectGem) > 0) { val = perfectGem; break; } } if (_perfectGemPrimals.TryGetValue(val, out var value2)) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(station, val, 1)) { val2 = value2; } } serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(inventory, _itemJewelTemplate, 1)) { if (!((PrefabGUID)(ref val2)).HasValue()) { val2 = _jewelTemplates.ElementAt(_random.Next(_jewelTemplates.Count)); } serverGameManager = ServerGameManager; AddItemResponse val3 = ((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(inventory, val2, 1); if (((AddItemResponse)(ref val3)).Success && val3.NewEntity.TryGetComponent(out JewelInstance componentData2)) { Entity newEntity = val3.NewEntity; UninitializedJewelAbility val4 = default(UninitializedJewelAbility); val4.AbilityGuid = PrefabGUID.Empty; val4.JewelEntity = newEntity; val4.JewelTier = componentData2.TierIndex; UninitializedJewelAbility val5 = val4; JewelSpawnSystem.InitializeSpawnedJewel(val5, false); } } } private static IEnumerator ResetStation(NetworkId networkId) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) yield return _delay; _stationCooldowns.TryRemove(networkId, out var _); } } [HarmonyPatch] internal static class ReplaceAbilityOnSlotSystemPatch { private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _unarmedSlots = ConfigService.UnarmedSlots; private static readonly bool _duality = ConfigService.Duality; private static readonly bool _shiftSlot = ConfigService.ShiftSlot; private static readonly bool _shapeshiftAbilities = ConfigService.BearFormDash; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static ActivateVBloodAbilitySystem ActivateVBloodAbilitySystem => SystemService.ActivateVBloodAbilitySystem; [HarmonyPatch(typeof(ReplaceAbilityOnSlotSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ReplaceAbilityOnSlotSystem __instance) { //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_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } EntityQuery _query_1482480545_ = __instance.__query_1482480545_0; NativeArray val = ((EntityQuery)(ref _query_1482480545_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.TryGetComponent(out EntityOwner componentData) && componentData.Owner.Exists() && componentData.Owner.TryGetPlayer(out var player)) { ulong steamId = player.GetSteamId(); string prefabName = current.GetPrefabGuid().GetPrefabName(); bool flag = prefabName.Contains("unarmed", StringComparison.CurrentCultureIgnoreCase) || prefabName.Contains("fishingpole", StringComparison.CurrentCultureIgnoreCase); bool flag2 = prefabName.Contains("weapon", StringComparison.CurrentCultureIgnoreCase); if (_unarmedSlots && flag && steamId.TryGetPlayerSpells(out (int, int, int) spells)) { HandleExtraSpells(current, steamId, spells); } else if (_shiftSlot && flag2 && steamId.TryGetPlayerSpells(out spells)) { HandleShiftSpell(current, spells, Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ShiftLock")); } else if (!current.Has() && steamId.TryGetPlayerSpells(out spells)) { SetSpells(current, steamId, spells); } } } } finally { val.Dispose(); } } private static void HandleExtraSpells(Entity entity, ulong steamId, (int FirstUnarmed, int SecondUnarmed, int ClassSpell) spells) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0018: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) DynamicBuffer val = entity.ReadBuffer(); if (!spells.FirstUnarmed.Equals(0)) { ReplaceAbilityOnSlotBuff val2 = default(ReplaceAbilityOnSlotBuff); val2.Slot = 1; val2.NewGroupId = new PrefabGUID(spells.FirstUnarmed); val2.CopyCooldown = true; val2.Priority = 0; ReplaceAbilityOnSlotBuff val3 = val2; val.Add(val3); } if (_duality && !spells.SecondUnarmed.Equals(0)) { ReplaceAbilityOnSlotBuff val2 = default(ReplaceAbilityOnSlotBuff); val2.Slot = 4; val2.NewGroupId = new PrefabGUID(spells.SecondUnarmed); val2.CopyCooldown = true; val2.Priority = 0; ReplaceAbilityOnSlotBuff val4 = val2; val.Add(val4); } HandleShiftSpell(entity, spells, Misc.PlayerBoolsManager.GetPlayerBool(steamId, "ShiftLock")); } private static void HandleShiftSpell(Entity entity, (int FirstUnarmed, int SecondUnarmed, int ClassSpell) spells, bool shiftLock) { //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(spells.ClassSpell); Entity entity2 = default(Entity); if (shiftLock && (!PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(val, ref entity2) || !entity2.Has()) && ((PrefabGUID)(ref val)).HasValue()) { DynamicBuffer val2 = entity.ReadBuffer(); ReplaceAbilityOnSlotBuff val3 = default(ReplaceAbilityOnSlotBuff); val3.Slot = 3; val3.NewGroupId = new PrefabGUID(spells.ClassSpell); val3.CopyCooldown = true; val3.Priority = 0; ReplaceAbilityOnSlotBuff val4 = val3; val2.Add(val4); } } private static void SetSpells(Entity entity, ulong steamId, (int FirstUnarmed, int SecondUnarmed, int ClassSpell) spells) { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) bool playerBool = Misc.PlayerBoolsManager.GetPlayerBool(steamId, "SpellLock"); Enumerator enumerator = entity.ReadBuffer().GetEnumerator(); while (enumerator.MoveNext()) { ReplaceAbilityOnSlotBuff current = enumerator.Current; PrefabGUID newGroupId; if (current.Slot == 5 && playerBool) { newGroupId = current.NewGroupId; spells = (((PrefabGUID)(ref newGroupId)).GuidHash, spells.SecondUnarmed, spells.ClassSpell); } if (current.Slot == 6 && playerBool) { int item = spells.FirstUnarmed; newGroupId = current.NewGroupId; spells = (item, ((PrefabGUID)(ref newGroupId)).GuidHash, spells.ClassSpell); } } steamId.SetPlayerSpells(spells); } } [HarmonyPatch] internal static class ScriptSpawnServerPatch { public static ServerGameBalanceSettings _serverGameBalanceSettings = ServerGameBalanceSettings.Get(SystemService.ServerGameSettingsSystem._ServerBalanceSettings); private const float DELAY = 1f; private static readonly WaitForSeconds _delay = new WaitForSeconds(1f); private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _legacies = ConfigService.LegacySystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _exoForm = ConfigService.ExoPrestiging; private static readonly int _maxLevel = ConfigService.MaxLevel; private static readonly bool _shouldApplyBonusStats = _legacies || _expertise || _classes || _familiars; private static readonly float _bloodBoltSwarmCooldown = Shapeshifts.GetShapeshiftAbilityCooldown(_bloodBoltSwarmGroup); private static readonly PrefabGUID _castleManCombatBuff = Buffs.CastleManCombatBuff; private static readonly PrefabGUID _standardWerewolfBuff = Buffs.StandardWerewolfBuff; private static readonly PrefabGUID _vBloodWerewolfBuff = Buffs.VBloodWerewolfBuff; private static readonly PrefabGUID _bloodBoltBeamTrigger = PrefabGUIDs.AB_Vampire_Dracula_BloodBoltSwarm_BeamTrigger; private static readonly PrefabGUID _bloodBoltSwarmTrigger = PrefabGUIDs.AB_Vampire_Dracula_BloodBoltSwarm_Trigger; private static readonly PrefabGUID _bloodBoltSwarmTriggerDeadZone = PrefabGUIDs.AB_Vampire_Dracula_BloodBoltSwarm_TriggerDeadZonePunish; private static readonly PrefabGUID _bloodBoltChannelBuff = PrefabGUIDs.AB_Vampire_Dracula_BloodBoltSwarm_ChannelBuff; private static readonly PrefabGUID _bloodBoltSwarmGroup = PrefabGUIDs.AB_Vampire_Dracula_BloodBoltSwarm_AbilityGroup; private static readonly PrefabGUID _bonusStatsBuff = Buffs.BonusStatsBuff; private static readonly bool _eliteShardBearers = ConfigService.EliteShardBearers; private static readonly int _shardBearerLevel = ConfigService.ShardBearerLevel; private static readonly PrefabGUID _dracula = new PrefabGUID(-327335305); private static readonly PrefabGUID _draculaVisual = PrefabGUIDs.AB_Shapeshift_BloodHunger_BloodSight_Buff; private static readonly HashSet _shapeshiftBuffs; private static readonly HashSet _bloodBoltSwarmTriggers; private static readonly HashSet _werewolfBuffs; private static readonly EntityQuery _query; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static ModificationSystem ModificationSystem => SystemService.ModificationSystem; public static ModificationsRegistry ModificationsRegistry => ModificationSystem._Registry; [HarmonyPatch(typeof(ScriptSpawnServer), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ScriptSpawnServer __instance) { //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Expected O, but got Unknown //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0014: 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_002c: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0220: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0282: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_025e: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_028d: Unknown result type (might be due to invalid IL or missing references) //IL_0292: Unknown result type (might be due to invalid IL or missing references) //IL_0294: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } using NativeAccessor nativeAccessor = _query.ToEntityArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor4 = _query.ToComponentDataArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor2 = _query.ToComponentDataArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor3 = _query.ToComponentDataArrayAccessor((Allocator)2); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup componentLookup2 = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup componentLookup3 = ((SystemBase)__instance).GetComponentLookup(true); try { for (int i = 0; i < nativeAccessor.Length; i++) { Entity val = nativeAccessor[i]; Entity target = nativeAccessor2[i].Target; Entity owner = nativeAccessor3[i].Owner; PrefabGUID val2 = nativeAccessor4[i]; if (!target.Exists()) { continue; } bool flag = componentLookup.HasComponent(target); bool flag2 = componentLookup2.HasComponent(target); componentLookup2.HasComponent(owner); bool isBloodBuff = componentLookup3.HasComponent(val); Buff val3 = nativeAccessor2[i]; bool isDebuff = ((object)(BuffEffectType)(ref val3.BuffEffectType)).Equals((object)(BuffEffectType)0); Entity player; switch (GetBuffType(val2, isDebuff, flag, flag2, isBloodBuff)) { case 1: Shapeshifts.ModifyShapeshiftBuff(val, target, val2); break; case 2: val.Remove(); val.Remove(); break; case 3: if (_bloodBoltSwarmCooldown != 0f) { ServerGameManager serverGameManager = ServerGameManager; ((ServerGameManager)(ref serverGameManager)).SetAbilityGroupCooldown(val.GetOwner(), _bloodBoltSwarmGroup, _bloodBoltSwarmCooldown); } break; case 4: if (_shouldApplyBonusStats) { if (flag) { ApplyPlayerBonusStats(val, target); } if (flag2) { ApplyFamiliarBonusStats(val, target); } } break; case 6: if (_leveling && flag) { val.With((VExtensions.WithRefHandler)delegate(ref SpellLevel spellLevel) { spellLevel.Level = 0f; }); } break; case 7: if (_legacies && BloodSystem.BloodBuffToBloodType.ContainsKey(val2)) { Buffs.RefreshStats(target); } break; case 8: if (_familiars && owner.IsFamiliar() && owner.IsAllied(target)) { val.Destroy(); } break; case 9: if (_familiars && target.TryGetFollowedPlayer(out player) && Familiars.GetActiveFamiliar(player).Exists()) { Familiars.HandleFamiliarCastleMan(val); } break; case 10: if (_familiars && target.TryGetFollowedPlayer(out player)) { Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (activeFamiliar.Exists()) { Familiars.HandleFamiliarShapeshiftRoutine(player.GetUser(), player, activeFamiliar).Start(); } } break; } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag3 = default(bool); BepInExWarningLogInterpolatedStringHandler val4 = new BepInExWarningLogInterpolatedStringHandler(37, 1, ref flag3); if (flag3) { ((BepInExLogInterpolatedStringHandler)val4).AppendLiteral("[ScriptSpawnServer.OnUpdatePrefix] - "); ((BepInExLogInterpolatedStringHandler)val4).AppendFormatted(ex); } log.LogWarning(val4); } } private static int GetBuffType(PrefabGUID prefabGuid, bool isDebuff, bool targetIsPlayer, bool targetIsFamiliar, bool isBloodBuff) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) int guidHash = ((PrefabGUID)(ref prefabGuid)).GuidHash; if (_bloodBoltSwarmTriggers.Contains(guidHash) && targetIsPlayer) { return 2; } PrefabGUID bonusStatsBuff; if (targetIsPlayer) { bonusStatsBuff = _bonusStatsBuff; if (((PrefabGUID)(ref bonusStatsBuff)).Equals(prefabGuid)) { return 4; } if (_shapeshiftBuffs.Contains(guidHash)) { return 1; } if (guidHash == 136816739) { return 3; } if (isBloodBuff) { return 7; } if (isDebuff) { return 8; } return 0; } if (targetIsFamiliar) { bonusStatsBuff = _bonusStatsBuff; if (((PrefabGUID)(ref bonusStatsBuff)).Equals(prefabGuid)) { return 4; } if (_werewolfBuffs.Contains(guidHash)) { return 10; } if (guidHash == 731266864) { return 9; } return 0; } return 0; } private static void ApplyPlayerBonusStats(Entity buffEntity, Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) ulong steamId = playerCharacter.GetSteamId(); if (buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer) && dynamicBuffer.IsEmpty) { SyncToUserBuffer val = default(SyncToUserBuffer); val.UserEntity = playerCharacter.GetUserEntity(); SyncToUserBuffer val2 = val; dynamicBuffer.Add(val2); } BloodManager.UpdateBloodStats(buffEntity, playerCharacter, steamId); WeaponManager.UpdateWeaponStats(buffEntity, playerCharacter, steamId); } private static void ApplyFamiliarBonusStats(Entity buffEntity, Entity familiar) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_0093: 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_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0123: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) if (!familiar.TryGetFollowedPlayer(out var player)) { return; } Entity familiarServant = Familiars.GetFamiliarServant(player); buffEntity.Remove(); if (!familiarServant.TryGetComponent(out ServantEquipment componentData)) { return; } List list = new List(); NativeList val = default(NativeList); val..ctor(AllocatorHandle.op_Implicit((Allocator)2)); NativeList val2 = default(NativeList); val2..ctor(AllocatorHandle.op_Implicit((Allocator)2)); try { BuffUtility.TryGetBuffs(EntityManager, familiar, val2); ((ServantEquipment)(ref componentData)).GetAllEquipmentEntities(val); NetworkedEntity equipmentEntity = ((ServantEquipment)(ref componentData)).GetEquipmentEntity((EquipmentType)3); EquippableData componentData2; PrefabGUID prefabGuid = (((NetworkedEntity)(ref equipmentEntity)).GetEntityOnServer().TryGetComponent(out componentData2) ? componentData2.BuffGuid : PrefabGUID.Empty); Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { if (enumerator.Current.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { Enumerator enumerator2 = dynamicBuffer.GetEnumerator(); while (enumerator2.MoveNext()) { ModifyUnitStatBuff_DOTS current = enumerator2.Current; list.Add(current); } } } enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { enumerator.Current.Destroy(); } if (list.Any() && buffEntity.TryGetBuffer(out DynamicBuffer dynamicBuffer2)) { dynamicBuffer2.Clear(); foreach (ModifyUnitStatBuff_DOTS item in list) { dynamicBuffer2.Add(item); } } if (((PrefabGUID)(ref prefabGuid)).HasValue()) { familiar.TryApplyBuff(prefabGuid); } } finally { val.Dispose(); val2.Dispose(); } Familiars.FamiliarSyncDelayRoutine(familiar, familiarServant).Start(); } [HarmonyPatch(typeof(ScriptSpawnServer), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePostfix(ScriptSpawnServer __instance) { //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Expected O, but got Unknown //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_001a: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } bool leveling = _leveling; using NativeAccessor nativeAccessor = _query.ToEntityArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor2 = _query.ToComponentDataArrayAccessor((Allocator)2); try { for (int i = 0; i < nativeAccessor.Length; i++) { Entity entity = nativeAccessor[i]; Entity target = nativeAccessor2[i].Target; if (leveling && entity.HasSpellLevel() && target.IsPlayer()) { LevelingSystem.SetLevel(target); } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(38, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[ScriptSpawnServer.OnUpdatePostfix] - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } } private static void ApplyEliteDraculaModifiers(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0033: 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_0058: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) entity.Remove(); if (_shardBearerLevel > 0) { entity.With((VExtensions.WithRefHandler)delegate(ref UnitLevel unitLevel) { unitLevel.Level._Value = _shardBearerLevel; }); } entity.With((VExtensions.WithRefHandler)delegate(ref AbilityBar_Shared abilityBarShared) { abilityBarShared.AbilityAttackSpeed._Value = 2f; abilityBarShared.PrimaryAttackSpeed._Value = 2f; }); entity.With((VExtensions.WithRefHandler)delegate(ref Health health) { health.MaxHealth._Value *= 5f; health.Value = health.MaxHealth._Value; }); entity.With((VExtensions.WithRefHandler)delegate(ref UnitStats unitStats) { unitStats.PhysicalPower._Value *= 1.5f; unitStats.SpellPower._Value *= 1.5f; }); entity.With((VExtensions.WithRefHandler)delegate(ref AiMoveSpeeds aiMoveSpeeds) { aiMoveSpeeds.Walk._Value = 2.5f; aiMoveSpeeds.Run._Value = 3.5f; }); Buffs.HandleShinyBuff(entity, _draculaVisual); } static ScriptSpawnServerPatch() { //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Expected O, but got Unknown //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_01da: Unknown result type (might be due to invalid IL or missing references) HashSet hashSet = new HashSet(); PrefabGUID val = Buffs.EvolvedVampireBuff; hashSet.Add(((PrefabGUID)(ref val)).GuidHash); val = Buffs.CorruptedSerpentBuff; hashSet.Add(((PrefabGUID)(ref val)).GuidHash); val = Buffs.AncientGuardianBuff; hashSet.Add(((PrefabGUID)(ref val)).GuidHash); _shapeshiftBuffs = hashSet; _bloodBoltSwarmTriggers = new HashSet { ((PrefabGUID)(ref _bloodBoltBeamTrigger)).GuidHash, ((PrefabGUID)(ref _bloodBoltSwarmTrigger)).GuidHash, ((PrefabGUID)(ref _bloodBoltSwarmTriggerDeadZone)).GuidHash }; _werewolfBuffs = new HashSet { ((PrefabGUID)(ref _standardWerewolfBuff)).GuidHash, ((PrefabGUID)(ref _vBloodWerewolfBuff)).GuidHash }; _query = QueryService.ScriptSpawnServerQuery; } } [HarmonyPatch] internal static class ServerBootstrapSystemPatches { private static readonly WaitForSeconds _delay = new WaitForSeconds(1f); private static readonly WaitForSeconds _newCharacterDelay = new WaitForSeconds(2.5f); private static readonly PrefabGUID _insideWoodenCoffin = new PrefabGUID(381160212); private static readonly PrefabGUID _insideStoneCoffin = new PrefabGUID(569692162); private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _legacies = ConfigService.LegacySystem; private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _prestige = ConfigService.PrestigeSystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _quests = ConfigService.QuestSystem; private static readonly bool _exoForm = ConfigService.ExoPrestiging; private static readonly bool _restedXP = ConfigService.RestedXPSystem; private static readonly bool _professions = ConfigService.ProfessionSystem; private static readonly float _restedXPTickRate = ConfigService.RestedXPTickRate; private static readonly float _restedXPRate = ConfigService.RestedXPRate; private static readonly int _restedXPMax = ConfigService.RestedXPMax; private static readonly int _startingLevel = ConfigService.StartingLevel; private static readonly int _maxLevel = ConfigService.MaxLevel; private static readonly PrefabGUID _shroudBuff = Buffs.ShroudBuff; private static readonly PrefabGUID _shroudCloak = PrefabGUIDs.Item_Cloak_Main_ShroudOfTheForest; private static readonly PrefabGUID _bonusStatsBuff = Buffs.BonusPlayerStatsBuff; private static readonly PrefabGUID _relicDebuff = PrefabGUIDs.Buff_General_RelicCarryDebuff; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; [HarmonyPatch(typeof(ServerBootstrapSystem), "OnUserConnected")] [HarmonyPostfix] private static void OnUserConnectedPostfix(ServerBootstrapSystem __instance, NetConnectionId netConnectionId) { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) int num = default(int); if (__instance._NetEndPointToApprovedUserIndex.TryGetValue(netConnectionId, ref num)) { Entity userEntity = ((Il2CppArrayBase)(object)__instance._ApprovedUsersLookup)[num].UserEntity; EntityManager entityManager = ((ComponentSystemBase)__instance).EntityManager; User componentData = ((EntityManager)(ref entityManager)).GetComponentData(userEntity); ulong steamId = userEntity.GetSteamId(); Entity entityOnServer = ((NetworkedEntity)(ref componentData.LocalCharacter)).GetEntityOnServer(); UpdatePlayerData(exists: entityOnServer.Exists(), steamId: steamId, playerCharacter: entityOnServer, userEntity: userEntity, user: componentData).Start(); } } private static IEnumerator UpdatePlayerData(ulong steamId, Entity playerCharacter, Entity userEntity, User user, bool exists) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_000f: 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_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) yield return _delay; DataService.PlayerBoolsManager.GetOrInitializePlayerBools(steamId, Misc.PlayerBoolsManager.DefaultBools); KeyValuePair expertise; if (_professions) { if (!steamId.TryGetPlayerWoodcutting(out expertise)) { steamId.SetPlayerWoodcutting(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerMining(out expertise)) { steamId.SetPlayerMining(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerFishing(out expertise)) { steamId.SetPlayerFishing(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerBlacksmithing(out expertise)) { steamId.SetPlayerBlacksmithing(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerTailoring(out expertise)) { steamId.SetPlayerTailoring(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerAlchemy(out expertise)) { steamId.SetPlayerAlchemy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerHarvesting(out expertise)) { steamId.SetPlayerHarvesting(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerEnchanting(out expertise)) { steamId.SetPlayerEnchanting(new KeyValuePair(0, 0f)); } } (int, int, int) spells; if (_expertise) { if (!steamId.TryGetPlayerUnarmedExpertise(out expertise)) { steamId.SetPlayerUnarmedExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerSpells(out spells)) { steamId.SetPlayerSpells((0, 0, 0)); } if (!steamId.TryGetPlayerSwordExpertise(out expertise)) { steamId.SetPlayerSwordExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerAxeExpertise(out expertise)) { steamId.SetPlayerAxeExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerMaceExpertise(out expertise)) { steamId.SetPlayerMaceExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerSpearExpertise(out expertise)) { steamId.SetPlayerSpearExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerCrossbowExpertise(out expertise)) { steamId.SetPlayerCrossbowExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerGreatSwordExpertise(out expertise)) { steamId.SetPlayerGreatSwordExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerSlashersExpertise(out expertise)) { steamId.SetPlayerSlashersExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerPistolsExpertise(out expertise)) { steamId.SetPlayerPistolsExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerReaperExpertise(out expertise)) { steamId.SetPlayerReaperExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerLongbowExpertise(out expertise)) { steamId.SetPlayerLongbowExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerWhipExpertise(out expertise)) { steamId.SetPlayerWhipExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerFishingPoleExpertise(out expertise)) { steamId.SetPlayerFishingPoleExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerTwinBladesExpertise(out expertise)) { steamId.SetPlayerTwinBladesExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerDaggersExpertise(out expertise)) { steamId.SetPlayerDaggersExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerClawsExpertise(out expertise)) { steamId.SetPlayerClawsExpertise(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerWeaponStats(out var weaponStats)) { weaponStats = new Dictionary>(); WeaponType[] values = Enum.GetValues(); foreach (WeaponType key in values) { weaponStats.Add(key, new List()); } steamId.SetPlayerWeaponStats(weaponStats); } else { WeaponType[] values = Enum.GetValues(); foreach (WeaponType key2 in values) { if (!weaponStats.ContainsKey(key2)) { weaponStats.Add(key2, new List()); } } } } if (_legacies) { if (!steamId.TryGetPlayerWorkerLegacy(out expertise)) { steamId.SetPlayerWorkerLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerWarriorLegacy(out expertise)) { steamId.SetPlayerWarriorLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerScholarLegacy(out expertise)) { steamId.SetPlayerScholarLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerRogueLegacy(out expertise)) { steamId.SetPlayerRogueLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerMutantLegacy(out expertise)) { steamId.SetPlayerMutantLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerDraculinLegacy(out expertise)) { steamId.SetPlayerDraculinLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerImmortalLegacy(out expertise)) { steamId.SetPlayerImmortalLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerCreatureLegacy(out expertise)) { steamId.SetPlayerCreatureLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerBruteLegacy(out expertise)) { steamId.SetPlayerBruteLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerCorruptionLegacy(out expertise)) { steamId.SetPlayerCorruptionLegacy(new KeyValuePair(0, 0f)); } if (!steamId.TryGetPlayerBloodStats(out var bloodStats)) { bloodStats = new Dictionary>(); BloodType[] values2 = Enum.GetValues(); foreach (BloodType key3 in values2) { bloodStats.Add(key3, new List()); } steamId.SetPlayerBloodStats(bloodStats); } else { BloodType[] values2 = Enum.GetValues(); foreach (BloodType key4 in values2) { if (!bloodStats.ContainsKey(key4)) { bloodStats.Add(key4, new List()); } } } } if (_leveling) { if (!steamId.TryGetPlayerExperience(out var experience)) { steamId.SetPlayerExperience(new KeyValuePair(_startingLevel, Progression.ConvertLevelToXp(_startingLevel))); } if (_restedXP) { if (!steamId.TryGetPlayerRestedXP(out var restedXP)) { steamId.SetPlayerRestedXP(new KeyValuePair(DateTime.UtcNow, 0f)); } else if (exists) { float num = 0f; ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).HasBuff(playerCharacter, PrefabIdentifier.op_Implicit(_insideWoodenCoffin))) { num = 0.5f; } else { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).HasBuff(playerCharacter, PrefabIdentifier.op_Implicit(_insideStoneCoffin))) { num = 1f; } } DateTime key5 = restedXP.Key; TimeSpan timeSpan = DateTime.UtcNow - key5; if (timeSpan.TotalMinutes >= (double)_restedXPTickRate && num != 0f && experience.Key < _maxLevel) { float value = restedXP.Value; int key6 = experience.Key; float num2 = Progression.ConvertLevelToXp(Math.Min(_restedXPMax + key6, _maxLevel)) - Progression.ConvertLevelToXp(key6); float num3 = _restedXPRate * num2; float num4 = (float)timeSpan.TotalMinutes / _restedXPTickRate * num3 * num; value = Math.Min(value + num4, num2); int value2 = (int)(Math.Round((double)value / 100.0) * 100.0); steamId.SetPlayerRestedXP(new KeyValuePair(DateTime.UtcNow, value)); string message = $"+{value2} rested experience earned from being logged out in your coffin!"; LocalizationService.HandleServerReply(EntityManager, user, message); } } } if (exists) { LevelingSystem.SetLevel(playerCharacter); } } if (_prestige) { if (!steamId.TryGetPlayerPrestiges(out var prestiges)) { Dictionary dictionary = new Dictionary(); PrestigeType[] values3 = Enum.GetValues(); foreach (PrestigeType key7 in values3) { dictionary.Add(key7, 0); } steamId.SetPlayerPrestiges(dictionary); } else { PrestigeType[] values3 = Enum.GetValues(); foreach (PrestigeType key8 in values3) { if (!prestiges.ContainsKey(key8)) { prestiges.Add(key8, 0); } } if (_exoForm && exists && prestiges.TryGetValue(PrestigeType.Experience, out var value3) && value3 > 0 && !steamId.TryGetPlayerExoFormData(out var exoFormData)) { KeyValuePair data = new KeyValuePair(DateTime.UtcNow, Shapeshifts.CalculateFormDuration(value3)); steamId.SetPlayerExoFormData(data); } if (_exoForm && !steamId.TryGetPlayerExoFormData(out exoFormData)) { KeyValuePair data2 = new KeyValuePair(DateTime.MaxValue, 0f); steamId.SetPlayerExoFormData(data2); } } Misc.PlayerBoolsManager.SetPlayerBool(steamId, "Shroud", value: true); if (UpdateBuffsBufferDestroyPatch.PrestigeBuffs.Contains(_shroudBuff) && !playerCharacter.HasBuff(_shroudBuff) && steamId.TryGetPlayerPrestiges(out var prestiges2) && prestiges2.TryGetValue(PrestigeType.Experience, out var value4) && value4 > UpdateBuffsBufferDestroyPatch.PrestigeBuffs.IndexOf(_shroudBuff)) { Buffs.TryApplyPermanentBuff(playerCharacter, _shroudBuff); } else { Misc.PlayerBoolsManager.SetPlayerBool(steamId, "Shroud", value: false); } } if (_familiars) { if (!steamId.HasActiveFamiliar()) { Familiars.ActiveFamiliarManager.ResetActiveFamiliarData(steamId); } if (!steamId.TryGetFamiliarBox(out var _)) { steamId.SetFamiliarBox(); } DataService.FamiliarPersistence.FamiliarExperienceManager.SaveFamiliarExperienceData(steamId, DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(steamId)); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(steamId, DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(steamId)); if (playerCharacter.TryGetBuffer(out DynamicBuffer dynamicBuffer) && dynamicBuffer.IsIndexWithinRange(1)) { BuffByItemCategoryCount val = dynamicBuffer[1]; if (((object)(ItemCategory)(ref val.ItemCategory)).Equals((object)(ItemCategory)16384)) { dynamicBuffer.RemoveAt(1); } } if (playerCharacter.HasBuff(_relicDebuff)) { playerCharacter.TryRemoveBuff(_relicDebuff); } } if (_classes && !steamId.TryGetPlayerSpells(out spells)) { steamId.SetPlayerSpells((0, 0, 0)); } if (exists) { PlayerService.PlayerInfo playerInfo = default(PlayerService.PlayerInfo); playerInfo.CharEntity = playerCharacter; playerInfo.UserEntity = userEntity; playerInfo.User = user; PlayerService.PlayerInfo playerInfo2 = playerInfo; PlayerService.HandleConnection(steamId, playerInfo2); if (Core.Eclipsed && !EclipseService.RegisteredUsersAndClientVersions.ContainsKey(steamId) && EclipseService.PendingRegistration.TryGetValue(steamId, out var value5)) { EclipseService.HandleRegistration(playerInfo2, steamId, value5); } if (!playerCharacter.HasBuff(_bonusStatsBuff)) { Buffs.RefreshStats(playerInfo2.CharEntity); } } else if (Core.Eclipsed) { EclipseService.HandlePreRegistration(steamId); } } public static void UnbindFamiliarOnUserDisconnected(User user, Entity playerCharacter) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0022: 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_002e: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) ulong platformId = user.PlatformId; bool flag = platformId.HasActiveFamiliar(); bool flag2 = platformId.HasDismissedFamiliar(); if (flag && flag2) { Entity activeFamiliar = Familiars.GetActiveFamiliar(playerCharacter); Familiars.CallFamiliar(playerCharacter, activeFamiliar, user, user.PlatformId); Familiars.UnbindFamiliar(user, playerCharacter); } else if (flag && !flag2) { Familiars.UnbindFamiliar(user, playerCharacter); } } [HarmonyPatch(typeof(ServerBootstrapSystem), "OnUserDisconnected")] [HarmonyPrefix] private static void OnUserDisconnectedPrefix(ServerBootstrapSystem __instance, NetConnectionId netConnectionId) { //IL_0028: 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_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) if (!__instance._NetEndPointToApprovedUserIndex.ContainsKey(netConnectionId)) { return; } int num = __instance._NetEndPointToApprovedUserIndex[netConnectionId]; Entity userEntity = ((Il2CppArrayBase)(object)__instance._ApprovedUsersLookup)[num].UserEntity; EntityManager entityManager = ((ComponentSystemBase)__instance).EntityManager; User componentData = ((EntityManager)(ref entityManager)).GetComponentData(userEntity); Entity entityOnServer = ((NetworkedEntity)(ref componentData.LocalCharacter)).GetEntityOnServer(); ulong platformId = componentData.PlatformId; if (_leveling && _restedXP && platformId.TryGetPlayerRestedXP(out var restedXP)) { restedXP = new KeyValuePair(DateTime.UtcNow, restedXP.Value); platformId.SetPlayerRestedXP(restedXP); } if (_prestige && entityOnServer.Exists()) { Misc.PlayerBoolsManager.SetPlayerBool(platformId, "Shroud", value: false); EquipmentType val = default(EquipmentType); if (entityOnServer.HasBuff(_shroudBuff) && entityOnServer.TryGetComponent(out Equipment componentData2) && !((Equipment)(ref componentData2)).IsEquipped(_shroudCloak, ref val)) { entityOnServer.TryRemoveBuff(_shroudBuff); } } if (_familiars && entityOnServer.Exists()) { UnbindFamiliarOnUserDisconnected(componentData, entityOnServer); } PlayerService.HandleDisconnection(platformId); } [HarmonyPatch(typeof(KickBanSystem_Server), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(KickBanSystem_Server __instance) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Expected O, but got Unknown //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) using NativeAccessor nativeAccessor = __instance._KickQuery.ToComponentDataArrayAccessor((Allocator)2); try { EquipmentType val = default(EquipmentType); for (int i = 0; i < nativeAccessor.Length; i++) { ulong platformId = nativeAccessor[i].PlatformId; if (!platformId.TryGetPlayerInfo(out var playerInfo)) { continue; } if (_leveling && _restedXP && platformId.TryGetPlayerRestedXP(out var restedXP)) { restedXP = new KeyValuePair(DateTime.UtcNow, restedXP.Value); platformId.SetPlayerRestedXP(restedXP); } if (_prestige) { Misc.PlayerBoolsManager.SetPlayerBool(platformId, "Shroud", value: false); if (playerInfo.CharEntity.HasBuff(_shroudBuff) && playerInfo.CharEntity.TryGetComponent(out Equipment componentData) && !((Equipment)(ref componentData)).IsEquipped(_shroudCloak, ref val)) { playerInfo.CharEntity.TryRemoveBuff(_shroudBuff); } } if (_familiars && playerInfo.CharEntity.Exists()) { UnbindFamiliarOnUserDisconnected(playerInfo.User, playerInfo.CharEntity); } PlayerService.HandleDisconnection(platformId); } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log.LogError(val2); } } [HarmonyPatch(typeof(HandleCreateCharacterEventSystem), "OnUpdate")] [HarmonyPrefix] private static void OnCharacterCreated(HandleCreateCharacterEventSystem __instance) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Expected O, but got Unknown //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) using NativeAccessor nativeAccessor = __instance._CreateCharacterEventQuery.ToComponentDataArrayAccessor((Allocator)2); try { for (int i = 0; i < nativeAccessor.Length; i++) { HandleCharacterCreatedRoutine(nativeAccessor[i].User).Start(); } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogError(val); } } private static IEnumerator HandleCharacterCreatedRoutine(Entity userEntity) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) yield return _newCharacterDelay; User user = userEntity.GetUser(); PlayerService.PlayerInfo playerInfo = default(PlayerService.PlayerInfo); playerInfo.CharEntity = ((NetworkedEntity)(ref user.LocalCharacter)).GetEntityOnServer(); playerInfo.UserEntity = userEntity; playerInfo.User = user; PlayerService.PlayerInfo playerInfo2 = playerInfo; PlayerService.HandleConnection(user.PlatformId, playerInfo2); if (!playerInfo2.CharEntity.HasBuff(_bonusStatsBuff)) { Buffs.RefreshStats(playerInfo2.CharEntity); } } } [HarmonyPatch] internal static class ShapeshiftSystemPatch { private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly PrefabGUID _psychicForm = PrefabGUIDs.AB_Shapeshift_DominatingPresence_PsychicForm_Group; private static readonly PrefabGUID _batForm = PrefabGUIDs.AB_Shapeshift_Bat_Group; private static readonly PrefabGUID _vanishBuff = Buffs.VanishBuff; private static EntityManager EntityManager => Core.EntityManager; [HarmonyPatch(typeof(ShapeshiftSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ShapeshiftSystem __instance) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery query = __instance._Query; NativeArray val = ((EntityQuery)(ref query)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (!current.TryGetComponent(out FromCharacter componentData)) { continue; } EnterShapeshiftEvent val2 = current.Read(); Entity character = componentData.Character; User user = character.GetUser(); ulong platformId = user.PlatformId; if (((PrefabGUID)(ref val2.Shapeshift)).Equals(_psychicForm)) { bool num = platformId.HasActiveFamiliar(); bool flag = platformId.HasDismissedFamiliar(); if (num && !flag) { Entity activeFamiliar = Familiars.GetActiveFamiliar(character); if (!activeFamiliar.HasBuff(_vanishBuff)) { Familiars.DismissFamiliar(character, activeFamiliar, user, platformId); } } } else { if (!((PrefabGUID)(ref val2.Shapeshift)).Equals(_batForm)) { continue; } bool num2 = platformId.HasActiveFamiliar(); bool flag2 = platformId.HasDismissedFamiliar(); if (num2 && !flag2) { Entity activeFamiliar2 = Familiars.GetActiveFamiliar(character); if (!activeFamiliar2.HasBuff(_vanishBuff)) { Familiars.AutoCallMap[componentData.Character] = activeFamiliar2; Familiars.DismissFamiliar(character, activeFamiliar2, user, platformId); } } } } } finally { val.Dispose(); } } } [HarmonyPatch] internal static class SpawnMoveSpeedBuffSystemPatch { private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly PrefabGUID _solarusFinalBuff = new PrefabGUID(2144624015); [HarmonyPatch(typeof(Spawn_MoveSpeedBuffSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(Spawn_MoveSpeedBuffSystem __instance) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_familiars) { return; } EntityQuery val = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0]; NativeArray val2 = ((EntityQuery)(ref val)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.TryGetComponent(out PrefabGUID componentData) && current.TryGetComponent(out EntityOwner componentData2) && ((PrefabGUID)(ref componentData)).Equals(_solarusFinalBuff) && componentData2.Owner.IsFollowingPlayer() && current.TryGetBuffer(out DynamicBuffer dynamicBuffer) && !dynamicBuffer.IsEmpty) { ApplyBuffOnGameplayEvent val3 = dynamicBuffer[0]; val3.Buff0 = PrefabGUID.Empty; dynamicBuffer[0] = val3; } } } finally { val2.Dispose(); } } } [HarmonyPatch] internal static class SpawnTransformSystemOnSpawnPatch { private static readonly GameModeType _gameMode = SystemService.ServerGameSettingsSystem.Settings.GameModeType; private static readonly bool _eliteShardBearers = ConfigService.EliteShardBearers; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly int _shardBearerLevel = ConfigService.ShardBearerLevel; private static readonly PrefabGUID _manticore = new PrefabGUID(-393555055); private static readonly PrefabGUID _dracula = new PrefabGUID(-327335305); private static readonly PrefabGUID _monster = new PrefabGUID(1233988687); private static readonly PrefabGUID _solarus = new PrefabGUID(-740796338); private static readonly PrefabGUID _megara = new PrefabGUID(591725925); private static readonly PrefabGUID _divineAngel = new PrefabGUID(-1737346940); private static readonly PrefabGUID _fallenAngel = new PrefabGUID(-76116724); private static readonly PrefabGUID _manticoreVisual = new PrefabGUID(1670636401); private static readonly PrefabGUID _draculaVisual = PrefabGUIDs.AB_Shapeshift_BloodHunger_BloodSight_Buff; private static readonly PrefabGUID _monsterVisual = new PrefabGUID(-2067402784); private static readonly PrefabGUID _solarusVisual = new PrefabGUID(178225731); private static readonly PrefabGUID _megaraVisual = new PrefabGUID(-2104035188); private static readonly List _variantBuffs = new List(1) { new PrefabGUID(-429891372) }; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; [HarmonyPatch(typeof(SpawnTransformSystem_OnSpawn), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(SpawnTransformSystem_OnSpawn __instance) { //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Expected O, but got Unknown //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0047: 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_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || !_eliteShardBearers) { return; } EntityQuery _query_565030732_ = __instance.__query_565030732_0; NativeArray val = ((EntityQuery)(ref _query_565030732_)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.TryGetComponent(out PrefabGUID componentData) && !current.IsPlayerOwned()) { switch (((PrefabGUID)(ref componentData)).GuidHash) { case -393555055: HandleManticore(current); break; case -327335305: HandleDracula(current); break; case 1233988687: HandleMonster(current); break; case -740796338: HandleSolarus(current); break; case 591725925: HandleMegara(current); break; case -1737346940: HandleDivineAngel(current); break; case -76116724: HandleFallenAngel(current); break; } } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(28, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("SpawnTransformSystem error: "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log.LogError(val2); } finally { val.Dispose(); } } private static void HandleManticore(Entity entity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) entity.Remove(); SetLevel(entity); SetAttackSpeed(entity); SetHealth(entity); SetPower(entity); SetMoveSpeed(entity, 5f, 6.5f); Buffs.HandleShinyBuff(entity, _manticoreVisual); } private static void HandleMonster(Entity entity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) entity.Remove(); SetLevel(entity); SetAttackSpeed(entity); SetHealth(entity); SetPower(entity); SetMoveSpeed(entity, 2.5f, 5.5f); Buffs.HandleShinyBuff(entity, _monsterVisual); } private static void HandleSolarus(Entity entity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) entity.Remove(); SetLevel(entity); SetAttackSpeed(entity); SetHealth(entity); SetPower(entity); SetMoveSpeed(entity, 4f); Buffs.HandleShinyBuff(entity, _solarusVisual); } private static void HandleDracula(Entity entity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) entity.Remove(); SetLevel(entity); SetAttackSpeed(entity); SetHealth(entity); SetPower(entity); SetMoveSpeed(entity, 2.5f, 3.5f); Buffs.HandleShinyBuff(entity, _draculaVisual); } private static void HandleMegara(Entity entity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) entity.Remove(); SetLevel(entity); SetAttackSpeed(entity); SetHealth(entity); SetPower(entity); Buffs.HandleShinyBuff(entity, _megaraVisual); } private static void HandleDivineAngel(Entity entity) { //IL_0000: 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_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) SetAttackSpeed(entity); SetHealth(entity); SetPower(entity); SetMoveSpeed(entity, 5f, 7.5f); Buffs.HandleShinyBuff(entity, _solarusVisual); } private static void HandleFallenAngel(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) SetHealth(entity); } private static void SetLevel(Entity entity) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (_shardBearerLevel > 0) { entity.With((VExtensions.WithRefHandler)delegate(ref UnitLevel unitLevel) { unitLevel.Level._Value = _shardBearerLevel; }); } } private static void SetAttackSpeed(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref AbilityBar_Shared abilityBarShared) { abilityBarShared.AbilityAttackSpeed._Value = 2f; abilityBarShared.PrimaryAttackSpeed._Value = 2f; }); } private static void SetHealth(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref Health health) { health.MaxHealth._Value *= 5f; health.Value = health.MaxHealth._Value; }); } private static void SetPower(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref UnitStats unitStats) { unitStats.PhysicalPower._Value *= 1.5f; unitStats.SpellPower._Value *= 1.5f; }); } private static void SetMoveSpeed(Entity entity, float walk = float.NaN, float run = float.NaN) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) entity.With((VExtensions.WithRefHandler)delegate(ref AiMoveSpeeds aiMoveSpeeds) { if (!float.IsNaN(walk)) { aiMoveSpeeds.Walk._Value = walk; } if (!float.IsNaN(run)) { aiMoveSpeeds.Run._Value = run; } }); } } [HarmonyPatch] internal static class StatChangeSystemPatch { private static readonly GameModeType _gameMode = SystemService.ServerGameSettingsSystem._Settings.GameModeType; private static readonly Random _random = new Random(); private static readonly ConcurrentDictionary _lastDamageTime = new ConcurrentDictionary(); private static readonly HashSet _shinyOnHitDebuffs = new HashSet { Buffs.VampireIgniteDebuff, Buffs.VampireStaticDebuff, Buffs.VampireLeechDebuff, Buffs.VampireWeakenDebuff, Buffs.VampireChillDebuff, Buffs.VampireCondemnDebuff }; private static readonly HashSet _ignoredSources = new HashSet { Buffs.GarlicDebuff, Buffs.SilverDebuff, Buffs.HolyDebuff, Buffs.DivineDebuff }; private static readonly PrefabGUID _slashersMeleeHit03 = PrefabGUIDs.AB_Vampire_Slashers_Primary_MeleeAttack_Hit03; private static readonly PrefabGUID _twinBladesSweepingStrikeHit = PrefabGUIDs.AB_Vampire_TwinBlades_SweepingStrike_Hit; private static readonly PrefabGUID _vargulfBleedBuff = Buffs.VargulfBleedBuff; private static readonly PrefabGUID _iceShieldBuff = PrefabGUIDs.Frost_Vampire_Buff_IceShield_SpellMod; private static readonly bool _slashers = Core.BleedingEdge.Contains(WeaponType.Slashers); private static readonly bool _twinBlades = Core.BleedingEdge.Contains(WeaponType.TwinBlades); private static readonly bool _onHitEffects = ConfigService.ClassOnHitEffects; private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _familiarPvP = ConfigService.FamiliarPvP; private static readonly bool _quests = ConfigService.QuestSystem; private static readonly float _onHitProcChance = ConfigService.OnHitProcChance; private const float SHINY_DEBUFF_CHANCE = 0.1f; private static readonly PrefabGUID _activeCharmedHumanBuff = Buffs.ActiveCharmedHumanBuff; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; public static IReadOnlyDictionary LastDamageTime => _lastDamageTime; [HarmonyPatch(typeof(StatChangeSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(StatChangeSystem __instance) { //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035f: Expected O, but got Unknown //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_02ac: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01eb: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_020b: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_01f9: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_032c: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_02e5: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_0225: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02fe: Unknown result type (might be due to invalid IL or missing references) //IL_0300: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_030b: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } using NativeAccessor nativeAccessor = __instance._DamageTakenEventQuery.ToEntityArrayAccessor((Allocator)2); using NativeAccessor nativeAccessor2 = __instance._DamageTakenEventQuery.ToComponentDataArrayAccessor((Allocator)2); try { for (int i = 0; i < nativeAccessor.Length; i++) { Entity entity = nativeAccessor[i]; DamageTakenEvent val = nativeAccessor2[i]; PrefabGUID prefabGuid = val.Source.GetPrefabGuid(); Entity sourceOwner = val.Source.GetOwner(); if (_ignoredSources.Contains(prefabGuid)) { continue; } if (_familiars && sourceOwner.TryGetFollowedPlayer(out var player)) { if (val.Entity.IsPlayer() && ((Entity)(ref player)).Equals(val.Entity)) { entity.Destroy(immediate: true); } else { if (!IsValidTarget(val.Entity)) { continue; } PrefabGUID val2 = ((IEnumerable)_shinyOnHitDebuffs).FirstOrDefault((Func)((PrefabGUID buff) => sourceOwner.HasBuff(buff))); if (((PrefabGUID)(ref val2)).HasValue() && sourceOwner.TryGetBuffStacks(val2, out var _, out var stacks)) { float num = 0.1f * (float)stacks; if (_random.NextDouble() <= (double)num) { val.Entity.TryApplyBuffWithOwner(sourceOwner, val2); } } } continue; } GameModeType gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)0) && val.Entity.HasBuff(_activeCharmedHumanBuff)) { entity.Destroy(immediate: true); } else if (_quests && val.Entity.Has() && sourceOwner.TryGetPlayer(out player)) { ulong steamId = player.GetSteamId(); _lastDamageTime[steamId] = DateTime.UtcNow; } else if (IsValidTarget(val.Entity) && sourceOwner.TryGetPlayer(out player)) { ulong steamId2 = player.GetSteamId(); if (((PrefabGUID)(ref prefabGuid)).Equals(_slashersMeleeHit03)) { val.Entity.TryApplyBuff(_vargulfBleedBuff); } if (((PrefabGUID)(ref prefabGuid)).Equals(_twinBladesSweepingStrikeHit) && val.Entity.IsVBloodOrGateBoss()) { player.TryApplyBuff(_iceShieldBuff); } if (_onHitEffects && _classes && steamId2.HasClass(out var playerClass) && playerClass.HasValue && _random.NextDouble() <= (double)_onHitProcChance && ClassManager.ClassOnHitSettings.ClassOnDamageEffects.TryGetValue(playerClass.Value, out var value)) { value.ApplyEffect(player, val.Entity); } } else { if (!_familiars) { continue; } gameMode = _gameMode; if (((object)(GameModeType)(ref gameMode)).Equals((object)(GameModeType)1) && sourceOwner.TryGetPlayer(out player) && val.Entity.IsPlayer()) { Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (_familiarPvP && activeFamiliar.EligibleForCombat()) { Familiars.AddToFamiliarAggroBuffer(player, activeFamiliar, new List(1) { val.Entity }); } } else if (val.Entity.TryGetFollowedPlayer(out player)) { ReactToUnitDamage(player, sourceOwner); } } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val3 = new BepInExWarningLogInterpolatedStringHandler(30, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral("[StatChangeSystem] Exception: "); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(ex); } log.LogWarning(val3); } } public static void RemoveOnItemPickup(ulong steamId) { _lastDamageTime.TryRemove(steamId, out var _); } private static bool IsValidTarget(Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (entity.Has() && entity.Has()) { return !entity.IsPlayer(); } return false; } private static void ReactToUnitDamage(Entity playerCharacter, Entity spellOwner) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) Entity activeFamiliar = Familiars.GetActiveFamiliar(playerCharacter); if (activeFamiliar.TryGetComponent(out BehaviourTreeState componentData) && activeFamiliar.EligibleForCombat() && !((object)(GenericEnemyState)(ref componentData.Value)).Equals((object)(GenericEnemyState)8)) { activeFamiliar.With((VExtensions.WithRefHandler)delegate(ref Follower follower) { follower.ModeModifiable._Value = 1; }); Familiars.AddToFamiliarAggroBuffer(playerCharacter, activeFamiliar, new List(1) { spellOwner }); } } } [HarmonyPatch] internal static class UnitSpawnerPatch { [HarmonyPatch(typeof(UnitSpawnerReactSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(UnitSpawnerReactSystem __instance) { //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Expected O, but got Unknown //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } using NativeAccessor nativeAccessor = ((Il2CppArrayBase)(object)((ComponentSystemBase)__instance).EntityQueries)[0].ToEntityArrayAccessor((Allocator)2); try { Enumerator enumerator = nativeAccessor.GetEnumerator(); while (enumerator.MoveNext()) { enumerator.Current.With((VExtensions.WithRefHandler)delegate(ref IsMinion isMinion) { isMinion.Value = true; }); } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(45, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[UnitSpawnerPatch.OnUpdatePrefix] Exception: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } } } [HarmonyPatch] internal static class UpdateBuffsBufferDestroyPatch { private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _legacies = ConfigService.LegacySystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _classes = ConfigService.ClassSystem; private static readonly bool _prestige = ConfigService.PrestigeSystem; private static readonly bool _exoForm = ConfigService.ExoPrestiging; private static readonly bool _trueImmortal = ConfigService.TrueImmortal; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _shouldHandleStats = _legacies || _expertise || _classes || _leveling || _familiars; private static readonly PrefabGUID _combatBuff = Buffs.PvECombatBuff; private static readonly PrefabGUID _tauntEmoteBuff = Buffs.TauntEmoteBuff; private static readonly PrefabGUID _phasingBuff = Buffs.PhasingBuff; private static readonly PrefabGUID _evolvedVampireFormBuff = Buffs.EvolvedVampireBuff; private static readonly PrefabGUID _gateBossFeedCompleteBuff = Buffs.GateBossFeedCompleteBuff; private static readonly PrefabGUID _standardWerewolfBuff = Buffs.StandardWerewolfBuff; private static readonly PrefabGUID _vBloodWerewolfBuff = Buffs.VBloodWerewolfBuff; private static readonly PrefabGUID _vanishBuff = Buffs.VanishBuff; private static readonly PrefabGUID _gateBossFeedCompleteGroup = PrefabGUIDs.AB_FeedGateBoss_03_Complete_AbilityGroup; private static readonly PrefabGUID _shroudBuff = Buffs.ShroudBuff; private static readonly PrefabGUID _shroudCloak = PrefabGUIDs.Item_Cloak_Main_ShroudOfTheForest; private static readonly PrefabGUID _travelStoneBuff = new PrefabGUID(-342726392); private static readonly PrefabGUID _travelWoodenBuff = new PrefabGUID(-1194613929); private static readonly PrefabGUID _insideWoodenCoffin = new PrefabGUID(381160212); private static readonly PrefabGUID _insideStoneCoffin = new PrefabGUID(569692162); private static readonly PrefabGUID _bonusStatsBuff = Buffs.BonusStatsBuff; public static readonly List PrestigeBuffs = new List(); public static readonly Dictionary> ClassBuffsSet = new Dictionary>(); public static readonly Dictionary> ClassBuffsOrdered = new Dictionary>(); private static readonly EntityQuery _query = QueryService.UpdateBuffsBufferDestroyQuery; [HarmonyPatch(typeof(UpdateBuffsBuffer_Destroy), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePostfix(UpdateBuffsBuffer_Destroy __instance) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: 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_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_020f: Unknown result type (might be due to invalid IL or missing references) //IL_0272: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Expected O, but got Unknown //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_02ed: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_0306: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_0259: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02d2: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady || (!_familiars && !_prestige && !_classes)) { return; } EntityQuery query = _query; NativeArray val = ((EntityQuery)(ref query)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); query = _query; NativeArray val2 = ((EntityQuery)(ref query)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); query = _query; NativeArray val3 = ((EntityQuery)(ref query)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); ComponentLookup componentLookup = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup componentLookup2 = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup componentLookup3 = ((SystemBase)__instance).GetComponentLookup(true); ComponentLookup componentLookup4 = ((SystemBase)__instance).GetComponentLookup(true); try { bool flag3 = default(bool); for (int i = 0; i < val.Length; i++) { Entity val4 = val[i]; Entity target = val3[i].Target; bool flag = componentLookup.HasComponent(target); bool isFamiliarTarget = componentLookup2.HasComponent(target); bool isWeaponEquipBuff = componentLookup3.HasComponent(val4); bool isBloodBuff = componentLookup4.HasComponent(val4); PrefabGUID val5 = val2[i]; val5.GetPrefabName(); switch (GetBuffType(val5, isWeaponEquipBuff, flag, isFamiliarTarget, isBloodBuff)) { case 1: { if (!(_exoForm && flag)) { break; } ulong steamId = target.GetSteamId(); target.TryApplyBuff(_gateBossFeedCompleteBuff); if (_trueImmortal) { bool flag2 = Shapeshifts.RestoreStoredTrueImmortalBlood(target); ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val6 = new BepInExWarningLogInterpolatedStringHandler(45, 2, ref flag3); if (flag3) { ((BepInExLogInterpolatedStringHandler)val6).AppendLiteral("[TrueImmortal] EXO_DESTROY steamId:"); ((BepInExLogInterpolatedStringHandler)val6).AppendFormatted(steamId); ((BepInExLogInterpolatedStringHandler)val6).AppendLiteral(" restored:"); ((BepInExLogInterpolatedStringHandler)val6).AppendFormatted(flag2); } log.LogWarning(val6); } Shapeshifts.UpdatePartialExoFormChargeUsed(val4, steamId); continue; } case 3: { if (!(_familiars && flag)) { break; } Entity activeFamiliar = Familiars.GetActiveFamiliar(target); if (activeFamiliar.Exists()) { target.With((VExtensions.WithRefHandler)delegate(ref CombatMusicListener_Shared shared) { //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) shared.UnitPrefabGuid = PrefabGUID.Empty; }); Familiars.TryReturnFamiliar(target, activeFamiliar); } continue; } case 4: { if (!flag) { break; } User user = target.GetUser(); ulong steamId = user.PlatformId; if (Misc.PlayerBoolsManager.GetPlayerBool(steamId, "Shapeshift")) { if (EmoteSystemPatch.BlockShapeshift.Contains(steamId)) { EmoteSystemPatch.BlockShapeshift.Remove(steamId); } else if (Shapeshifts.CheckExoFormCharge(user, steamId)) { ApplyShapeshiftBuff(steamId, target); } } continue; } case 7: if (_prestige && flag) { ulong steamId = target.GetSteamId(); int num = PrestigeBuffs.IndexOf(val5); if ((!((PrefabGUID)(ref val5)).Equals(_shroudBuff) || Misc.PlayerBoolsManager.GetPlayerBool(steamId, "Shroud")) && Misc.PlayerBoolsManager.GetPlayerBool(steamId, "PrestigeBuffs") && steamId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value) && value > num) { Buffs.TryApplyPermanentBuff(target, val5); } continue; } break; case 8: { if (!_familiars) { break; } if (target.TryGetFollowedPlayer(out var player)) { Entity activeFamiliar = Familiars.GetActiveFamiliar(player); if (activeFamiliar.Exists()) { Familiars.HandleFamiliarShapeshiftRoutine(player.GetUser(), player, activeFamiliar).Start(); } } continue; } case 2: continue; } _ = _classes && flag; } } finally { val.Dispose(); val2.Dispose(); val3.Dispose(); } } private static int GetBuffType(PrefabGUID prefabGuid, bool isWeaponEquipBuff, bool isPlayerTarget, bool isFamiliarTarget, bool isBloodBuff) { //IL_001a: Unknown result type (might be due to invalid IL or missing references) int guidHash = ((PrefabGUID)(ref prefabGuid)).GuidHash; if ((isWeaponEquipBuff || isBloodBuff) && (isPlayerTarget || isFamiliarTarget)) { return 5; } if (PrestigeBuffs.Contains(prefabGuid)) { return 7; } switch (guidHash) { case -1859425781: case -31099041: return 1; case 581443919: return 3; case -508293388: return 4; case -1598161201: case -622259665: return 8; default: return 0; } } private static void ApplyShapeshiftBuff(ulong steamId, Entity playerCharacter) { //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown if (!Shapeshifts.ShapeshiftCache.TryGetShapeshiftBuff(steamId, out var shapeshiftBuff)) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(30, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Shapeshift buff not found for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(steamId); } log.LogWarning(val); } else { playerCharacter.TryApplyBuff(shapeshiftBuff); playerCharacter.TryApplyBuff(_phasingBuff); playerCharacter.CastAbility(_gateBossFeedCompleteGroup); playerCharacter.TryApplyBuff(_gateBossFeedCompleteBuff); } } } [HarmonyPatch] internal static class VBloodSystemPatch { private const float DELAY_ADD = 1.25f; private static readonly Dictionary _lastUpdateCache = new Dictionary(); private static readonly bool _leveling = ConfigService.LevelingSystem; private static readonly bool _expertise = ConfigService.ExpertiseSystem; private static readonly bool _legacies = ConfigService.LegacySystem; private static readonly bool _familiars = ConfigService.FamiliarSystem; private static readonly bool _quests = ConfigService.QuestSystem; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; [HarmonyPatch(typeof(VBloodSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(VBloodSystem __instance) { //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Expected O, but got Unknown //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0123: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) if (!Core.IsReady) { return; } DateTime utcNow = DateTime.UtcNow; NativeList eventList = __instance.EventList; try { Enumerator enumerator = eventList.GetEnumerator(); while (enumerator.MoveNext()) { VBloodConsumed current = enumerator.Current; Entity target = current.Target; User user = target.GetUser(); ulong platformId = user.PlatformId; if (!_lastUpdateCache.TryGetValue(platformId, out var value) || !((utcNow - value).TotalSeconds < 5.0)) { _lastUpdateCache[platformId] = utcNow; Entity target2 = PrefabCollectionSystem._PrefabGuidToEntityMap[current.Source]; DeathEventListenerSystemPatch.DeathEventArgs deathEventArgs = new DeathEventListenerSystemPatch.DeathEventArgs { Source = target, Target = target2, ScrollingTextDelay = 0f }; if (_leveling) { int level = LevelingSystem.GetLevel(platformId); LevelingSystem.ProcessExperienceGain(target, target2, platformId, level, deathEventArgs.ScrollingTextDelay); deathEventArgs.ScrollingTextDelay += 1.25f; } if (_expertise) { WeaponSystem.ProcessExpertise(deathEventArgs); } if (_legacies) { BloodSystem.ProcessLegacy(deathEventArgs); } if (_familiars) { FamiliarLevelingSystem.ProcessFamiliarExperience(target, target2, platformId, 1f); FamiliarUnlockSystem.ProcessUnlock(target, target2); } if (_quests && platformId.TryGetPlayerQuests(out Dictionary quests)) { QuestSystem.ProcessQuestProgress(quests, current.Source, 1, user); } } } } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(35, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error in VBloodSystemPatch Prefix: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } } } [HarmonyPatch] public static class WorldBootstrapPatch { internal static class TestHooks { internal static Func? CreateUpdateGroup; internal static Action? RegisterSystem; internal static Action? SortSystems; internal static Func? ElitePrimalRiftsProvider; internal static Func>? GetSystemTypes; internal static Type? PrimalSystemType; internal static void Reset() { CreateUpdateGroup = null; RegisterSystem = null; SortSystems = null; ElitePrimalRiftsProvider = null; GetSystemTypes = null; PrimalSystemType = null; } internal static bool EvaluateElitePrimalRifts() { return ShouldRegisterPrimalRifts(); } internal static IReadOnlyList EnumerateSystemsForTests(bool elitePrimalRiftsEnabled) { Type primalSystemType = ResolvePrimalSystemType(); return EnumerateSystemTypes(elitePrimalRiftsEnabled, primalSystemType); } } private static readonly MethodInfo _getOrCreate = typeof(World).GetMethods(BindingFlags.Instance | BindingFlags.Public).First((MethodInfo m) => m.Name == "GetOrCreateSystemManaged" && m.IsGenericMethodDefinition && m.GetParameters().Length == 0); private const string QuestTargetSystemTypeName = "Bloodcraft.Systems.Quests.QuestTargetSystem, Bloodcraft"; private const string PrimalWarEventSystemTypeName = "Bloodcraft.Systems.PrimalWarEventSystem, Bloodcraft"; [HarmonyPatch(typeof(WorldBootstrapUtilities), "AddSystemsToWorld")] [HarmonyPrefix] public static void Prefix(World world, WorldBootstrap worldConfig, WorldSystemConfig worldSystemConfig) { //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Expected O, but got Unknown try { if (world.Name.Equals("Server")) { ExecuteServerBootstrap(world); } } catch (Exception ex) { ManualLogSource logSource = Plugin.MiniBehaviour.LogSource; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(53, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[WorldBootstrap_Server.AddSystemsToWorld] Exception: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } logSource.LogError(val); } } private static void ExecuteServerBootstrap(World world) { UpdateGroup val = TestHooks.CreateUpdateGroup?.Invoke(world) ?? world.GetOrCreateSystemManaged(); Type primalSystemType = ResolvePrimalSystemType(); foreach (Type item in EnumerateSystemTypes(ShouldRegisterPrimalRifts(), primalSystemType)) { Action registerSystem = TestHooks.RegisterSystem; if (registerSystem != null) { registerSystem(world, val, item); } else { world.RegisterAndAddSystem(val, item); } } Action sortSystems = TestHooks.SortSystems; if (sortSystems != null) { sortSystems(val); } else { ((ComponentSystemGroup)val).SortSystems(); } } private static IReadOnlyList EnumerateSystemTypes(bool elitePrimalRiftsEnabled, Type primalSystemType) { List list = new List(); foreach (Type item in ResolveSystemTypes()) { if (elitePrimalRiftsEnabled || !(item == primalSystemType)) { list.Add(item); } } return list; } private static IEnumerable ResolveSystemTypes() { Func> getSystemTypes = TestHooks.GetSystemTypes; if (getSystemTypes != null) { IEnumerable enumerable = getSystemTypes(); return enumerable ?? Array.Empty(); } return DefaultSystemTypes(); } private static IEnumerable DefaultSystemTypes() { yield return ResolveType("Bloodcraft.Systems.Quests.QuestTargetSystem, Bloodcraft"); yield return ResolveType("Bloodcraft.Systems.PrimalWarEventSystem, Bloodcraft"); } private static Type ResolvePrimalSystemType() { Type primalSystemType = TestHooks.PrimalSystemType; if ((object)primalSystemType != null) { return primalSystemType; } return ResolveType("Bloodcraft.Systems.PrimalWarEventSystem, Bloodcraft"); } private static Type ResolveType(string qualifiedTypeName) { return Type.GetType(qualifiedTypeName, throwOnError: true) ?? throw new InvalidOperationException("Unable to resolve type '" + qualifiedTypeName + "'."); } private static bool ShouldRegisterPrimalRifts() { return TestHooks.ElitePrimalRiftsProvider?.Invoke() ?? ConfigService.ElitePrimalRifts; } private static void RegisterAndAddSystem(this World world, UpdateGroup group, Type systemType) { //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Expected O, but got Unknown ClassInjector.RegisterTypeInIl2Cpp(systemType); ComponentSystemBase val = (ComponentSystemBase)(_getOrCreate.MakeGenericMethod(systemType).Invoke(world, null) ?? throw new InvalidOperationException($"Failed to create system '{systemType}'.")); ((ComponentSystemGroup)group).AddSystemToUpdateList(val); } } } namespace Bloodcraft.Interfaces { public enum BloodType { Worker, Warrior, Scholar, Rogue, Mutant, VBlood, None, GateBoss, Draculin, Immortal, Creature, Brute, Corruption } internal interface IBloodLegacy { KeyValuePair GetLegacyData(ulong steamId); void SetLegacyData(ulong steamId, KeyValuePair xpData); BloodType GetBloodType(); } internal static class BloodLegacyFactory { public static IBloodLegacy GetBloodHandler(BloodType bloodType) { return bloodType switch { BloodType.Worker => new WorkerLegacy(), BloodType.Warrior => new WarriorLegacy(), BloodType.Scholar => new ScholarLegacy(), BloodType.Rogue => new RogueLegacy(), BloodType.Mutant => new MutantLegacy(), BloodType.Draculin => new DraculinLegacy(), BloodType.Immortal => new ImmortalLegacy(), BloodType.Creature => new CreatureLegacy(), BloodType.Brute => new BruteLegacy(), BloodType.Corruption => new CorruptionLegacy(), _ => null, }; } } internal abstract class BloodLegacy : IBloodLegacy { public abstract KeyValuePair GetLegacyData(ulong steamId); public abstract void SetLegacyData(ulong steamId, KeyValuePair data); public abstract BloodType GetBloodType(); } internal class WorkerLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerWorkerLegacy(out var workerLegacy)) { return new KeyValuePair(0, 0f); } return workerLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerWorkerLegacy(data); } public override BloodType GetBloodType() { return BloodType.Worker; } } internal class WarriorLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerWarriorLegacy(out var warriorLegacy)) { return new KeyValuePair(0, 0f); } return warriorLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerWarriorLegacy(data); } public override BloodType GetBloodType() { return BloodType.Warrior; } } internal class ScholarLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerScholarLegacy(out var scholarLegacy)) { return new KeyValuePair(0, 0f); } return scholarLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerScholarLegacy(data); } public override BloodType GetBloodType() { return BloodType.Scholar; } } internal class RogueLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerRogueLegacy(out var rogueLegacy)) { return new KeyValuePair(0, 0f); } return rogueLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerRogueLegacy(data); } public override BloodType GetBloodType() { return BloodType.Rogue; } } internal class MutantLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerMutantLegacy(out var mutantLegacy)) { return new KeyValuePair(0, 0f); } return mutantLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerMutantLegacy(data); } public override BloodType GetBloodType() { return BloodType.Mutant; } } internal class DraculinLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerDraculinLegacy(out var draculinLegacy)) { return new KeyValuePair(0, 0f); } return draculinLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerDraculinLegacy(data); } public override BloodType GetBloodType() { return BloodType.Draculin; } } internal class ImmortalLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerImmortalLegacy(out var immortalLegacy)) { return new KeyValuePair(0, 0f); } return immortalLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerImmortalLegacy(data); } public override BloodType GetBloodType() { return BloodType.Immortal; } } internal class CreatureLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerCreatureLegacy(out var creatureLegacy)) { return new KeyValuePair(0, 0f); } return creatureLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerCreatureLegacy(data); } public override BloodType GetBloodType() { return BloodType.Creature; } } internal class BruteLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerBruteLegacy(out var bruteLegacy)) { return new KeyValuePair(0, 0f); } return bruteLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerBruteLegacy(data); } public override BloodType GetBloodType() { return BloodType.Brute; } } internal class CorruptionLegacy : BloodLegacy { public override KeyValuePair GetLegacyData(ulong steamId) { if (!steamId.TryGetPlayerCorruptionLegacy(out var corruptedLegacy)) { return new KeyValuePair(0, 0f); } return corruptedLegacy; } public override void SetLegacyData(ulong steamId, KeyValuePair data) { steamId.SetPlayerCorruptionLegacy(data); } public override BloodType GetBloodType() { return BloodType.Corruption; } } internal interface IDataManager { void SaveAll(); void LoadAll(); void Save(ulong steamId); void Load(ulong steamId); } internal abstract class DataManager : IDataManager where T : class, new() { protected static readonly JsonSerializerOptions _options = new JsonSerializerOptions { WriteIndented = true, IncludeFields = true, Converters = { (JsonConverter)new JsonStringEnumConverter() } }; protected abstract string FolderName { get; } protected abstract Dictionary DataMap { get; } protected virtual string FileName => typeof(T).Name + ".json"; protected static string BasePath => Path.Combine(Paths.ConfigPath, "Bloodcraft"); protected string GetPlayerPath(ulong steamId) { string text = Path.Combine(BasePath, FolderName, steamId.ToString()); Directory.CreateDirectory(text); return Path.Combine(text, FileName); } public virtual void Save(ulong steamId) { if (DataMap.TryGetValue(steamId, out var value)) { string playerPath = GetPlayerPath(steamId); string contents = JsonSerializer.Serialize(value, _options); File.WriteAllText(playerPath, contents); } } public virtual void Load(ulong steamId) { string playerPath = GetPlayerPath(steamId); if (File.Exists(playerPath)) { string json = File.ReadAllText(playerPath); DataMap[steamId] = JsonSerializer.Deserialize(json, _options) ?? new T(); } } public void SaveAll() { foreach (ulong key in DataMap.Keys) { Save(key); } } public void LoadAll() { } } internal class LevelingManager : DataManager { public class LevelingData { public KeyValuePair Experience { get; set; } public KeyValuePair RestedXP { get; set; } } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "Leveling"; protected override Dictionary DataMap => _data; } internal class PrestigeManager : DataManager { public class PrestigeData { public Dictionary Prestiges { get; set; } = new Dictionary(); } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "Prestige"; protected override Dictionary DataMap => _data; } internal class ProfessionManager : DataManager { public class ProfessionData { public Dictionary> Professions { get; set; } = new Dictionary>(); } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "Professions"; protected override Dictionary DataMap => _data; public static KeyValuePair GetProfessionXP(ulong steamId, Profession type) { if (!_data.TryGetValue(steamId, out var value)) { return new KeyValuePair(0, 0f); } if (!value.Professions.TryGetValue(type, out var value2)) { return new KeyValuePair(0, 0f); } return value2; } public void SetProfessionXP(ulong steamId, Profession type, KeyValuePair value) { if (!_data.TryGetValue(steamId, out var value2)) { value2 = new ProfessionData(); _data[steamId] = value2; } value2.Professions[type] = value; Save(steamId); } } internal class BloodLegacyManager : DataManager { public class BloodLegacyData { public Dictionary> Legacies { get; set; } = new Dictionary>(); } public class BloodStatsManager : DataManager { public class BloodTypeStatsData { public Dictionary> BloodTypeStats { get; set; } = new Dictionary>(); } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "BloodLegacies"; protected override Dictionary DataMap => _data; public static List GetStats(ulong steamId, BloodType type) { if (!_data.TryGetValue(steamId, out var value)) { return new List(); } if (!value.BloodTypeStats.TryGetValue(type, out var value2)) { return new List(); } return value2; } public void SetStats(ulong steamId, BloodType type, List stats) { if (!_data.TryGetValue(steamId, out var value)) { value = new BloodTypeStatsData(); _data[steamId] = value; } value.BloodTypeStats[type] = stats; Save(steamId); } } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "BloodLegacies"; protected override Dictionary DataMap => _data; public static KeyValuePair GetLegacyXP(ulong steamId, BloodType type) { if (!_data.TryGetValue(steamId, out var value)) { return new KeyValuePair(0, 0f); } if (!value.Legacies.TryGetValue(type, out var value2)) { return new KeyValuePair(0, 0f); } return value2; } public void SetLegacyXP(ulong steamId, BloodType type, KeyValuePair value) { if (!_data.TryGetValue(steamId, out var value2)) { value2 = new BloodLegacyData(); _data[steamId] = value2; } value2.Legacies[type] = value; Save(steamId); } } internal class WeaponExpertiseManager : DataManager { public class WeaponExpertiseData { public Dictionary> WeaponXP { get; set; } = new Dictionary>(); } public class WeaponStatManager : DataManager { public class WeaponTypeStatsData { public Dictionary> WeaponTypeStats { get; set; } = new Dictionary>(); } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "WeaponExpertise"; protected override Dictionary DataMap => _data; public static List GetStats(ulong steamId, WeaponType type) { if (!_data.TryGetValue(steamId, out var value)) { return new List(); } if (!value.WeaponTypeStats.TryGetValue(type, out var value2)) { return new List(); } return value2; } public void SetStats(ulong steamId, WeaponType type, List stats) { if (!_data.TryGetValue(steamId, out var value)) { value = new WeaponTypeStatsData(); _data[steamId] = value; } value.WeaponTypeStats[type] = stats; Save(steamId); } } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "WeaponExpertise"; protected override Dictionary DataMap => _data; public static KeyValuePair GetExpertise(ulong steamId, WeaponType type) { if (!_data.TryGetValue(steamId, out var value)) { return new KeyValuePair(0, 0f); } if (!value.WeaponXP.TryGetValue(type, out var value2)) { return new KeyValuePair(0, 0f); } return value2; } public void SetExpertise(ulong steamId, WeaponType type, KeyValuePair value) { if (!_data.TryGetValue(steamId, out var value2)) { value2 = new WeaponExpertiseData(); _data[steamId] = value2; } value2.WeaponXP[type] = value; Save(steamId); } } internal class SpellsManager : DataManager { public class SpellsData { public (int FirstUnarmed, int SecondUnarmed, int ClassSpell) Spells; } private static readonly Dictionary _data = new Dictionary(); protected override string FolderName => "Spells"; protected override Dictionary DataMap => _data; public static (int, int, int) GetSpells(ulong steamId) { if (!_data.TryGetValue(steamId, out var value)) { return (0, 0, 0); } return value.Spells; } public void SetSpells(ulong steamId, (int, int, int) spells) { if (!_data.TryGetValue(steamId, out var value)) { value = new SpellsData(); _data[steamId] = value; } value.Spells = spells; Save(steamId); } } internal static class EclipseInterface { public static readonly bool ExtraRecipes = ConfigService.ExtraRecipes; public static readonly int PrimalCost = ConfigService.PrimalJewelCost; public static readonly int MaxLevel = ConfigService.MaxLevel; public static readonly int MaxLegacyLevel = ConfigService.MaxBloodLevel; public static readonly int MaxExpertiseLevel = ConfigService.MaxExpertiseLevel; public static readonly int MaxFamiliarLevel = ConfigService.MaxFamiliarLevel; public static readonly float PrestigeStatMultiplier = ConfigService.PrestigeStatMultiplier; public static readonly float ClassStatMultiplier = ConfigService.SynergyMultiplier; public const int MAX_PROFESSION_LEVEL = 100; } internal interface IVersionHandler { void SendClientConfig(User user); void SendClientProgress(Entity character, ulong steamId); string BuildConfigMessage(); string BuildProgressMessage(TProgressData data); } internal static class VersionHandler { private const string VERSION_1_3 = "1.3"; public static readonly Dictionary VersionHandlers = new Dictionary { { "1.3", new VersionHandler_1_3() } }; public static IVersionHandler? GetHandler(string version) { if (VersionHandlers.TryGetValue(version, out var value) && value is IVersionHandler result) { return result; } return null; } } internal class VersionHandler_1_3 : IVersionHandler { public void SendClientConfig(User user) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) string text = BuildConfigMessage(); string message = text + ";mac" + ChatMessageSystemPatch.GenerateMAC(text); EmberglassEclipseBridge.SendToClientOrFallback(user, message, "configs"); } public void SendClientProgress(Entity playerCharacter, ulong steamId) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //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_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) User user = playerCharacter.Read().UserEntity.Read(); ProgressDataV1_3 data = new ProgressDataV1_3 { ExperienceData = EclipseService.GetExperienceData(steamId), LegacyData = EclipseService.GetLegacyData(playerCharacter, steamId), ExpertiseData = EclipseService.GetExpertiseData(playerCharacter, steamId), FamiliarData = EclipseService.GetFamiliarData(playerCharacter, steamId), ProfessionData = EclipseService.GetProfessionData(steamId), DailyQuestData = EclipseService.GetQuestData(steamId, QuestSystem.QuestType.Daily), WeeklyQuestData = EclipseService.GetQuestData(steamId, QuestSystem.QuestType.Weekly), ShiftSpellData = EclipseService.GetShiftSpellData(playerCharacter) }; string text = BuildProgressMessage(data); string message = text + ";mac" + ChatMessageSystemPatch.GenerateMAC(text); EmberglassEclipseBridge.SendToClientOrFallback(user, message, "progress"); } public string BuildConfigMessage() { List source = (from WeaponManager.WeaponStats.WeaponStatType stat in Enum.GetValues(typeof(WeaponManager.WeaponStats.WeaponStatType)) select WeaponManager.WeaponStats.WeaponStatBaseCaps[stat]).ToList(); List source2 = (from BloodManager.BloodStats.BloodStatType stat in Enum.GetValues(typeof(BloodManager.BloodStats.BloodStatType)) select BloodManager.BloodStats.BloodStatBaseCaps[stat]).ToList(); float prestigeStatMultiplier = EclipseInterface.PrestigeStatMultiplier; float classStatMultiplier = EclipseInterface.ClassStatMultiplier; int maxLevel = EclipseInterface.MaxLevel; int maxLegacyLevel = EclipseInterface.MaxLegacyLevel; int maxExpertiseLevel = EclipseInterface.MaxExpertiseLevel; int maxFamiliarLevel = EclipseInterface.MaxFamiliarLevel; int num = 100; bool extraRecipes = EclipseInterface.ExtraRecipes; int primalCost = EclipseInterface.PrimalCost; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.AppendFormat(CultureInfo.InvariantCulture, "[{0}]:", 2).AppendFormat(CultureInfo.InvariantCulture, "{0:F2},{1:F2},{2},{3},{4},{5},{6},{7},{8},", prestigeStatMultiplier, classStatMultiplier, maxLevel, maxLegacyLevel, maxExpertiseLevel, maxFamiliarLevel, num, extraRecipes, primalCost); stringBuilder.Append(string.Join(",", source.Select((float val) => val.ToString("F2")))).Append(','); stringBuilder.Append(string.Join(",", source2.Select((float val) => val.ToString("F2")))).Append(','); foreach (KeyValuePair, List)> item in Classes.ClassWeaponBloodEnumMap) { ClassManager.PlayerClass key = item.Key; var (source3, source4) = item.Value; stringBuilder.AppendFormat(CultureInfo.InvariantCulture, "{0:D2},", (int)(key + 1)); stringBuilder.Append(string.Join("", source3.Select((int s) => (s + 1).ToString("D2")))); stringBuilder.Append(','); stringBuilder.Append(string.Join("", source4.Select((int s) => (s + 1).ToString("D2")))); stringBuilder.Append(','); } if (stringBuilder[stringBuilder.Length - 1] == ',') { stringBuilder.Length--; } return stringBuilder.ToString(); } public string BuildProgressMessage(ProgressDataV1_3 data) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.AppendFormat(CultureInfo.InvariantCulture, "[{0}]:", 1).AppendFormat(CultureInfo.InvariantCulture, "{0:D2},{1:D2},{2:D2},{3},", data.ExperienceData.Percent, data.ExperienceData.Level, data.ExperienceData.Prestige, data.ExperienceData.Class).AppendFormat(CultureInfo.InvariantCulture, "{0:D2},{1:D2},{2:D2},{3:D2},{4:D6},", data.LegacyData.Percent, data.LegacyData.Level, data.LegacyData.Prestige, data.LegacyData.Enum, data.LegacyData.LegacyBonusStats) .AppendFormat(CultureInfo.InvariantCulture, "{0:D2},{1:D2},{2:D2},{3:D2},{4:D6},", data.ExpertiseData.Percent, data.ExpertiseData.Level, data.ExpertiseData.Prestige, data.ExpertiseData.Enum, data.ExpertiseData.ExpertiseBonusStats) .AppendFormat(CultureInfo.InvariantCulture, "{0:D2},{1:D2},{2:D2},{3},{4},", data.FamiliarData.Percent, data.FamiliarData.Level, data.FamiliarData.Prestige, data.FamiliarData.Name, data.FamiliarData.FamiliarStats) .AppendFormat(CultureInfo.InvariantCulture, "{0:D2},{1:D2},{2:D2},{3:D2},{4:D2},{5:D2},{6:D2},{7:D2},{8:D2},{9:D2},{10:D2},{11:D2},{12:D2},{13:D2},{14:D2},{15:D2},", data.ProfessionData.EnchantingProgress, data.ProfessionData.EnchantingLevel, data.ProfessionData.AlchemyProgress, data.ProfessionData.AlchemyLevel, data.ProfessionData.HarvestingProgress, data.ProfessionData.HarvestingLevel, data.ProfessionData.BlacksmithingProgress, data.ProfessionData.Rest.Item1, data.ProfessionData.Rest.Item2, data.ProfessionData.Rest.Item3, data.ProfessionData.Rest.Item4, data.ProfessionData.Rest.Item5, data.ProfessionData.Rest.Item6, data.ProfessionData.Rest.Item7, data.ProfessionData.Rest.Rest.Item1, data.ProfessionData.Rest.Rest.Item2) .AppendFormat(CultureInfo.InvariantCulture, "{0},{1:D2},{2:D2},{3},{4},", data.DailyQuestData.Type, data.DailyQuestData.Progress, data.DailyQuestData.Goal, data.DailyQuestData.Target, data.DailyQuestData.IsVBlood) .AppendFormat(CultureInfo.InvariantCulture, "{0},{1:D2},{2:D2},{3},{4},", data.WeeklyQuestData.Type, data.WeeklyQuestData.Progress, data.WeeklyQuestData.Goal, data.WeeklyQuestData.Target, data.WeeklyQuestData.IsVBlood) .AppendFormat(CultureInfo.InvariantCulture, "{0:D2}", data.ShiftSpellData); return stringBuilder.ToString(); } } internal class ProgressDataV1_3 { public (int Percent, int Level, int Prestige, int Class) ExperienceData { get; set; } public (int Percent, int Level, int Prestige, int Enum, int LegacyBonusStats) LegacyData { get; set; } public (int Percent, int Level, int Prestige, int Enum, int ExpertiseBonusStats) ExpertiseData { get; set; } public (int Percent, int Level, int Prestige, string Name, string FamiliarStats) FamiliarData { get; set; } public (int EnchantingProgress, int EnchantingLevel, int AlchemyProgress, int AlchemyLevel, int HarvestingProgress, int HarvestingLevel, int BlacksmithingProgress, int BlacksmithingLevel, int TailoringProgress, int TailoringLevel, int WoodcuttingProgress, int WoodcuttingLevel, int MiningProgress, int MiningLevel, int FishingProgress, int FishingLevel) ProfessionData { get; set; } public (int Type, int Progress, int Goal, string Target, string IsVBlood) DailyQuestData { get; set; } public (int Type, int Progress, int Goal, string Target, string IsVBlood) WeeklyQuestData { get; set; } public int ShiftSpellData { get; set; } } public enum PrestigeType { Experience, Exo, SwordExpertise, AxeExpertise, MaceExpertise, SpearExpertise, CrossbowExpertise, GreatSwordExpertise, SlashersExpertise, PistolsExpertise, ReaperExpertise, LongbowExpertise, WhipExpertise, UnarmedExpertise, FishingPoleExpertise, TwinBladesExpertise, DaggersExpertise, ClawsExpertise, WorkerLegacy, WarriorLegacy, ScholarLegacy, RogueLegacy, MutantLegacy, DraculinLegacy, ImmortalLegacy, CreatureLegacy, BruteLegacy, CorruptionLegacy } internal interface IPrestige { void DoPrestige(ulong steamID); int GetPrestigeLevel(ulong steamID); KeyValuePair GetPrestigeData(ulong steamID); PrestigeType GetPrestigeType(); } internal static class PrestigeFactory { public static IPrestige GetPrestige(PrestigeType prestigeType) { return prestigeType switch { PrestigeType.Experience => new LevelingPrestige(), PrestigeType.SwordExpertise => new SwordPrestige(), PrestigeType.AxeExpertise => new AxePrestige(), PrestigeType.MaceExpertise => new MacePrestige(), PrestigeType.SpearExpertise => new SpearPrestige(), PrestigeType.CrossbowExpertise => new CrossbowPrestige(), PrestigeType.GreatSwordExpertise => new GreatSwordPrestige(), PrestigeType.SlashersExpertise => new SlashersPrestige(), PrestigeType.PistolsExpertise => new PistolsPrestige(), PrestigeType.ReaperExpertise => new ReaperPrestige(), PrestigeType.LongbowExpertise => new LongbowPrestige(), PrestigeType.WhipExpertise => new WhipPrestige(), PrestigeType.UnarmedExpertise => new UnarmedPrestige(), PrestigeType.FishingPoleExpertise => new FishingPolePrestige(), PrestigeType.TwinBladesExpertise => new TwinBladesPrestige(), PrestigeType.DaggersExpertise => new DaggersPrestige(), PrestigeType.ClawsExpertise => new ClawsPrestige(), PrestigeType.WorkerLegacy => new WorkerPrestige(), PrestigeType.WarriorLegacy => new WarriorPrestige(), PrestigeType.ScholarLegacy => new ScholarPrestige(), PrestigeType.RogueLegacy => new RoguePrestige(), PrestigeType.MutantLegacy => new MutantPrestige(), PrestigeType.DraculinLegacy => new DraculinPrestige(), PrestigeType.ImmortalLegacy => new ImmortalPrestige(), PrestigeType.CreatureLegacy => new CreaturePrestige(), PrestigeType.BruteLegacy => new BrutePrestige(), PrestigeType.CorruptionLegacy => new CorruptionPrestige(), _ => throw new ArgumentOutOfRangeException("prestigeType", prestigeType, null), }; } } internal abstract class Prestige : IPrestige { public abstract void DoPrestige(ulong steamID); public virtual int GetPrestigeLevel(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value)) { return value; } return 0; } public abstract KeyValuePair GetPrestigeData(ulong steamID); public abstract PrestigeType GetPrestigeType(); } internal class LevelingPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerExperience(out var experience)) { experience = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerExperience(experience); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerExperience(out var experience)) { return new KeyValuePair(0, 0f); } return experience; } public override PrestigeType GetPrestigeType() { return PrestigeType.Experience; } } internal class SwordPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerSwordExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerSwordExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerSwordExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.SwordExpertise; } } internal class AxePrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerAxeExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerAxeExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerAxeExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.AxeExpertise; } } internal class MacePrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerMaceExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerMaceExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerMaceExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.MaceExpertise; } } internal class SpearPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerSpearExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerSpearExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerSpearExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.SpearExpertise; } } internal class CrossbowPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerCrossbowExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerCrossbowExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerCrossbowExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.CrossbowExpertise; } } internal class GreatSwordPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerGreatSwordExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerGreatSwordExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerGreatSwordExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.GreatSwordExpertise; } } internal class SlashersPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerSlashersExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerSlashersExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerSlashersExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.SlashersExpertise; } } internal class PistolsPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerPistolsExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerPistolsExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerPistolsExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.PistolsExpertise; } } internal class ReaperPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerReaperExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerReaperExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerReaperExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.ReaperExpertise; } } internal class LongbowPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerLongbowExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerLongbowExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerLongbowExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.LongbowExpertise; } } internal class WhipPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerWhipExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerWhipExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerWhipExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.WhipExpertise; } } internal class UnarmedPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerUnarmedExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerUnarmedExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerUnarmedExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.UnarmedExpertise; } } internal class FishingPolePrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerFishingPoleExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerFishingPoleExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerFishingPoleExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.FishingPoleExpertise; } } internal class TwinBladesPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerTwinBladesExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerTwinBladesExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerTwinBladesExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.TwinBladesExpertise; } } internal class DaggersPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerDaggersExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerDaggersExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerDaggersExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.DaggersExpertise; } } internal class ClawsPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerClawsExpertise(out var expertise)) { expertise = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerClawsExpertise(expertise); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerClawsExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override PrestigeType GetPrestigeType() { return PrestigeType.ClawsExpertise; } } internal class WorkerPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerWorkerLegacy(out var workerLegacy)) { workerLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerWorkerLegacy(workerLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerWorkerLegacy(out var workerLegacy)) { return new KeyValuePair(0, 0f); } return workerLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.WorkerLegacy; } } internal class WarriorPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerWarriorLegacy(out var warriorLegacy)) { warriorLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerWarriorLegacy(warriorLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerWarriorLegacy(out var warriorLegacy)) { return new KeyValuePair(0, 0f); } return warriorLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.WarriorLegacy; } } internal class ScholarPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerScholarLegacy(out var scholarLegacy)) { scholarLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerScholarLegacy(scholarLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerScholarLegacy(out var scholarLegacy)) { return new KeyValuePair(0, 0f); } return scholarLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.ScholarLegacy; } } internal class RoguePrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerRogueLegacy(out var rogueLegacy)) { rogueLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerRogueLegacy(rogueLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerRogueLegacy(out var rogueLegacy)) { return new KeyValuePair(0, 0f); } return rogueLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.RogueLegacy; } } internal class MutantPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerMutantLegacy(out var mutantLegacy)) { mutantLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerMutantLegacy(mutantLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerMutantLegacy(out var mutantLegacy)) { return new KeyValuePair(0, 0f); } return mutantLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.MutantLegacy; } } internal class DraculinPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerDraculinLegacy(out var draculinLegacy)) { draculinLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerDraculinLegacy(draculinLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerDraculinLegacy(out var draculinLegacy)) { return new KeyValuePair(0, 0f); } return draculinLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.DraculinLegacy; } } internal class ImmortalPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerImmortalLegacy(out var immortalLegacy)) { immortalLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerImmortalLegacy(immortalLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerImmortalLegacy(out var immortalLegacy)) { return new KeyValuePair(0, 0f); } return immortalLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.ImmortalLegacy; } } internal class CreaturePrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerCreatureLegacy(out var creatureLegacy)) { creatureLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerCreatureLegacy(creatureLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerCreatureLegacy(out var creatureLegacy)) { return new KeyValuePair(0, 0f); } return creatureLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.CreatureLegacy; } } internal class BrutePrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerBruteLegacy(out var bruteLegacy)) { bruteLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerBruteLegacy(bruteLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerBruteLegacy(out var bruteLegacy)) { return new KeyValuePair(0, 0f); } return bruteLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.BruteLegacy; } } internal class CorruptionPrestige : Prestige { public override void DoPrestige(ulong steamID) { PrestigeType prestigeType = GetPrestigeType(); if (steamID.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(prestigeType, out var value) && steamID.TryGetPlayerCorruptionLegacy(out var corruptedLegacy)) { corruptedLegacy = new KeyValuePair(0, 0f); value++; prestiges[prestigeType] = value; steamID.SetPlayerCorruptionLegacy(corruptedLegacy); steamID.SetPlayerPrestiges(prestiges); } } public override int GetPrestigeLevel(ulong steamID) { return base.GetPrestigeLevel(steamID); } public override KeyValuePair GetPrestigeData(ulong steamID) { if (!steamID.TryGetPlayerCorruptionLegacy(out var corruptedLegacy)) { return new KeyValuePair(0, 0f); } return corruptedLegacy; } public override PrestigeType GetPrestigeType() { return PrestigeType.CorruptionLegacy; } } public enum Profession { None, Enchanting, Alchemy, Harvesting, Blacksmithing, Tailoring, Woodcutting, Mining, Fishing } internal interface IProfession { KeyValuePair GetProfessionData(ulong steamId); int GetProfessionLevel(ulong steamId); void SetProfessionData(ulong steamId, KeyValuePair xpData); string GetProfessionName(); float3 GetProfessionColor(); Profession GetProfessionEnum(); } internal static class ProfessionFactory { private static readonly List _professionHandlers = new List(8) { new WoodcuttingProfession(), new MiningProfession(), new BlacksmithingProfession(), new TailoringProfession(), new FishingProfession(), new AlchemyProfession(), new HarvestingProfession(), new EnchantingProfession() }; public static IProfession GetProfession(PrefabGUID prefabGuid) { //IL_000f: Unknown result type (might be due to invalid IL or missing references) string text = string.Empty; if (((PrefabGUID)(ref prefabGuid)).HasValue()) { text = prefabGuid.GetPrefabName().ToLower(); } if (text.Contains("wood")) { return new WoodcuttingProfession(); } if (text.Contains("gem") || text.Contains("jewel") || text.Contains("magicsource")) { return new EnchantingProfession(); } if (text.Contains("mineral") || text.Contains("stone") || text.Contains("bloodcrystal") || text.Contains("techscrap") || text.Contains("emery")) { return new MiningProfession(); } if (text.Contains("weapon") || text.Contains("onyxtear")) { return new BlacksmithingProfession(); } if (text.Contains("armor") || text.Contains("cloak") || text.Contains("bag") || text.Contains("cloth") || text.Contains("chest") || text.Contains("boots") || text.Contains("gloves") || text.Contains("legs")) { return new TailoringProfession(); } if (text.Contains("fish")) { return new FishingProfession(); } if (text.Contains("plant") || text.Contains("trippyshroom")) { return new HarvestingProfession(); } if (text.Contains("canteen") || text.Contains("potion") || text.Contains("bottle") || text.Contains("flask") || text.Contains("consumable") || text.Contains("duskcaller") || text.Contains("elixir") || text.Contains("coating")) { return new AlchemyProfession(); } return null; } public static IProfession GetProfession(Profession profession) { return profession switch { Profession.Woodcutting => new WoodcuttingProfession(), Profession.Mining => new MiningProfession(), Profession.Blacksmithing => new BlacksmithingProfession(), Profession.Tailoring => new TailoringProfession(), Profession.Fishing => new FishingProfession(), Profession.Alchemy => new AlchemyProfession(), Profession.Harvesting => new HarvestingProfession(), Profession.Enchanting => new EnchantingProfession(), _ => null, }; } public static string GetProfessionNames() { List list = _professionHandlers.ConvertAll((ProfessionBase profession) => profession.GetProfessionEnum()); foreach (Profession item in list) { if (item.IsDisabled()) { list.Remove(item); } } return string.Join(", ", list.Select((Profession profession) => profession.ToString())); } } internal abstract class ProfessionBase : IProfession { public abstract KeyValuePair GetProfessionData(ulong steamId); public abstract int GetProfessionLevel(ulong steamId); public abstract void SetProfessionData(ulong steamId, KeyValuePair data); public abstract string GetProfessionName(); public abstract float3 GetProfessionColor(); public abstract Profession GetProfessionEnum(); } internal class EnchantingProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerEnchanting(out var enchanting)) { return new KeyValuePair(0, 0f); } return enchanting; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerEnchanting(data); } public override string GetProfessionName() { return "Enchanting"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0.5f, 0.1f, 0.8f); } public override Profession GetProfessionEnum() { return Profession.Enchanting; } } internal class AlchemyProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerAlchemy(out var alchemy)) { return new KeyValuePair(0, 0f); } return alchemy; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerAlchemy(data); } public override string GetProfessionName() { return "Alchemy"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0.1f, 0.8f, 0.6f); } public override Profession GetProfessionEnum() { return Profession.Alchemy; } } internal class HarvestingProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerHarvesting(out var harvesting)) { return new KeyValuePair(0, 0f); } return harvesting; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerHarvesting(data); } public override string GetProfessionName() { return "Harvesting"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0f, 0.5f, 0f); } public override Profession GetProfessionEnum() { return Profession.Harvesting; } } internal class BlacksmithingProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerBlacksmithing(out var blacksmithing)) { return new KeyValuePair(0, 0f); } return blacksmithing; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerBlacksmithing(data); } public override string GetProfessionName() { return "Blacksmithing"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0.2f, 0.2f, 0.3f); } public override Profession GetProfessionEnum() { return Profession.Blacksmithing; } } internal class TailoringProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerTailoring(out var tailoring)) { return new KeyValuePair(0, 0f); } return tailoring; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerTailoring(data); } public override string GetProfessionName() { return "Tailoring"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0.9f, 0.6f, 0.5f); } public override Profession GetProfessionEnum() { return Profession.Tailoring; } } internal class WoodcuttingProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerWoodcutting(out var woodcutting)) { return new KeyValuePair(0, 0f); } return woodcutting; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerWoodcutting(data); } public override string GetProfessionName() { return "Woodcutting"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0.6f, 0.2f, 0.2f); } public override Profession GetProfessionEnum() { return Profession.Woodcutting; } } internal class MiningProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerMining(out var mining)) { return new KeyValuePair(0, 0f); } return mining; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerMining(data); } public override string GetProfessionName() { return "Mining"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0.5f, 0.5f, 0.5f); } public override Profession GetProfessionEnum() { return Profession.Mining; } } internal class FishingProfession : ProfessionBase { public override KeyValuePair GetProfessionData(ulong steamId) { if (!steamId.TryGetPlayerFishing(out var fishing)) { return new KeyValuePair(0, 0f); } return fishing; } public override int GetProfessionLevel(ulong steamId) { return GetProfessionData(steamId).Key; } public override void SetProfessionData(ulong steamId, KeyValuePair data) { steamId.SetPlayerFishing(data); } public override string GetProfessionName() { return "Fishing"; } public override float3 GetProfessionColor() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) return new float3(0f, 0.5f, 0.7f); } public override Profession GetProfessionEnum() { return Profession.Fishing; } } public enum ShapeshiftType { EvolvedVampire, CorruptedSerpent } internal interface IShapeshift { PrefabGUID ShapeshiftBuff { get; } List AbilityGroups { get; } IReadOnlyDictionary Abilities { get; } IReadOnlyDictionary Cooldowns { get; } IReadOnlyDictionary UnlockLevels { get; } PrefabGUID GetShapeshiftBuff(); bool TryGetCooldown(PrefabGUID ability, out float cooldown); } internal abstract class Shapeshift : IShapeshift { private static readonly Dictionary _emptyUnlockLevels = new Dictionary(); public abstract ShapeshiftType Type { get; } public abstract PrefabGUID ShapeshiftBuff { get; } public abstract List AbilityGroups { get; } public abstract IReadOnlyDictionary Abilities { get; } public abstract IReadOnlyDictionary Cooldowns { get; } public virtual IReadOnlyDictionary UnlockLevels => _emptyUnlockLevels; public virtual PrefabGUID GetShapeshiftBuff() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) return ShapeshiftBuff; } public virtual bool TryGetCooldown(PrefabGUID ability, out float cooldown) { //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) foreach (KeyValuePair ability2 in Abilities) { var (key, val2) = (KeyValuePair)(ref ability2); if (((PrefabGUID)(ref val2)).Equals(ability)) { return Cooldowns.TryGetValue(key, out cooldown); } } cooldown = 0f; return false; } public virtual bool TryGetSlot(PrefabGUID ability, out int slot) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) foreach (KeyValuePair ability2 in Abilities) { PrefabGUID value = ability2.Value; if (((PrefabGUID)(ref value)).Equals(ability)) { slot = ability2.Key; return true; } } slot = -1; return false; } } internal class EvolvedVampire : Shapeshift { private static readonly List _abilityGroups = new List(8) { PrefabGUIDs.AB_Vampire_Dracula_ShockwaveFastSlash_AbilityGroup, PrefabGUIDs.AB_Vampire_Dracula_DownSwingDetonating_Abilitygroup, PrefabGUIDs.AB_Vampire_Dracula_QuickTeleport_AbilityGroup, PrefabGUIDs.AB_Vampire_Dracula_VeilOfBats_AbilityGroup, PrefabGUIDs.AB_Vampire_Dracula_SideStepLong_Followup_Abilitygroup, PrefabGUIDs.AB_Vampire_Dracula_EtherialSword_Abilitygroup, PrefabGUIDs.AB_Vampire_Dracula_RingOfBlood_AbilityGroup, PrefabGUIDs.AB_Blood_BloodStorm_AbilityGroup }; private static readonly Dictionary _abilities = new Dictionary { { 0, PrefabGUIDs.AB_Vampire_Dracula_ShockwaveFastSlash_AbilityGroup }, { 1, PrefabGUIDs.AB_Vampire_Dracula_DownSwingDetonating_Abilitygroup }, { 2, PrefabGUIDs.AB_Vampire_Dracula_QuickTeleport_AbilityGroup }, { 3, PrefabGUIDs.AB_Vampire_Dracula_VeilOfBats_AbilityGroup }, { 4, PrefabGUIDs.AB_Vampire_Dracula_SideStepLong_Followup_Abilitygroup }, { 5, PrefabGUIDs.AB_Vampire_Dracula_EtherialSword_Abilitygroup }, { 6, PrefabGUIDs.AB_Vampire_Dracula_RingOfBlood_AbilityGroup }, { 7, PrefabGUIDs.AB_Blood_BloodStorm_AbilityGroup } }; private static readonly Dictionary _cooldowns = new Dictionary { { 0, 0f }, { 1, 8f }, { 2, 0f }, { 3, 8f }, { 4, 8f }, { 5, 15f }, { 6, 25f }, { 7, 35f } }; public override ShapeshiftType Type => ShapeshiftType.EvolvedVampire; public override PrefabGUID ShapeshiftBuff => Buffs.EvolvedVampireBuff; public override List AbilityGroups => _abilityGroups; public override IReadOnlyDictionary Abilities => _abilities; public override IReadOnlyDictionary Cooldowns => _cooldowns; } internal class CorruptedSerpent : Shapeshift { private static readonly List _abilityGroups = new List(8) { PrefabGUIDs.AB_Blackfang_Morgana_MeleeAttack_AbilityGroup, PrefabGUIDs.AB_Blackfang_Morgana_GroundPiercer_AbilityGroup, PrefabGUIDs.AB_Vampire_Dracula_QuickTeleport_AbilityGroup, PrefabGUIDs.AB_Blackfang_Morgana_MistSpinners_AbilityGroup, PrefabGUIDs.AB_Blackfang_Morgana_CrossWindSlash_AbilityGroup, PrefabGUIDs.AB_Blackfang_Morgana_SpectralBlast_AbilityGroup, PrefabGUIDs.AB_Blackfang_Morgana_SpectralBeam_AbilityGroup, PrefabGUIDs.AB_Blackfang_Morgana_EyeOfTheCorruption_Setup_AbilityGroup }; private static readonly Dictionary _abilities = new Dictionary { { 0, PrefabGUIDs.AB_Blackfang_Morgana_MeleeAttack_AbilityGroup }, { 1, PrefabGUIDs.AB_Blackfang_Morgana_GroundPiercer_AbilityGroup }, { 2, PrefabGUIDs.AB_Vampire_Dracula_QuickTeleport_AbilityGroup }, { 3, PrefabGUIDs.AB_Blackfang_Morgana_MistSpinners_AbilityGroup }, { 4, PrefabGUIDs.AB_Blackfang_Morgana_CrossWindSlash_AbilityGroup }, { 5, PrefabGUIDs.AB_Blackfang_Morgana_SpectralBlast_AbilityGroup }, { 6, PrefabGUIDs.AB_Blackfang_Morgana_SpectralBeam_AbilityGroup }, { 7, PrefabGUIDs.AB_Blackfang_Morgana_EyeOfTheCorruption_Setup_AbilityGroup } }; private static readonly Dictionary _cooldowns = new Dictionary { { 0, 0f }, { 1, 8f }, { 2, 0f }, { 3, 20f }, { 4, 8f }, { 5, 15f }, { 6, 25f }, { 7, 35f } }; public override ShapeshiftType Type => ShapeshiftType.CorruptedSerpent; public override PrefabGUID ShapeshiftBuff => Buffs.CorruptedSerpentBuff; public override List AbilityGroups => _abilityGroups; public override IReadOnlyDictionary Abilities => _abilities; public override IReadOnlyDictionary Cooldowns => _cooldowns; } public enum WeaponType { Sword, Axe, Mace, Spear, Crossbow, GreatSword, Slashers, Pistols, Reaper, Longbow, Whip, Unarmed, FishingPole, TwinBlades, Daggers, Claws } internal interface IWeaponExpertise { KeyValuePair GetExpertiseData(ulong steamId); void SetExpertiseData(ulong steamId, KeyValuePair xpData); WeaponType GetWeaponType(); } internal static class WeaponExpertiseFactory { public static IWeaponExpertise GetExpertise(WeaponType weaponType) { return weaponType switch { WeaponType.Sword => new SwordExpertise(), WeaponType.Axe => new AxeExpertise(), WeaponType.Mace => new MaceExpertise(), WeaponType.Spear => new SpearExpertise(), WeaponType.Crossbow => new CrossbowExpertise(), WeaponType.GreatSword => new GreatSwordExpertise(), WeaponType.Slashers => new SlashersExpertise(), WeaponType.Pistols => new PistolsExpertise(), WeaponType.Reaper => new ReaperExpertise(), WeaponType.Longbow => new LongbowExpertise(), WeaponType.Whip => new WhipExpertise(), WeaponType.FishingPole => new FishingPoleExpertise(), WeaponType.Unarmed => new UnarmedExpertise(), WeaponType.TwinBlades => new TwinBladesExpertise(), WeaponType.Daggers => new DaggersExpertise(), WeaponType.Claws => new ClawsExpertise(), _ => null, }; } } internal abstract class WeaponExpertise : IWeaponExpertise { public abstract KeyValuePair GetExpertiseData(ulong steamId); public abstract void SetExpertiseData(ulong steamId, KeyValuePair data); public abstract WeaponType GetWeaponType(); } internal class SwordExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerSwordExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerSwordExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Sword; } } internal class AxeExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerAxeExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerAxeExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Axe; } } internal class MaceExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerMaceExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerMaceExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Mace; } } internal class SpearExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerSpearExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerSpearExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Spear; } } internal class CrossbowExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerCrossbowExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerCrossbowExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Crossbow; } } internal class GreatSwordExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerGreatSwordExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerGreatSwordExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.GreatSword; } } internal class SlashersExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerSlashersExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerSlashersExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Slashers; } } internal class PistolsExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerPistolsExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerPistolsExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Pistols; } } internal class ReaperExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerReaperExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerReaperExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Reaper; } } internal class LongbowExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerLongbowExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerLongbowExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Longbow; } } internal class WhipExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerWhipExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerWhipExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Whip; } } internal class FishingPoleExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerFishingPoleExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerFishingPoleExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.FishingPole; } } internal class UnarmedExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerUnarmedExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerUnarmedExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Unarmed; } } internal class TwinBladesExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerTwinBladesExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerTwinBladesExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.TwinBlades; } } internal class DaggersExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerDaggersExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerDaggersExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Daggers; } } internal class ClawsExpertise : WeaponExpertise { public override KeyValuePair GetExpertiseData(ulong steamId) { if (!steamId.TryGetPlayerClawsExpertise(out var expertise)) { return new KeyValuePair(0, 0f); } return expertise; } public override void SetExpertiseData(ulong steamId, KeyValuePair data) { steamId.SetPlayerClawsExpertise(data); } public override WeaponType GetWeaponType() { return WeaponType.Claws; } } } namespace Bloodcraft.Factory { public interface IQuerySpec { bool RequireForUpdate => true; void Build(ref EntityQueryBuilder builder); } public interface IRegistrar { void Register(Action refreshAction); } public readonly struct SystemContext { private readonly Action>> _withTempEntities; private readonly Action> _forEachEntity; private readonly Action>> _withTempChunks; private readonly Action> _forEachChunk; private readonly Func _exists; public SystemBase System { get; } public EntityManager EntityManager { get; } public EntityQuery Query { get; } public EntityTypeHandle EntityTypeHandle { get; } public EntityStorageInfoLookup EntityStorageInfoLookup { get; } public IRegistrar Registrar { get; } public SystemContext(SystemBase system, EntityManager entityManager, EntityQuery query, EntityTypeHandle entityTypeHandle, EntityStorageInfoLookup entityStorageInfoLookup, IRegistrar registrar, Action>> withTempEntities, Action> forEachEntity, Action>> withTempChunks, Action> forEachChunk, Func exists) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0027: 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_002f: Unknown result type (might be due to invalid IL or missing references) System = system ?? throw new ArgumentNullException("system"); EntityManager = entityManager; Query = query; EntityTypeHandle = entityTypeHandle; EntityStorageInfoLookup = entityStorageInfoLookup; Registrar = registrar ?? throw new ArgumentNullException("registrar"); _withTempEntities = withTempEntities ?? throw new ArgumentNullException("withTempEntities"); _forEachEntity = forEachEntity ?? throw new ArgumentNullException("forEachEntity"); _withTempChunks = withTempChunks ?? throw new ArgumentNullException("withTempChunks"); _forEachChunk = forEachChunk ?? throw new ArgumentNullException("forEachChunk"); _exists = exists ?? throw new ArgumentNullException("exists"); } public void WithTempEntities(EntityQuery query, Action> action) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) _withTempEntities(query, action); } public void ForEachEntity(EntityQuery query, Action action) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) _forEachEntity(query, action); } public void WithTempChunks(EntityQuery query, Action> action) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) _withTempChunks(query, action); } public void ForEachChunk(EntityQuery query, Action action) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) _forEachChunk(query, action); } public bool Exists(Entity entity) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) return _exists(entity); } } public interface ISystemWork : IQuerySpec { void OnCreate(SystemContext context) { } void OnStartRunning(SystemContext context) { } void OnUpdate(SystemContext context) { } void OnStopRunning(SystemContext context) { } void OnDestroy(SystemContext context) { } } public abstract class VSystemBase : SystemBase, IRegistrar where TWork : class, ISystemWork, new() { private readonly List> _refreshActions = new List>(); private EntityTypeHandle _entityTypeHandle; private EntityStorageInfoLookup _entityStorageInfoLookup; private EntityQuery _query; protected TWork Work { get; private set; } = new TWork(); protected ref EntityTypeHandle EntityTypeHandle => ref _entityTypeHandle; protected ref EntityStorageInfoLookup EntityStorageInfoLookup => ref _entityStorageInfoLookup; protected EntityQuery Query => _query; public override void OnCreate() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) ((ComponentSystemBase)this).OnCreate(); BuildQuery(); if (Work.RequireForUpdate) { ((ComponentSystemBase)this).RequireForUpdate(_query); } RefreshEntityHandles(); Work.OnCreate(CreateContext()); } public override void OnStartRunning() { ((ComponentSystemBase)this).OnStartRunning(); Work.OnStartRunning(CreateContext()); } public override void OnStopRunning() { Work.OnStopRunning(CreateContext()); ((ComponentSystemBase)this).OnStopRunning(); } public override void OnDestroy() { Work.OnDestroy(CreateContext()); _refreshActions.Clear(); ((ComponentSystemBase)this).OnDestroy(); } public override void OnUpdate() { RefreshEntityHandles(); RunRefreshActions(); Work.OnUpdate(CreateContext()); } protected void WithTempEntities(EntityQuery query, Action> action) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0003: 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) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) if (query == default(EntityQuery)) { throw new ArgumentNullException("query"); } if (action == null) { throw new ArgumentNullException("action"); } NativeArray obj = ((EntityQuery)(ref query)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { action(obj); } finally { if (obj.IsCreated) { obj.Dispose(); } } } protected void ForEachEntity(EntityQuery query, Action action) { //IL_0021: Unknown result type (might be due to invalid IL or missing references) if (action == null) { throw new ArgumentNullException("action"); } WithTempEntities(query, delegate(NativeArray entities) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) for (int i = 0; i < entities.Length; i++) { action(entities[i]); } }); } protected void WithTempChunks(EntityQuery query, Action> action) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0003: 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) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) if (query == default(EntityQuery)) { throw new ArgumentNullException("query"); } if (action == null) { throw new ArgumentNullException("action"); } NativeArray obj = ((EntityQuery)(ref query)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); try { action(obj); } finally { if (obj.IsCreated) { obj.Dispose(); } } } protected void ForEachChunk(EntityQuery query, Action action) { //IL_0021: Unknown result type (might be due to invalid IL or missing references) if (action == null) { throw new ArgumentNullException("action"); } WithTempChunks(query, delegate(NativeArray chunks) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) for (int i = 0; i < chunks.Length; i++) { action(chunks[i]); } }); } protected bool Exists(Entity entity) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) return ((EntityStorageInfoLookup)(ref _entityStorageInfoLookup)).Exists(entity); } void IRegistrar.Register(Action refreshAction) { if (refreshAction == null) { throw new ArgumentNullException("refreshAction"); } _refreshActions.Add(refreshAction); } private void BuildQuery() { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: 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_0030: Unknown result type (might be due to invalid IL or missing references) EntityQueryBuilder builder = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref builder))..ctor(AllocatorHandle.op_Implicit((Allocator)2)); try { Work.Build(ref builder); EntityManager entityManager = ((ComponentSystemBase)this).EntityManager; _query = ((EntityManager)(ref entityManager)).CreateEntityQuery(ref builder); } finally { ((EntityQueryBuilder)(ref builder)).Dispose(); } } private void RefreshEntityHandles() { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: 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_0013: Unknown result type (might be due to invalid IL or missing references) _entityTypeHandle = ((ComponentSystemBase)this).GetEntityTypeHandle(); _entityStorageInfoLookup = ((SystemBase)this).GetEntityStorageInfoLookup(); } private void RunRefreshActions() { if (_refreshActions.Count == 0) { return; } foreach (Action refreshAction in _refreshActions) { refreshAction((SystemBase)(object)this); } } private SystemContext CreateContext() { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: 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_0014: Unknown result type (might be due to invalid IL or missing references) return new SystemContext((SystemBase)(object)this, ((ComponentSystemBase)this).EntityManager, _query, _entityTypeHandle, _entityStorageInfoLookup, this, WithTempEntities, ForEachEntity, WithTempChunks, ForEachChunk, Exists); } } } namespace Bloodcraft.Commands { [CommandGroup("blood", "bl")] internal static class BloodCommands { private const int STATS_BATCH_SIZE = 6; private const int LIST_BATCH_SIZE = 4; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; [Command("get", null, ".bl get [BloodType]", "Display current blood legacy details.", null, false)] public static void GetLegacyCommand(ChatCommandContext ctx, string blood = null) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LegacySystem) { LocalizationService.HandleReply(ctx, "Blood Legacies are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; Blood val = senderCharacterEntity.Read(); BloodType result = BloodManager.GetCurrentBloodType(val); if (string.IsNullOrEmpty(blood)) { result = BloodSystem.GetBloodTypeFromPrefab(val.BloodType); } else if (!Enum.TryParse(blood, ignoreCase: true, out result)) { LocalizationService.HandleReply(ctx, "Invalid blood, use '.bl l' to see options."); return; } ulong platformId = ctx.Event.User.PlatformId; IBloodLegacy bloodHandler = BloodLegacyFactory.GetBloodHandler(result); if (bloodHandler == null) { LocalizationService.HandleReply(ctx, "Invalid blood legacy."); return; } KeyValuePair legacyData = bloodHandler.GetLegacyData(platformId); int value = (int)(legacyData.Value - (float)Progression.ConvertLevelToXp(legacyData.Key)); Dictionary prestiges; int value2 = (platformId.TryGetPlayerPrestiges(out prestiges) ? prestiges[BloodSystem.BloodPrestigeTypes[result]] : 0); if (legacyData.Key > 0) { LocalizationService.HandleReply(ctx, $"You're level [{legacyData.Key}][{value2}] with {value} essence ({BloodSystem.GetLevelProgress(platformId, bloodHandler)}%) in {bloodHandler.GetBloodType()}!"); if (platformId.TryGetPlayerBloodStats(out var bloodStats) && bloodStats.TryGetValue(result, out var value3)) { List> list = new List>(); foreach (BloodManager.BloodStats.BloodStatType item in value3) { if (BloodManager.TryGetScaledModifyUnitLegacyStat(bloodHandler, senderCharacterEntity, platformId, result, item, out var statValue, out var _)) { string value4 = (statValue * 100f).ToString("F1") + "%"; list.Add(new KeyValuePair(item, value4)); } } { foreach (IReadOnlyList> item2 in list.Batch(6)) { string value5 = string.Join(", ", item2.Select((KeyValuePair stat) => $"{stat.Key}: {stat.Value}")); LocalizationService.HandleReply(ctx, $"{result} Stats: {value5}"); } return; } } LocalizationService.HandleReply(ctx, $"No stats selected for {result}, use '.bl lst' to see valid options."); } else { LocalizationService.HandleReply(ctx, $"No progress in {bloodHandler.GetBloodType()} yet."); } } [Command("log", null, ".bl log", "Toggles Legacy progress logging.", null, false)] public static void LogLegacyCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LegacySystem) { LocalizationService.HandleReply(ctx, "Blood Legacies are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "BloodLogging"); LocalizationService.HandleReply(ctx, "Blood Legacy logging " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "BloodLogging") ? "enabled" : "disabled") + "."); } [Command("choosestat", "cst", ".bl cst [BloodOrStat] [BloodStat]", "Choose a bonus stat to enhance for your blood legacy.", null, false)] public static void ChooseBloodStat(ChatCommandContext ctx, string bloodOrStat, int statType = 0) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LegacySystem) { LocalizationService.HandleReply(ctx, "Legacies are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; Blood blood = senderCharacterEntity.Read(); ulong platformId = ctx.Event.User.PlatformId; BloodType currentBloodType; BloodManager.BloodStats.BloodStatType bloodStatType; if (int.TryParse(bloodOrStat, out var result)) { result--; if (!Enum.IsDefined(typeof(BloodManager.BloodStats.BloodStatType), result)) { LocalizationService.HandleReply(ctx, "Invalid blood stat, use '.bl lst' to see valid options."); return; } bloodStatType = (BloodManager.BloodStats.BloodStatType)result; currentBloodType = BloodManager.GetCurrentBloodType(blood); if (BloodManager.ChooseStat(platformId, currentBloodType, bloodStatType)) { Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"{bloodStatType} selected for {currentBloodType}!"); } return; } if (!Enum.TryParse(bloodOrStat, ignoreCase: true, out currentBloodType)) { LocalizationService.HandleReply(ctx, "Invalid blood type, use '.bl l' to see valid options."); return; } if (currentBloodType == BloodType.GateBoss || currentBloodType == BloodType.None || currentBloodType == BloodType.VBlood) { LocalizationService.HandleReply(ctx, "Invalid blood legacy, use '.bl l' to see valid options."); return; } if (statType <= 0) { LocalizationService.HandleReply(ctx, "Invalid blood stat, use '.bl lst' to see valid options."); return; } int num = --statType; if (!Enum.IsDefined(typeof(BloodManager.BloodStats.BloodStatType), num)) { LocalizationService.HandleReply(ctx, "Invalid blood stat, use '.bl lst' to see valid options."); return; } bloodStatType = (BloodManager.BloodStats.BloodStatType)num; if (BloodManager.ChooseStat(platformId, currentBloodType, bloodStatType)) { Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"{bloodStatType} selected for {currentBloodType}!"); } } [Command("resetstats", "rst", ".bl rst", "Reset stats for current blood.", null, false)] public static void ResetBloodStats(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_01c7: 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_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LegacySystem) { LocalizationService.HandleReply(ctx, "Legacies are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; Blood blood = senderCharacterEntity.Read(); ulong platformId = ctx.Event.User.PlatformId; BloodType currentBloodType = BloodManager.GetCurrentBloodType(blood); if (currentBloodType.Equals(BloodType.GateBoss) || currentBloodType.Equals(BloodType.None) || currentBloodType.Equals(BloodType.VBlood)) { LocalizationService.HandleReply(ctx, $"No legacy available for {currentBloodType}."); } else if (!ConfigService.ResetLegacyItem.Equals(0)) { PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(ConfigService.ResetLegacyItem); int resetLegacyItemQuantity = ConfigService.ResetLegacyItemQuantity; Entity val2 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, ctx.User.LocalCharacter._Entity, ref val2, 0)) { ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val2, val) >= resetLegacyItemQuantity) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val2, val, resetLegacyItemQuantity)) { BloodManager.ResetStats(platformId, currentBloodType); Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"Your blood stats have been reset for {currentBloodType}!"); } return; } } LocalizationService.HandleReply(ctx, $"You do not have the required item to reset your blood stats ({val.GetLocalizedName()}x{resetLegacyItemQuantity})"); } else { BloodManager.ResetStats(platformId, currentBloodType); Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"Your blood stats have been reset for {currentBloodType}."); } } [Command("liststats", "lst", ".bl lst", "Lists blood stats available.", null, false)] public static void ListBloodStatsAvailable(ChatCommandContext ctx) { if (!ConfigService.LegacySystem) { LocalizationService.HandleReply(ctx, "Legacies are not enabled."); return; } List list = Enum.GetValues(typeof(BloodManager.BloodStats.BloodStatType)).Cast().Select((BloodManager.BloodStats.BloodStatType stat, int index) => $"{index + 1}| {stat}: {Misc.FormatPercentStatValue(BloodManager.BloodStats.BloodStatBaseCaps[stat])}") .ToList(); if (list.Count == 0) { LocalizationService.HandleReply(ctx, "No blood stats available at this time."); return; } foreach (IReadOnlyList item in list.Batch(4)) { string message = string.Join(", ", item); LocalizationService.HandleReply(ctx, message); } } [Command("set", null, ".bl set [Player] [Blood] [Level]", "Sets player blood legacy level.", null, true)] public static void SetBloodLegacyCommand(ChatCommandContext ctx, string name, string blood, int level) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LegacySystem) { LocalizationService.HandleReply(ctx, "Blood Legacies are not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } User user = playerInfo.User; if (level < 0 || level > ConfigService.MaxBloodLevel) { LocalizationService.HandleReply(ctx, $"Level must be between 0 and {ConfigService.MaxBloodLevel}."); return; } if (!Enum.TryParse(blood, ignoreCase: true, out var result)) { LocalizationService.HandleReply(ctx, "Invalid blood legacy."); return; } IBloodLegacy bloodHandler = BloodLegacyFactory.GetBloodHandler(result); if (bloodHandler == null) { LocalizationService.HandleReply(ctx, "Invalid blood legacy."); return; } ulong platformId = user.PlatformId; KeyValuePair xpData = new KeyValuePair(level, Progression.ConvertLevelToXp(level)); bloodHandler.SetLegacyData(platformId, xpData); Buffs.RefreshStats(playerInfo.CharEntity); LocalizationService.HandleReply(ctx, $"{bloodHandler.GetBloodType()} legacy set to [{level}] for {user.CharacterName}"); } [Command("list", "l", ".bl l", "Lists blood legacies available.", null, false)] public static void ListBloodTypesCommand(ChatCommandContext ctx) { if (!ConfigService.LegacySystem) { LocalizationService.HandleReply(ctx, "Blood Legacies are not enabled."); return; } List excludedBloodTypes = new List { BloodType.None, BloodType.VBlood, BloodType.GateBoss }; IEnumerable values = from BloodType b in Enum.GetValues(typeof(BloodType)) where !excludedBloodTypes.Contains(b) select b.ToString(); string text = string.Join(", ", values); LocalizationService.HandleReply(ctx, "Available Blood Legacies: " + text + ""); } } [CommandGroup("class", null)] internal static class ClassCommands { private static readonly bool _classes = ConfigService.ClassSystem; private static EntityManager EntityManager => Core.EntityManager; [Command("select", "s", ".class s [Class]", "Select class.", null, false)] public static void SelectClassCommand(ChatCommandContext ctx, string input) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) if (!_classes) { LocalizationService.HandleReply(ctx, "Classes are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; ClassManager.PlayerClass? playerClass = Classes.ParseClassFromInput(ctx, input); if (playerClass.HasValue) { ClassManager.PlayerClass value = playerClass.Value; if (!platformId.HasClass(out var playerClass2) || !playerClass2.HasValue) { Classes.UpdatePlayerClass(senderCharacterEntity, value, platformId); LocalizationService.HandleReply(ctx, "You've selected " + Classes.FormatClassName(value) + "!"); return; } LocalizationService.HandleReply(ctx, $"You've already selected {Classes.FormatClassName(playerClass2.Value)}, use '.class c [Class]' to change. ({VExtensions.GetLocalizedName(new PrefabGUID(ConfigService.ChangeClassItem))}x{ConfigService.ChangeClassQuantity})"); } else { LocalizationService.HandleReply(ctx, "Invalid class, use '.class l' to see options."); } } [Command("choosespell", "csp", ".class csp [#]", "Sets shift spell for class if prestige level is high enough.", null, false)] public static void ChooseClassSpell(ChatCommandContext ctx, int choice) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02d2: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0294: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) if (!_classes) { LocalizationService.HandleReply(ctx, "Classes are not enabled."); return; } if (!ConfigService.ShiftSlot) { LocalizationService.HandleReply(ctx, "Shift spells are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; Entity val = default(Entity); if (!InventoryUtilities.TryGetInventoryEntity(EntityManager, senderCharacterEntity, ref val, 0) || InventoryUtilities.IsInventoryFull(EntityManager, val)) { LocalizationService.HandleReply(ctx, "Can't change or activate class spells when inventory is full, need at least one space to safely handle jewels when switching."); return; } ulong platformId = ctx.Event.User.PlatformId; if (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "ShiftLock") && platformId.HasClass(out var playerClass) && playerClass.HasValue) { if (ConfigService.PrestigeSystem && platformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value)) { List list = Configuration.ParseIntegersFromString(Classes.ClassSpellsMap[playerClass.Value]); (int, int, int) spells2; if (list.Count == 0) { LocalizationService.HandleReply(ctx, "No spells for " + Classes.FormatClassName(playerClass.Value) + " configured!"); } else if (choice < 0 || choice > list.Count) { LocalizationService.HandleReply(ctx, "Invalid spell, use '.class lsp' to see options."); } else if (choice == 0) { (int, int, int) spells; if (ConfigService.DefaultClassSpell == 0) { LocalizationService.HandleReply(ctx, "No spell for class default configured!"); } else if (value < Configuration.ParseIntegersFromString(ConfigService.PrestigeLevelsToUnlockClassSpells)[choice]) { LocalizationService.HandleReply(ctx, "You don't have the required prestige level for that spell!"); } else if (platformId.TryGetPlayerSpells(out spells)) { PrefabGUID spellPrefabGUID = default(PrefabGUID); ((PrefabGUID)(ref spellPrefabGUID))..ctor(ConfigService.DefaultClassSpell); spells.Item3 = ConfigService.DefaultClassSpell; platformId.SetPlayerSpells(spells); Classes.UpdateShift(ctx, senderCharacterEntity, spellPrefabGUID); } } else if (value < Configuration.ParseIntegersFromString(ConfigService.PrestigeLevelsToUnlockClassSpells)[choice]) { LocalizationService.HandleReply(ctx, "You don't have the required prestige level for that spell!"); } else if (platformId.TryGetPlayerSpells(out spells2)) { spells2.Item3 = list[choice - 1]; platformId.SetPlayerSpells(spells2); Classes.UpdateShift(ctx, ctx.Event.SenderCharacterEntity, new PrefabGUID(spells2.Item3)); } return; } List list2 = Configuration.ParseIntegersFromString(Classes.ClassSpellsMap[playerClass.Value]); (int, int, int) spells3; (int, int, int) spells4; if (list2.Count == 0) { LocalizationService.HandleReply(ctx, "No spells for " + Classes.FormatClassName(playerClass.Value) + " configured!"); } else if (choice < 0 || choice > list2.Count) { LocalizationService.HandleReply(ctx, "Invalid spell, use '.class lsp' to see options."); } else if (choice == 0 && platformId.TryGetPlayerSpells(out spells3)) { if (ConfigService.DefaultClassSpell == 0) { LocalizationService.HandleReply(ctx, "No spell for class default configured!"); return; } PrefabGUID spellPrefabGUID2 = default(PrefabGUID); ((PrefabGUID)(ref spellPrefabGUID2))..ctor(ConfigService.DefaultClassSpell); spells3.Item3 = ConfigService.DefaultClassSpell; platformId.SetPlayerSpells(spells3); Classes.UpdateShift(ctx, ctx.Event.SenderCharacterEntity, spellPrefabGUID2); } else if (platformId.TryGetPlayerSpells(out spells4)) { spells4.Item3 = list2[choice - 1]; platformId.SetPlayerSpells(spells4); Classes.UpdateShift(ctx, ctx.Event.SenderCharacterEntity, new PrefabGUID(spells4.Item3)); } } else { LocalizationService.HandleReply(ctx, "You haven't selected a class or you haven't activated shift spells! ('.class s [Class]' | '.class shift')"); } } [Command("change", "c", ".class c [Class]", "Change classes.", null, false)] public static void ChangeClassCommand(ChatCommandContext ctx, string input) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) if (!_classes) { LocalizationService.HandleReply(ctx, "Classes are not enabled."); return; } Entity senderUserEntity = ctx.Event.SenderUserEntity; ulong platformId = ctx.Event.User.PlatformId; ClassManager.PlayerClass? playerClass = Classes.ParseClassFromInput(ctx, input); if (playerClass.HasValue) { ClassManager.PlayerClass value = playerClass.Value; if (!platformId.HasClass(out var playerClass2) || !playerClass2.HasValue) { LocalizationService.HandleReply(ctx, "You haven't selected a class yet, use '.class s [Class]' instead."); } else if (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "Passives")) { LocalizationService.HandleReply(ctx, "You have class buffs enabled, use '.class passives' to disable them before changing classes!"); } else if (ConfigService.ChangeClassItem == 0 || Classes.HandleClassChangeItem(ctx)) { Classes.UpdatePlayerClass(senderUserEntity, value, platformId); LocalizationService.HandleReply(ctx, "Class changed to " + Classes.FormatClassName(value) + "!"); } } else { LocalizationService.HandleReply(ctx, "Invalid class, use '.class l' to see options."); } } [Command("list", "l", ".class l", "List available classes.", null, false)] public static void ListClasses(ChatCommandContext ctx) { if (!_classes) { LocalizationService.HandleReply(ctx, "Classes are not enabled."); return; } List values = Enum.GetValues(typeof(ClassManager.PlayerClass)).Cast().Select((ClassManager.PlayerClass playerClass, int index) => $"{index + 1}| {Classes.FormatClassName(playerClass, withSpaces: false)}") .ToList(); string text = string.Join(", ", values); LocalizationService.HandleReply(ctx, "Classes: " + text); } [Command("listspells", "lsp", ".class lsp [Class]", "Shows spells that can be gained from class.", null, false)] public static void ListClassSpellsCommand(ChatCommandContext ctx, string classType = "") { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!_classes) { LocalizationService.HandleReply(ctx, "Classes are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; ClassManager.PlayerClass? playerClass = Classes.ParseClassFromInput(ctx, classType); ClassManager.PlayerClass? playerClass2; if (playerClass.HasValue) { Classes.ReplyClassSpells(ctx, playerClass.Value); } else if (string.IsNullOrEmpty(classType) && platformId.HasClass(out playerClass2) && playerClass2.HasValue) { Classes.ReplyClassSpells(ctx, playerClass2.Value); } } [Command("liststats", "lst", ".class lst [Class]", "List weapon and blood stat synergies for a class.", null, false)] public static void ListClassStatsCommand(ChatCommandContext ctx, string classType = "") { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!_classes) { LocalizationService.HandleReply(ctx, "Classes are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; ClassManager.PlayerClass? playerClass = Classes.ParseClassFromInput(ctx, classType); ClassManager.PlayerClass? playerClass2; if (playerClass.HasValue) { Classes.ReplyClassSynergies(ctx, playerClass.Value); } else if (string.IsNullOrEmpty(classType) && platformId.HasClass(out playerClass2) && playerClass2.HasValue) { Classes.ReplyClassSynergies(ctx, playerClass2.Value); } else { LocalizationService.HandleReply(ctx, "Invalid class, use '.class l' to see options."); } } [Command("lockshift", "shift", ".class shift", "Toggle shift spell.", null, false)] public static void ShiftSlotToggleCommand(ChatCommandContext ctx) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) if (!_classes) { LocalizationService.HandleReply(ctx, "Classes are not enabled and spells can't be set to shift."); return; } if (!ConfigService.ShiftSlot) { LocalizationService.HandleReply(ctx, "Shift slots are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; Entity val = default(Entity); if (!InventoryUtilities.TryGetInventoryEntity(EntityManager, senderCharacterEntity, ref val, 0) || InventoryUtilities.IsInventoryFull(EntityManager, val)) { LocalizationService.HandleReply(ctx, "Can't change or active class spells when inventory is full, need at least one space to safely handle jewels when switching."); return; } Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "ShiftLock"); if (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "ShiftLock")) { if (platformId.TryGetPlayerSpells(out (int, int, int) spells)) { PrefabGUID spellPrefabGUID = default(PrefabGUID); ((PrefabGUID)(ref spellPrefabGUID))..ctor(spells.Item3); if (((PrefabGUID)(ref spellPrefabGUID)).HasValue()) { Classes.UpdateShift(ctx, ctx.Event.SenderCharacterEntity, spellPrefabGUID); } } LocalizationService.HandleReply(ctx, "Shift spell enabled!"); } else { Classes.RemoveShift(ctx.Event.SenderCharacterEntity); LocalizationService.HandleReply(ctx, "Shift spell disabled!"); } } } [CommandGroup("familiar", "fam")] internal static class FamiliarCommands { private const int BOX_SIZE = 10; private const int BOX_CAP = 50; private const int BOX_BATCH = 6; private const int STAT_BATCH = 4; private const int GROUP_BATCH = 5; private const float SHINY_CHANGE_COST = 0.25f; private const int SCHEMATICS_MIN = 500; private const int SCHEMATICS_MAX = 2000; private const int VAMPIRIC_DUST_MIN = 50; private const int VAMPIRIC_DUST_MAX = 200; private const int ECHOES_MIN = 1; private const int ECHOES_MAX = 4; private static readonly int _minLevel = PrefabCollectionSystem._PrefabGuidToEntityMap[PrefabGUIDs.CHAR_Forest_Wolf_VBlood].GetUnitLevel(); private static readonly int _maxLevel = PrefabCollectionSystem._PrefabGuidToEntityMap[PrefabGUIDs.CHAR_Vampire_Dracula_VBlood].GetUnitLevel(); private static readonly PrefabGUID _dominateBuff = new PrefabGUID(-1447419822); private static readonly PrefabGUID _takeFlightBuff = new PrefabGUID(1205505492); private static readonly PrefabGUID _tauntEmote = new PrefabGUID(-158502505); private static readonly PrefabGUID _pvpCombatBuff = new PrefabGUID(697095869); private static readonly PrefabGUID _pveCombatBuff = new PrefabGUID(581443919); private static readonly PrefabGUID _itemSchematic = new PrefabGUID(2085163661); private static readonly PrefabGUID _vampiricDust = new PrefabGUID(805157024); private static readonly Dictionary> _familiarSettings = new Dictionary> { { "VBloodEmotes", Familiars.ToggleVBloodEmotes }, { "Shiny", Familiars.ToggleShinies } }; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; [Command("bind", "b", ".fam b [#]", "Activates specified familiar from current list.", null, false)] public static void BindFamiliar(ChatCommandContext ctx, int boxIndex) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; Familiars.BindFamiliar(ctx.Event.User, senderCharacterEntity, boxIndex); } [Command("unbind", "ub", ".fam ub", "Destroys active familiar.", null, false)] public static void UnbindFamiliar(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; Familiars.UnbindFamiliar(ctx.Event.User, senderCharacterEntity); } [Command("list", "l", ".fam l", "Lists unlocked familiars from current box.", null, false)] public static void ListFamiliars(ChatCommandContext ctx) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData familiarBuffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(platformId); DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(platformId); DataService.FamiliarPersistence.FamiliarPrestigeManager.FamiliarPrestigeData familiarPrestigeData = DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(platformId); string familiarSet = (platformId.TryGetFamiliarBox(out familiarSet) ? familiarSet : string.Empty); if (!string.IsNullOrEmpty(familiarSet) && familiarUnlocksData.FamiliarUnlocks.TryGetValue(familiarSet, out var value)) { int num = 1; LocalizationService.HandleReply(ctx, "" + familiarSet + ":"); { foreach (int item in value) { string localizedName = VExtensions.GetLocalizedName(new PrefabGUID(item)); string text = ""; if (familiarBuffsData.FamiliarBuffs.ContainsKey(item) && FamiliarUnlockSystem.ShinyBuffColorHexes.TryGetValue(new PrefabGUID(familiarBuffsData.FamiliarBuffs[item][0]), out var value2)) { text = ""; } KeyValuePair value3; int value4 = ((!familiarExperienceData.FamiliarExperience.TryGetValue(item, out value3)) ? 1 : value3.Key); int value5; int num2 = (familiarPrestigeData.FamiliarPrestige.TryGetValue(item, out value5) ? value5 : 0); string text2 = ((num2 > 0) ? $"[{value4}][{num2}]" : $"[{value4}]"); LocalizationService.HandleReply(ctx, $"{num}| {localizedName}{(familiarBuffsData.FamiliarBuffs.ContainsKey(item) ? (text + "* " + text2) : (" " + text2))}"); num++; } return; } } if (string.IsNullOrEmpty(familiarSet)) { LocalizationService.HandleReply(ctx, "Couldn't find active box!"); } } [Command("listboxes", "boxes", ".fam boxes", "Shows the available familiar boxes.", null, false)] public static void ListFamiliarSets(ChatCommandContext ctx) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(ctx.User.PlatformId); if (familiarUnlocksData.FamiliarUnlocks.Keys.Count > 0) { Dictionary>.KeyCollection keys = familiarUnlocksData.FamiliarUnlocks.Keys; List list = new List(keys.Count); list.AddRange(keys); List source = list; LocalizationService.HandleReply(ctx, "Familiar Boxes:"); List list2 = new List(); list2.AddRange(source.Select((string set) => "" + set + "")); { foreach (IReadOnlyList item in list2.Batch(6)) { string message = string.Join(", ", item); LocalizationService.HandleReply(ctx, message); } return; } } LocalizationService.HandleReply(ctx, "You don't have any unlocks yet!"); } [Command("choosebox", "cb", ".fam cb [Name]", "Choose active box of familiars.", null, false)] public static void SelectBoxCommand(ChatCommandContext ctx, string name) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; if (DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId).FamiliarUnlocks.TryGetValue(name, out var _)) { platformId.SetFamiliarBox(name); LocalizationService.HandleReply(ctx, "Box Selected - " + name + ""); } else { LocalizationService.HandleReply(ctx, "Couldn't find box!"); } } [Command("renamebox", "rb", ".fam rb [CurrentName] [NewName]", "Renames a box.", null, false)] public static void RenameBoxCommand(ChatCommandContext ctx, string current, string name) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); if (!familiarUnlocksData.FamiliarUnlocks.ContainsKey(name) && familiarUnlocksData.FamiliarUnlocks.TryGetValue(current, out var value)) { familiarUnlocksData.FamiliarUnlocks.Remove(current); familiarUnlocksData.FamiliarUnlocks[name] = value; if (platformId.TryGetFamiliarBox(out var familiarSet) && familiarSet.Equals(current)) { platformId.SetFamiliarBox(name); } DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); LocalizationService.HandleReply(ctx, $"Box {current} renamed - {name}"); } else { LocalizationService.HandleReply(ctx, "Couldn't find box to rename or there's already a box with that name!"); } } [Command("movebox", "mb", ".fam mb [BoxName]", "Moves active familiar to specified box.", null, false)] public static void MoveFamiliar(ChatCommandContext ctx, string name) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); if (familiarUnlocksData.FamiliarUnlocks.TryGetValue(name, out var value) && value.Count < 10) { if (!platformId.HasActiveFamiliar()) { return; } int familiarId = Familiars.ActiveFamiliarManager.GetActiveFamiliarData(platformId).FamiliarId; foreach (string key in familiarUnlocksData.FamiliarUnlocks.Keys) { if (familiarUnlocksData.FamiliarUnlocks[key].Contains(familiarId)) { familiarUnlocksData.FamiliarUnlocks[key].Remove(familiarId); value.Add(familiarId); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); } } PrefabGUID prefabGuid = default(PrefabGUID); ((PrefabGUID)(ref prefabGuid))..ctor(familiarId); LocalizationService.HandleReply(ctx, $"{prefabGuid.GetLocalizedName()} moved - {name}"); } else if (familiarUnlocksData.FamiliarUnlocks.ContainsKey(name)) { LocalizationService.HandleReply(ctx, "Box is full!"); } else { LocalizationService.HandleReply(ctx, "Couldn't find box!"); } } [Command("deletebox", "db", ".fam db [BoxName]", "Deletes specified box if empty.", null, false)] public static void DeleteBoxCommand(ChatCommandContext ctx, string name) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); if (familiarUnlocksData.FamiliarUnlocks.TryGetValue(name, out var value) && value.Count == 0) { familiarUnlocksData.FamiliarUnlocks.Remove(name); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); LocalizationService.HandleReply(ctx, "Deleted box - " + name + ""); } else if (familiarUnlocksData.FamiliarUnlocks.ContainsKey(name)) { LocalizationService.HandleReply(ctx, "Box is not empty!"); } else { LocalizationService.HandleReply(ctx, "Couldn't find box!"); } } [Command("addbox", "ab", ".fam ab [BoxName]", "Adds empty box with name.", null, false)] public static void AddBoxCommand(ChatCommandContext ctx, string name) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); if (familiarUnlocksData.FamiliarUnlocks.Count > 0 && familiarUnlocksData.FamiliarUnlocks.Count < 50) { familiarUnlocksData.FamiliarUnlocks.Add(name, new List()); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); LocalizationService.HandleReply(ctx, "Added box - " + name + ""); } else { LocalizationService.HandleReply(ctx, $"Must have at least one unit unlocked to start adding boxes. Additionally, the total number of boxes cannot exceed {50}."); } } [Command("add", "a", ".fam a [PlayerName] [PrefabGuid/CHAR_Unit_Name]", "Unit testing.", null, true)] public static void AddFamiliar(ChatCommandContext ctx, string name, string unit) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } ulong platformId = playerInfo.User.PlatformId; if (platformId.TryGetFamiliarBox(out var familiarSet) && !string.IsNullOrEmpty(familiarSet)) { Familiars.ParseAddedFamiliar(ctx, platformId, unit, familiarSet); return; } DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); string text = familiarUnlocksData.FamiliarUnlocks.Keys.LastOrDefault(); if (string.IsNullOrEmpty(text)) { text = $"box{familiarUnlocksData.FamiliarUnlocks.Count + 1}"; familiarUnlocksData.FamiliarUnlocks[text] = new List(); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); Familiars.ParseAddedFamiliar(ctx, platformId, unit, text); } else { Familiars.ParseAddedFamiliar(ctx, platformId, unit, text); } } [Command("echoes", null, ".fam echoes [VBloodName]", "VBlood purchasing for exo reward with quantity scaling to unit tier.", null, false)] public static void PurchaseVBloodCommand(ChatCommandContext ctx, string vBlood) { //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: 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_0445: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_020f: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_0255: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_0272: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_0294: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.AllowVBloods) { LocalizationService.HandleReply(ctx, "VBlood familiars are not enabled."); return; } if (!ConfigService.PrimalEchoes) { LocalizationService.HandleReply(ctx, "VBlood purchasing is not enabled."); return; } List list2 = new List(); list2.AddRange(from kvp in Familiars.VBloodNamePrefabGuidMap where kvp.Key.Contains(vBlood, StringComparison.CurrentCultureIgnoreCase) select kvp.Value); List list3 = list2; if (!list3.Any()) { LocalizationService.HandleReply(ctx, "Couldn't find matching vBlood!"); return; } if (list3.Count > 1) { LocalizationService.HandleReply(ctx, "Multiple matches, please be more specific!"); return; } PrefabGUID vBloodPrefabGuid = list3.First(); Entity entity = default(Entity); DynamicBuffer dynamicBuffer; if (FamiliarUnlockSystem.IsBannedPrefabGuid(vBloodPrefabGuid)) { LocalizationService.HandleReply(ctx, "" + vBloodPrefabGuid.GetLocalizedName() + " is not available per configured familiar bans!"); } else if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(vBloodPrefabGuid, ref entity) && entity.TryGetBuffer(out dynamicBuffer) && !dynamicBuffer.IsEmpty) { ulong platformId = ctx.Event.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); if (familiarUnlocksData.FamiliarUnlocks.Values.Any((List list) => list.Contains(((PrefabGUID)(ref vBloodPrefabGuid)).GuidHash))) { LocalizationService.HandleReply(ctx, "" + vBloodPrefabGuid.GetLocalizedName() + " is already unlocked!"); return; } int unitLevel = entity.GetUnitLevel(); int num = Mathf.RoundToInt(Mathf.Lerp(1f, 25f, (float)(unitLevel - _minLevel) / (float)(_maxLevel - _minLevel))); PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(ConfigService.ExoPrestigeReward); int num2 = ConfigService.ExoPrestigeRewardQuantity * num; int num3 = Mathf.Clamp(ConfigService.EchoesFactor, 1, 4) * num2; if (num3 <= 0) { LocalizationService.HandleReply(ctx, "Unable to verify cost for " + vBloodPrefabGuid.GetPrefabName() + "!"); return; } if (!PrefabCollectionSystem._PrefabGuidToEntityMap.ContainsKey(val)) { LocalizationService.HandleReply(ctx, $"Unable to verify exo prestige reward item! ({val})"); return; } Entity val2 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, ctx.Event.SenderCharacterEntity, ref val2, 0)) { ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val2, val) >= num3) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val2, val, num3)) { string text = familiarUnlocksData.FamiliarUnlocks.Keys.LastOrDefault(); if (string.IsNullOrEmpty(text) || (familiarUnlocksData.FamiliarUnlocks.TryGetValue(text, out var value) && value.Count >= 10)) { text = $"box{familiarUnlocksData.FamiliarUnlocks.Count + 1}"; familiarUnlocksData.FamiliarUnlocks[text] = new List(); familiarUnlocksData.FamiliarUnlocks[text].Add(((PrefabGUID)(ref vBloodPrefabGuid)).GuidHash); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); LocalizationService.HandleReply(ctx, "New unit unlocked: " + vBloodPrefabGuid.GetLocalizedName() + ""); } else if (familiarUnlocksData.FamiliarUnlocks.ContainsKey(text)) { familiarUnlocksData.FamiliarUnlocks[text].Add(((PrefabGUID)(ref vBloodPrefabGuid)).GuidHash); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); LocalizationService.HandleReply(ctx, "New unit unlocked: " + vBloodPrefabGuid.GetLocalizedName() + ""); } } return; } } LocalizationService.HandleReply(ctx, $"Not enough {val.GetLocalizedName()}x{num3} for {vBloodPrefabGuid.GetPrefabName()}!"); } else { LocalizationService.HandleReply(ctx, "Unable to verify tier for " + vBloodPrefabGuid.GetPrefabName() + "! Shouldn't really happen at this point and may want to inform the developer."); } } [Command("remove", "r", ".fam r [#]", "Removes familiar from current set permanently.", null, false)] public static void DeleteFamiliarCommand(ChatCommandContext ctx, int choice) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); if (platformId.TryGetFamiliarBox(out var familiarSet) && familiarUnlocksData.FamiliarUnlocks.TryGetValue(familiarSet, out var value)) { if (choice < 1 || choice > value.Count) { LocalizationService.HandleReply(ctx, $"Invalid choice, please use 1 to {value.Count} (Current List:{familiarSet})"); } else { PrefabGUID prefabGuid = default(PrefabGUID); ((PrefabGUID)(ref prefabGuid))..ctor(value[choice - 1]); value.RemoveAt(choice - 1); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); LocalizationService.HandleReply(ctx, $"{prefabGuid.GetLocalizedName()} removed from {familiarSet}."); } } else { LocalizationService.HandleReply(ctx, "Couldn't find active familiar box to remove from..."); } } [Command("toggle", "t", ".fam t", "Calls or dismisses familar.", null, false)] public static void ToggleFamiliarCommand(ChatCommandContext ctx) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ServerGameManager serverGameManager = ServerGameManager; PrefabGUID val = _dominateBuff; if (((ServerGameManager)(ref serverGameManager)).HasBuff(senderCharacterEntity, ((PrefabGUID)(ref val)).ToIdentifier())) { LocalizationService.HandleReply(ctx, "You can't call a familiar when using dominating presence!"); return; } serverGameManager = ServerGameManager; val = _takeFlightBuff; if (((ServerGameManager)(ref serverGameManager)).HasBuff(senderCharacterEntity, ((PrefabGUID)(ref val)).ToIdentifier())) { LocalizationService.HandleReply(ctx, "You can't call a familiar when using batform!"); } else { EmoteSystemPatch.CallDismiss(ctx.Event.User, senderCharacterEntity, platformId); } } [Command("togglecombat", "c", ".fam c", "Enables or disables combat for familiar.", null, false)] public static void ToggleCombatCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0028: 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_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ServerGameManager serverGameManager = ServerGameManager; PrefabGUID val = _dominateBuff; if (((ServerGameManager)(ref serverGameManager)).HasBuff(senderCharacterEntity, ((PrefabGUID)(ref val)).ToIdentifier())) { LocalizationService.HandleReply(ctx, "You can't toggle combat for a familiar when using dominating presence!"); return; } serverGameManager = ServerGameManager; val = _takeFlightBuff; if (((ServerGameManager)(ref serverGameManager)).HasBuff(senderCharacterEntity, ((PrefabGUID)(ref val)).ToIdentifier())) { LocalizationService.HandleReply(ctx, "You can't toggle combat for a familiar when using batform!"); return; } if (senderCharacterEntity.HasBuff(_pveCombatBuff) || senderCharacterEntity.HasBuff(_pvpCombatBuff)) { LocalizationService.HandleReply(ctx, "You can't toggle combat for a familiar in PvP/PvE combat!"); return; } ulong platformId = ctx.User.PlatformId; EmoteSystemPatch.CombatMode(ctx.Event.User, senderCharacterEntity, platformId); } [Command("emotes", "e", ".fam e", "Toggle emote actions.", null, false)] public static void ToggleEmoteActionsCommand(ChatCommandContext ctx) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "EmoteActions"); LocalizationService.HandleReply(ctx, "Emote actions " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "EmoteActions") ? "enabled" : "disabled") + "!"); } [Command("emoteactions", "actions", ".fam actions", "Shows available emote actions.", null, false)] public static void ListEmoteActionsCommand(ChatCommandContext ctx) { //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } List list = new List(); foreach (KeyValuePair> emoteAction in EmoteSystemPatch.EmoteActions) { PrefabGUID key = emoteAction.Key; if (!((PrefabGUID)(ref key)).Equals(_tauntEmote)) { string localizedName = emoteAction.Key.GetLocalizedName(); string name = emoteAction.Value.Method.Name; list.Add($"{localizedName}: {name}"); } } string message = string.Join(", ", list); LocalizationService.HandleReply(ctx, message); } [Command("getlevel", "gl", ".fam gl", "Display current familiar leveling progress.", null, false)] public static void GetFamiliarLevelCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0255: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (platformId.HasActiveFamiliar()) { int familiarId = Familiars.ActiveFamiliarManager.GetActiveFamiliarData(platformId).FamiliarId; KeyValuePair familiarExperience = FamiliarLevelingSystem.GetFamiliarExperience(platformId, familiarId); int value = (int)(familiarExperience.Value - (float)Progression.ConvertLevelToXp(familiarExperience.Key)); int levelProgress = FamiliarLevelingSystem.GetLevelProgress(platformId, familiarId); Entity activeFamiliar = Familiars.GetActiveFamiliar(ctx.Event.SenderCharacterEntity); int value2 = 0; DataService.FamiliarPersistence.FamiliarPrestigeManager.FamiliarPrestigeData familiarPrestigeData = DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(platformId); DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData buffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(platformId); if (!familiarPrestigeData.FamiliarPrestige.ContainsKey(familiarId)) { familiarPrestigeData.FamiliarPrestige[familiarId] = 0; DataService.FamiliarPersistence.FamiliarPrestigeManager.SaveFamiliarPrestigeData(platformId, familiarPrestigeData); } else { value2 = familiarPrestigeData.FamiliarPrestige[familiarId]; } LocalizationService.HandleReply(ctx, $"Your familiar is level [{familiarExperience.Key}][{value2}] and has {value} experience ({levelProgress}%)!"); if (!activeFamiliar.Exists()) { return; } Health val = activeFamiliar.Read(); UnitStats val2 = activeFamiliar.Read(); activeFamiliar.Read(); activeFamiliar.GetPrefabEntity().Read(); activeFamiliar.Read(); List> list = new List>(); foreach (FamiliarBindingSystem.FamiliarStatType value4 in Enum.GetValues(typeof(FamiliarBindingSystem.FamiliarStatType))) { string key = value4.ToString(); string value3; switch (value4) { case FamiliarBindingSystem.FamiliarStatType.MaxHealth: value3 = ((int)val.MaxHealth._Value).ToString(); break; case FamiliarBindingSystem.FamiliarStatType.PhysicalPower: value3 = ((int)val2.PhysicalPower._Value).ToString(); break; case FamiliarBindingSystem.FamiliarStatType.SpellPower: value3 = ((int)val2.SpellPower._Value).ToString(); break; default: continue; } if (!string.IsNullOrEmpty(value3)) { list.Add(new KeyValuePair(key, value3)); } } string shinyInfo = Familiars.GetShinyInfo(buffsData, activeFamiliar, familiarId); string familiarName = Familiars.GetFamiliarName(familiarId, buffsData); string message = (string.IsNullOrEmpty(shinyInfo) ? (familiarName + ":") : (familiarName + " - " + shinyInfo)); LocalizationService.HandleReply(ctx, message); { foreach (IReadOnlyList> item in list.Batch(4)) { string message2 = string.Join(", ", item.Select((KeyValuePair stat) => $"{stat.Key}: {stat.Value}")); LocalizationService.HandleReply(ctx, message2); } return; } } LocalizationService.HandleReply(ctx, "Couldn't find active familiar!"); } [Command("setlevel", "sl", ".fam sl [Player] [Level]", "Set current familiar level.", null, true)] public static void SetFamiliarLevelCommand(ChatCommandContext ctx, string name, int level) { //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (level < 1 || level > ConfigService.MaxFamiliarLevel) { LocalizationService.HandleReply(ctx, $"Level must be between 1 and {ConfigService.MaxFamiliarLevel}"); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } User user = playerInfo.User; ulong platformId = user.PlatformId; if (platformId.HasActiveFamiliar()) { Entity charEntity = playerInfo.CharEntity; Entity activeFamiliar = Familiars.GetActiveFamiliar(charEntity); int familiarId = Familiars.ActiveFamiliarManager.GetActiveFamiliarData(platformId).FamiliarId; KeyValuePair value = new KeyValuePair(level, Progression.ConvertLevelToXp(level)); DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(platformId); familiarExperienceData.FamiliarExperience[familiarId] = value; DataService.FamiliarPersistence.FamiliarExperienceManager.SaveFamiliarExperienceData(platformId, familiarExperienceData); if (FamiliarBindingSystem.ModifyFamiliar(user, platformId, familiarId, charEntity, activeFamiliar, level)) { LocalizationService.HandleReply(ctx, $"Active familiar for {((FixedString64Bytes)(ref user.CharacterName)).Value} has been set to level {level}."); } } else { LocalizationService.HandleReply(ctx, "Couldn't find active familiar...."); } } [Command("prestige", "pr", ".fam pr", "Prestiges familiar if conditions are met, raising base stats by configured multiplier.", null, false)] public static void PrestigeFamiliarCommand(ChatCommandContext ctx) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarPrestige) { LocalizationService.HandleReply(ctx, "Familiar prestige is not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; if (platformId.HasActiveFamiliar()) { int familiarId = Familiars.ActiveFamiliarManager.GetActiveFamiliarData(platformId).FamiliarId; DataService.FamiliarPersistence.FamiliarExperienceManager.FamiliarExperienceData familiarExperienceData = DataService.FamiliarPersistence.FamiliarExperienceManager.LoadFamiliarExperienceData(ctx.Event.User.PlatformId); int num = Mathf.Clamp(ConfigService.PrestigeCostItemQuantity, 500, 2000); Entity val = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, senderCharacterEntity, ref val, 0)) { ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val, _itemSchematic) >= num) { Familiars.HandleFamiliarPrestige(ctx, num); return; } } if (familiarExperienceData.FamiliarExperience[familiarId].Key >= ConfigService.MaxFamiliarLevel) { DataService.FamiliarPersistence.FamiliarPrestigeManager.FamiliarPrestigeData familiarPrestigeData = DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(platformId); if (!familiarPrestigeData.FamiliarPrestige.ContainsKey(familiarId)) { familiarPrestigeData.FamiliarPrestige[familiarId] = 0; DataService.FamiliarPersistence.FamiliarPrestigeManager.SaveFamiliarPrestigeData(platformId, familiarPrestigeData); } familiarPrestigeData = DataService.FamiliarPersistence.FamiliarPrestigeManager.LoadFamiliarPrestigeData(platformId); if (familiarPrestigeData.FamiliarPrestige[familiarId] >= ConfigService.MaxFamiliarPrestiges) { LocalizationService.HandleReply(ctx, "Familiar is already at maximum number of prestiges!"); return; } KeyValuePair value = new KeyValuePair(1, Progression.ConvertLevelToXp(1)); familiarExperienceData.FamiliarExperience[familiarId] = value; DataService.FamiliarPersistence.FamiliarExperienceManager.SaveFamiliarExperienceData(platformId, familiarExperienceData); int value2 = familiarPrestigeData.FamiliarPrestige[familiarId] + 1; familiarPrestigeData.FamiliarPrestige[familiarId] = value2; DataService.FamiliarPersistence.FamiliarPrestigeManager.SaveFamiliarPrestigeData(platformId, familiarPrestigeData); FamiliarBindingSystem.ModifyUnitStats(Familiars.GetActiveFamiliar(senderCharacterEntity), value.Key, platformId, familiarId); LocalizationService.HandleReply(ctx, $"Your familiar has prestiged [{value2}]!"); } else { LocalizationService.HandleReply(ctx, $"Familiar attempting to prestige must be at max level ({ConfigService.MaxFamiliarLevel}) or requires {_itemSchematic.GetLocalizedName()}x{num}."); } } else { LocalizationService.HandleReply(ctx, "Couldn't find active familiar for prestiging!"); } } [Command("reset", null, ".fam reset", "Resets (destroys) entities found in followerbuffer and clears familiar actives data.", null, false)] public static void ResetFamiliarsCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: 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_003e: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; if (Familiars.GetActiveFamiliar(senderCharacterEntity).Exists()) { ctx.Reply("Looks like your familiar is still able to be found; unbind it normally after calling if it's dismissed instead."); return; } ulong platformId = ctx.Event.User.PlatformId; DynamicBuffer val = ctx.Event.SenderCharacterEntity.ReadBuffer(); for (int i = 0; i < val.Length; i++) { FollowerBuffer val2 = val[i]; Entity entityOnServer = ((NetworkedEntity)(ref val2.Entity)).GetEntityOnServer(); if (entityOnServer.Exists()) { entityOnServer.Remove(); entityOnServer.Destroy(); } } Familiars.ActiveFamiliarManager.ResetActiveFamiliarData(platformId); Familiars.AutoCallMap.TryRemove(senderCharacterEntity, out var _); LocalizationService.HandleReply(ctx, "Familiar actives and followers cleared."); } [Command("search", "s", ".fam s [Name]", "Searches boxes for familiar(s) with matching name.", null, false)] public static void FindFamiliarCommand(ChatCommandContext ctx, string name) { //IL_0021: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData buffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(platformId); if (familiarUnlocksData.FamiliarUnlocks.Keys.Count > 0) { List list = new List(); if (name.Equals("vblood", StringComparison.CurrentCultureIgnoreCase)) { foreach (KeyValuePair> familiarUnlock in familiarUnlocksData.FamiliarUnlocks) { List list2 = familiarUnlock.Value.Where(delegate(int famKey) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: 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_0023: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0025: 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) Entity val = (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(new PrefabGUID(famKey), ref val) ? val : Entity.Null); return val.Has() || val.Has(); }).ToList(); if (list2.Count > 0) { if (list2.Any((int familiar) => buffsData.FamiliarBuffs.ContainsKey(familiar))) { list.Add("" + familiarUnlock.Key + "*"); } else { list.Add("" + familiarUnlock.Key + ""); } } } if (list.Count > 0) { string text = string.Join(", ", list); string message = "VBlood familiar(s) found in: " + text; LocalizationService.HandleReply(ctx, message); } else { LocalizationService.HandleReply(ctx, "Couldn't find matching familiar in boxes."); } } else { if (Utility.IsNullOrWhiteSpace(name)) { return; } foreach (KeyValuePair> familiarUnlock2 in familiarUnlocksData.FamiliarUnlocks) { List list3 = familiarUnlock2.Value.Where((int famKey) => VExtensions.GetLocalizedName(new PrefabGUID(famKey)).Contains(name, StringComparison.CurrentCultureIgnoreCase)).ToList(); if (list3.Count > 0) { if (list3.Any((int familiar) => buffsData.FamiliarBuffs.ContainsKey(familiar))) { list.Add("" + familiarUnlock2.Key + "*"); } else { list.Add("" + familiarUnlock2.Key + ""); } } } if (list.Count > 0) { string text2 = string.Join(", ", list); string message2 = "Matching familiar(s) found in: " + text2; LocalizationService.HandleReply(ctx, message2); } else { LocalizationService.HandleReply(ctx, "Couldn't find any matches..."); } } } else { LocalizationService.HandleReply(ctx, "You don't have any unlocked familiars yet."); } } [Command("smartbind", "sb", ".fam sb [Name]", "Searches and binds a familiar. If multiple matches are found, returns a list for clarification.", null, false)] public static void SmartBindFamiliarCommand(ChatCommandContext ctx, string name) { //IL_0026: 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_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0282: Unknown result type (might be due to invalid IL or missing references) //IL_0241: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; User user = ctx.Event.User; ulong platformId = user.PlatformId; DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData familiarBuffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(platformId); _ = familiarBuffsData.FamiliarBuffs; Dictionary> dictionary = new Dictionary>(); if (familiarUnlocksData.FamiliarUnlocks.Count == 0) { LocalizationService.HandleReply(ctx, "You haven't unlocked any familiars yet!"); return; } foreach (KeyValuePair> familiarUnlock in familiarUnlocksData.FamiliarUnlocks) { Dictionary dictionary2 = (from item in familiarUnlock.Value.Select((int famKey, int index) => new { FamKey = famKey, Index = index }) where VExtensions.GetLocalizedName(new PrefabGUID(item.FamKey)).Contains(name, StringComparison.CurrentCultureIgnoreCase) select item).ToDictionary(item => item.FamKey, item => item.Index + 1); if (!dictionary2.Any()) { continue; } foreach (KeyValuePair item in dictionary2) { if (!dictionary.ContainsKey(familiarUnlock.Key)) { dictionary[familiarUnlock.Key] = new Dictionary(); } string familiarName = Familiars.GetFamiliarName(item.Key, familiarBuffsData); dictionary[familiarUnlock.Key][familiarName] = item.Value; } } if (!dictionary.Any()) { LocalizationService.HandleReply(ctx, "Couldn't find any matches..."); } else if (dictionary.Count == 1) { Entity activeFamiliar = Familiars.GetActiveFamiliar(senderCharacterEntity); platformId.SetFamiliarBox(dictionary.Keys.First()); if (activeFamiliar.Exists() && platformId.TryGetFamiliarBox(out var familiarSet) && dictionary.TryGetValue(familiarSet, out var value)) { int index2 = (value.Any() ? value.First().Value : (-1)); Familiars.UnbindFamiliar(user, senderCharacterEntity, smartBind: true, index2); } else if (platformId.TryGetFamiliarBox(out familiarSet) && dictionary.TryGetValue(familiarSet, out value)) { int boxIndex = (value.Any() ? value.First().Value : (-1)); Familiars.BindFamiliar(user, senderCharacterEntity, boxIndex); } } else { LocalizationService.HandleReply(ctx, "Multiple matches found! SmartBind doesn't support this yet... (WIP)"); } } [Command("shinybuff", "shiny", ".fam shiny [SpellSchool]", "Spend vampiric dust to make your familiar shiny!", null, false)] public static void ShinyFamiliarCommand(ChatCommandContext ctx, string spellSchool = "") { //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_0212: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } PrefabGUID key = ((IEnumerable)FamiliarUnlockSystem.ShinyBuffColorHexes.Keys).SingleOrDefault((Func)((PrefabGUID prefab) => prefab.GetPrefabName().Contains(spellSchool, StringComparison.CurrentCultureIgnoreCase))); if (!FamiliarUnlockSystem.ShinyBuffColorHexes.ContainsKey(key)) { LocalizationService.HandleReply(ctx, "Couldn't find matching shinyBuff from entered spell school. (options: blood, storm, unholy, chaos, frost, illusion)"); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.User.PlatformId; Entity activeFamiliar = Familiars.GetActiveFamiliar(senderCharacterEntity); int guidHash = activeFamiliar.GetGuidHash(); int num = Mathf.Clamp(ConfigService.ShinyCostItemQuantity, 50, 200); if (activeFamiliar.Exists()) { DataService.FamiliarPersistence.FamiliarBuffsManager.FamiliarBuffsData familiarBuffsData = DataService.FamiliarPersistence.FamiliarBuffsManager.LoadFamiliarBuffsData(platformId); ServerGameManager serverGameManager; if (!familiarBuffsData.FamiliarBuffs.ContainsKey(guidHash)) { Entity val = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, senderCharacterEntity, ref val, 0)) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val, _vampiricDust) >= num) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val, _vampiricDust, num) && FamiliarUnlockSystem.HandleShiny(guidHash, platformId, 1f, ((PrefabGUID)(ref key)).GuidHash)) { LocalizationService.HandleReply(ctx, "Shiny added! Rebind familiar to see effects. Use '.fam option shiny' to toggle (no chance to apply spell school debuff on hit if shiny buffs are disabled)."); } return; } } LocalizationService.HandleReply(ctx, $"You don't have the required amount of {_vampiricDust.GetLocalizedName()}! (x{num})"); } else { if (!familiarBuffsData.FamiliarBuffs.ContainsKey(guidHash)) { return; } int num2 = (int)((float)num * 0.25f); Entity val2 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, senderCharacterEntity, ref val2, 0)) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val2, _vampiricDust) >= num2) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val2, _vampiricDust, num2) && FamiliarUnlockSystem.HandleShiny(guidHash, platformId, 1f, ((PrefabGUID)(ref key)).GuidHash)) { LocalizationService.HandleReply(ctx, "Shiny changed! Rebind familiar to see effects. Use '.fam option shiny' to toggle (no chance to apply spell school debuff on hit if shiny buffs are disabled)."); } return; } } LocalizationService.HandleReply(ctx, $"You don't have the required amount of {_vampiricDust.GetLocalizedName()}! (x{num2})"); } } else { LocalizationService.HandleReply(ctx, "Couldn't find active familiar..."); } } [Command("toggleoption", "option", ".fam option [Setting]", "Toggles various familiar settings.", null, false)] public static void ToggleFamiliarSettingCommand(ChatCommandContext ctx, string option) { //IL_0021: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } ulong platformId = ctx.User.PlatformId; Action action = (from kvp in _familiarSettings where string.Equals(kvp.Key, option, StringComparison.CurrentCultureIgnoreCase) select kvp.Value).FirstOrDefault(); if (action != null) { action(ctx, platformId); return; } string text = string.Join(", ", _familiarSettings.Keys.Select((string kvp) => "" + kvp + "")); LocalizationService.HandleReply(ctx, "Valid options: " + text); } [Command("listbattlegroups", "bgs", ".fam bgs", "Lists available battle groups.", null, false)] public static void ListBattleGroupsCommand(ChatCommandContext ctx) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } DataService.FamiliarPersistence.FamiliarBattleGroupsManager.FamiliarBattleGroupsData familiarBattleGroupsData = DataService.FamiliarPersistence.FamiliarBattleGroupsManager.LoadFamiliarBattleGroupsData(ctx.Event.User.PlatformId); if (familiarBattleGroupsData.BattleGroups.Count > 0) { List list = new List(); list.AddRange(familiarBattleGroupsData.BattleGroups.Select((DataService.FamiliarPersistence.FamiliarBattleGroupsManager.FamiliarBattleGroup bg) => bg.Name)); List source = list; LocalizationService.HandleReply(ctx, "Familiar Battle Groups:"); List list2 = new List(); list2.AddRange(source.Select((string bg) => "" + bg + "")); { foreach (IReadOnlyList item in list2.Batch(5)) { string message = string.Join(", ", item); LocalizationService.HandleReply(ctx, message); } return; } } LocalizationService.HandleReply(ctx, "You have no battle groups."); } [Command("listbattlegroup", "bg", ".fam bg [BattleGroup]", "Displays details of the specified battle group, or the active one if none is given.", null, false)] public static void ShowBattleGroupCommand(ChatCommandContext ctx, string groupName = "") { //IL_002c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (string.IsNullOrEmpty(groupName)) { groupName = DataService.FamiliarPersistence.FamiliarBattleGroupsManager.GetActiveBattleGroupName(platformId); if (string.IsNullOrEmpty(groupName)) { LocalizationService.HandleReply(ctx, "No active battle group selected! Use .fam cbg [Name] to select one."); return; } } DataService.FamiliarPersistence.FamiliarBattleGroupsManager.FamiliarBattleGroup familiarBattleGroup = DataService.FamiliarPersistence.FamiliarBattleGroupsManager.GetFamiliarBattleGroup(platformId, groupName); DataService.FamiliarPersistence.FamiliarBattleGroupsManager.HandleBattleGroupDetailsReply(ctx, platformId, familiarBattleGroup); } [Command("choosebattlegroup", "cbg", ".fam cbg [BattleGroup]", "Sets active battle group.", null, false)] public static void ChooseBattleGroupCommand(ChatCommandContext ctx, string groupName) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (DataService.FamiliarPersistence.FamiliarBattleGroupsManager.SetActiveBattleGroup(ctx, platformId, groupName)) { LocalizationService.HandleReply(ctx, "Active battle group set to " + groupName + "."); } else { LocalizationService.HandleReply(ctx, "Battle group not found."); } } [Command("addbattlegroup", "abg", ".fam abg [BattleGroup]", "Creates new battle group.", null, false)] public static void AddBattleGroupCommand(ChatCommandContext ctx, string groupName) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (DataService.FamiliarPersistence.FamiliarBattleGroupsManager.CreateBattleGroup(ctx, platformId, groupName)) { LocalizationService.HandleReply(ctx, "Battle group " + groupName + " created."); } } [Command("slotbattlegroup", "sbg", ".fam sbg [BattleGroupOrSlot] [Slot]", "Assigns active familiar to a battle group slot. If no battle group is specified, assigns to active group.", null, false)] public static void SetFamiliarInBattleGroupCommand(ChatCommandContext ctx, string groupOrSlot, int slotIndex = 0) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; string text; if (int.TryParse(groupOrSlot, out var result)) { slotIndex = result; text = DataService.FamiliarPersistence.FamiliarBattleGroupsManager.GetActiveBattleGroupName(platformId); } else { text = groupOrSlot; } if (string.IsNullOrEmpty(text)) { LocalizationService.HandleReply(ctx, "No active battle group selected! Use .fam cbg [Name] to select one."); } else if (slotIndex < 1 || slotIndex > 3) { LocalizationService.HandleReply(ctx, "Slot input out of range! (use 1, 2, or 3)"); } else if (DataService.FamiliarPersistence.FamiliarBattleGroupsManager.AssignFamiliarToGroup(ctx, platformId, text, slotIndex)) { LocalizationService.HandleReply(ctx, $"Familiar assigned to {text} in slot {slotIndex}."); } } [Command("deletebattlegroup", "dbg", ".fam dbg [BattleGroup]", "Deletes a battle group.", null, false)] public static void DeleteBattleGroupCommand(ChatCommandContext ctx, string groupName) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (DataService.FamiliarPersistence.FamiliarBattleGroupsManager.DeleteBattleGroup(ctx, platformId, groupName)) { LocalizationService.HandleReply(ctx, "Deleted battle group " + groupName + "."); } } [Command("challenge", null, ".fam challenge [PlayerName]", "Challenges a player to battle or displays queue details.", null, false)] public static void ChallengePlayerCommand(ChatCommandContext ctx, string name = "") { //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_02a2: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02c4: Unknown result type (might be due to invalid IL or missing references) //IL_02cf: Unknown result type (might be due to invalid IL or missing references) //IL_02da: Unknown result type (might be due to invalid IL or missing references) //IL_02df: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem || !ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } ulong steamId = ctx.Event.User.PlatformId; bool flag = BattleService.Matchmaker.QueuedPlayers.Contains(steamId); if (string.IsNullOrEmpty(name)) { if (flag) { var (value, timeSpan) = BattleService.GetQueuePositionAndTime(steamId); LocalizationService.HandleReply(ctx, $"Position in queue: {value} ({Misc.FormatTimespan(timeSpan)})"); } else { LocalizationService.HandleReply(ctx, "You're not currently queued for battle! Use '.fam challenge [PlayerName]' to challenge another player."); } return; } if (flag) { var (value2, timeSpan2) = BattleService.GetQueuePositionAndTime(steamId); LocalizationService.HandleReply(ctx, $"You can't challenge another player while queued for battle! Position in queue: {value2} ({Misc.FormatTimespan(timeSpan2)})"); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } if (playerInfo.User.PlatformId == steamId) { ctx.Reply("You can't challenge yourself!"); return; } if (BattleService.Matchmaker.QueuedPlayers.Contains(playerInfo.User.PlatformId)) { LocalizationService.HandleReply(ctx, $"{playerInfo.User.CharacterName} is already queued for battle!"); return; } if (EmoteSystemPatch.BattleChallenges.Any(((ulong, ulong) challenge) => challenge.Item1 == steamId || challenge.Item2 == steamId)) { ctx.Reply("Can't challenge another player until an existing challenge expires or is declined!"); return; } if (EmoteSystemPatch.BattleChallenges.Any(((ulong, ulong) challenge) => challenge.Item1 == playerInfo.User.PlatformId || challenge.Item2 == playerInfo.User.PlatformId)) { ctx.Reply($"{playerInfo.User.CharacterName} already has a pending challenge!"); return; } EmoteSystemPatch.BattleChallenges.Add((ctx.User.PlatformId, playerInfo.User.PlatformId)); User user = playerInfo.User; ctx.Reply("Challenged " + ((FixedString64Bytes)(ref user.CharacterName)).Value + " to a battle! (30s until it expires)"); EntityManager entityManager = EntityManager; User user2 = playerInfo.User; user = ctx.User; LocalizationService.HandleServerReply(entityManager, user2, "" + ((FixedString64Bytes)(ref user.CharacterName)).Value + " has challenged you to a battle! (30s until it expires, accept by emoting 'Yes' or decline by emoting 'No')"); BattleService.ChallengeExpiredRoutine((ctx.User.PlatformId, playerInfo.User.PlatformId)).Run(); } [Command("setbattlearena", "sba", ".fam sba", "Set current position as the center for the familiar battle arena.", null, true)] public static void SetBattleArenaCommand(ChatCommandContext ctx) { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.FamiliarSystem) { LocalizationService.HandleReply(ctx, "Familiars are not enabled."); return; } if (!ConfigService.FamiliarBattles) { LocalizationService.HandleReply(ctx, "Familiar battles are not enabled."); return; } float3 value = ctx.Event.SenderCharacterEntity.Read().Value; List item = new List(3) { value.x, value.y, value.z }; DataService.PlayerDictionaries._familiarBattleCoords.Clear(); DataService.PlayerDictionaries._familiarBattleCoords.Add(item); DataService.PlayerPersistence.SaveFamiliarBattleCoords(); if (((float3)(ref BattleService._battlePosition)).Equals(float3.zero)) { BattleService.Initialize(); LocalizationService.HandleReply(ctx, "Familiar arena position set, battle service started! (only one arena currently allowed)"); } else { BattleService.FamiliarBattleCoords.Clear(); BattleService.FamiliarBattleCoords.Add(value); LocalizationService.HandleReply(ctx, "Familiar arena position changed! (only one arena currently allowed)"); } } } [CommandGroup("level", "lvl")] internal static class LevelingCommands { [Command("log", null, ".lvl log", "Toggles leveling progress logging.", null, false)] public static void LogExperienceCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LevelingSystem) { LocalizationService.HandleReply(ctx, "Leveling is not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "ExperienceLogging"); LocalizationService.HandleReply(ctx, "Level logging " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "ExperienceLogging") ? "enabled" : "disabled") + "."); } [Command("get", null, ".lvl get", "Display current leveling progress.", null, false)] public static void GetLevelCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LevelingSystem) { LocalizationService.HandleReply(ctx, "Leveling is not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (platformId.TryGetPlayerExperience(out var experience)) { Dictionary prestiges; int value = (platformId.TryGetPlayerPrestiges(out prestiges) ? prestiges[PrestigeType.Experience] : 0); int key = experience.Key; int value2 = (int)(experience.Value - (float)Progression.ConvertLevelToXp(key)); int levelProgress = LevelingSystem.GetLevelProgress(platformId); LocalizationService.HandleReply(ctx, $"You're level [{key}][{value}] with {value2} experience ({levelProgress}%)!"); if (ConfigService.RestedXPSystem && platformId.TryGetPlayerRestedXP(out var restedXP) && restedXP.Value > 0f) { int value3 = (int)(Math.Round((double)restedXP.Value / 100.0) * 100.0); LocalizationService.HandleReply(ctx, $"{value3} bonus experience remaining from resting~"); } } else { LocalizationService.HandleReply(ctx, "You haven't earned any experience yet!"); } } [Command("set", null, ".lvl set [Player] [Level]", "Sets player level.", null, true)] public static void SetLevelCommand(ChatCommandContext ctx, string name, int level) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LevelingSystem) { LocalizationService.HandleReply(ctx, "Leveling is not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } User user = playerInfo.User; if (level < 0 || level > ConfigService.MaxLevel) { LocalizationService.HandleReply(ctx, $"Level must be between 0 and {ConfigService.MaxLevel}!"); return; } ulong platformId = user.PlatformId; if (platformId.TryGetPlayerExperience(out var experience)) { experience = new KeyValuePair(level, Progression.ConvertLevelToXp(level)); platformId.SetPlayerExperience(experience); LevelingSystem.SetLevel(playerInfo.CharEntity); LocalizationService.HandleReply(ctx, $"Level set to {level} for {((FixedString64Bytes)(ref user.CharacterName)).Value}!"); } else { LocalizationService.HandleReply(ctx, "Couldn't find experience data for " + ((FixedString64Bytes)(ref user.CharacterName)).Value); } } [Command("ignoresharedexperience", "ignore", ".lvl ignore [Player]", "Adds (or removes) player to list of those who are not eligible to receive shared experience.", null, true)] public static void IgnoreSharedExperiencePlayerCommand(ChatCommandContext ctx, string name) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LevelingSystem) { LocalizationService.HandleReply(ctx, "Leveling is not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); User user; if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player..."); } else if (!DataService.PlayerDictionaries._ignoreSharedExperience.Contains(playerInfo.User.PlatformId)) { DataService.PlayerDictionaries._ignoreSharedExperience.Add(playerInfo.User.PlatformId); DataService.PlayerPersistence.SaveIgnoredSharedExperience(); user = playerInfo.User; ctx.Reply("" + ((FixedString64Bytes)(ref user.CharacterName)).Value + " added to the ignore shared experience list!"); } else if (DataService.PlayerDictionaries._ignoreSharedExperience.Contains(playerInfo.User.PlatformId)) { DataService.PlayerDictionaries._ignoreSharedExperience.Remove(playerInfo.User.PlatformId); DataService.PlayerPersistence.SaveIgnoredSharedExperience(); user = playerInfo.User; ctx.Reply("" + ((FixedString64Bytes)(ref user.CharacterName)).Value + " removed from the ignore shared experience list!"); } } } [CommandGroup("miscellaneous", "misc")] internal static class MiscCommands { private static readonly PrefabGUID _combatBuff = new PrefabGUID(581443919); public static readonly Dictionary StarterKitItemPrefabGUIDs = new Dictionary(); private const int MAX_PER_MESSAGE = 6; private static ServerGameManager ServerGameManager => Core.ServerGameManager; private static SystemService SystemService => Core.SystemService; private static CombatMusicSystem_Server CombatMusicSystemServer => SystemService.CombatMusicSystem_Server; private static ClaimAchievementSystem ClaimAchievementSystem => SystemService.ClaimAchievementSystem; private static EntityCommandBufferSystem EntityCommandBufferSystem => SystemService.EntityCommandBufferSystem; [Command("reminders", "remindme", ".misc remindme", "Toggles general reminders for various mod features.", null, false)] public static void LogExperienceCommand(ChatCommandContext ctx) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) ulong platformId = ctx.Event.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "Reminders"); LocalizationService.HandleReply(ctx, "Reminders " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "Reminders") ? "enabled" : "disabled") + "."); } [Command("sct", null, ".misc sct [Type]", "Toggles various scrolling text elements.", null, false)] public static void ToggleScrollingText(ChatCommandContext ctx, string input = "") { //IL_0006: Unknown result type (might be due to invalid IL or missing references) ulong platformId = ctx.Event.User.PlatformId; int result; Misc.ScrollingTextMessage value2; string value3; if (string.IsNullOrWhiteSpace(input)) { Misc.ReplySCTDetails(ctx); } else if (int.TryParse(input, out result)) { result--; if (!Enum.IsDefined(typeof(Misc.ScrollingTextMessage), result)) { Misc.ReplySCTDetails(ctx); return; } Misc.ScrollingTextMessage scrollingTextMessage = (Misc.ScrollingTextMessage)result; if (!Misc.ScrollingTextBoolKeyMap.TryGetValue(scrollingTextMessage, out var value)) { LocalizationService.HandleReply(ctx, "Couldn't find bool key from scrolling text type..."); return; } Misc.PlayerBoolsManager.TogglePlayerBool(platformId, value); bool playerBool = Misc.PlayerBoolsManager.GetPlayerBool(platformId, value); LocalizationService.HandleReply(ctx, $"{scrollingTextMessage} scrolling text {(playerBool ? "enabled" : "disabled")}."); } else if (!Misc.ScrollingTextNameMap.TryGetValue(input, out value2)) { Misc.ReplySCTDetails(ctx); } else if (!Misc.ScrollingTextBoolKeyMap.TryGetValue(value2, out value3)) { LocalizationService.HandleReply(ctx, "Couldn't find bool key from scrolling text type..."); } else { Misc.PlayerBoolsManager.TogglePlayerBool(platformId, value3); bool playerBool2 = Misc.PlayerBoolsManager.GetPlayerBool(platformId, value3); LocalizationService.HandleReply(ctx, $"{value2} scrolling text {(playerBool2 ? "enabled" : "disabled")}."); } } [Command("starterkit", "kitme", ".misc kitme", "Provides starting kit.", null, false)] public static void KitMe(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.StarterKit) { LocalizationService.HandleReply(ctx, "Starter kit is not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (!Misc.PlayerBoolsManager.GetPlayerBool(platformId, "StarterKit")) { Misc.PlayerBoolsManager.SetPlayerBool(platformId, "StarterKit", value: true); Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; foreach (KeyValuePair starterKitItemPrefabGUID in StarterKitItemPrefabGUIDs) { ServerGameManager serverGameManager = ServerGameManager; ((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(senderCharacterEntity, starterKitItemPrefabGUID.Key, starterKitItemPrefabGUID.Value); } string text = string.Empty; PrefabGUID prefabGuid = default(PrefabGUID); ((PrefabGUID)(ref prefabGuid))..ctor(ConfigService.KitFamiliar); if (((PrefabGUID)(ref prefabGuid)).HasValue() && prefabGuid.IsCharacter()) { DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); string familiarSet; string text2 = (platformId.TryGetFamiliarBox(out familiarSet) ? familiarSet : string.Empty); if (string.IsNullOrEmpty(text2) || !familiarUnlocksData.FamiliarUnlocks.ContainsKey(text2)) { text2 = ((familiarUnlocksData.FamiliarUnlocks.Count == 0) ? "box1" : familiarUnlocksData.FamiliarUnlocks.Keys.First()); if (!familiarUnlocksData.FamiliarUnlocks.ContainsKey(text2)) { familiarUnlocksData.FamiliarUnlocks[text2] = new List(); } platformId.SetFamiliarBox(text2); } if (!familiarUnlocksData.FamiliarUnlocks.TryGetValue(text2, out var value)) { value = new List(); familiarUnlocksData.FamiliarUnlocks[text2] = value; } int guidHash = ((PrefabGUID)(ref prefabGuid)).GuidHash; if (!value.Contains(guidHash)) { value.Add(guidHash); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); text = VExtensions.GetLocalizedName(new PrefabGUID(guidHash)); } } List list = new List(); list.AddRange(StarterKitItemPrefabGUIDs.Select((KeyValuePair x) => $"{x.Key.GetLocalizedName()}x{x.Value}")); LocalizationService.HandleReply(ctx, "You've received a starter kit:"); foreach (IReadOnlyList item in list.Batch(6)) { string message = string.Join(", ", item); LocalizationService.HandleReply(ctx, message); } if (!string.IsNullOrEmpty(text)) { LocalizationService.HandleReply(ctx, "" + text + ""); } } else { ctx.Reply("You've already used the starter kit!"); } } [Command("prepareforthehunt", "prepare", ".misc prepare", "Completes GettingReadyForTheHunt if not already completed.", null, false)] public static void QuickStartCommand(ChatCommandContext ctx) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.LevelingSystem) { LocalizationService.HandleReply(ctx, "Leveling is not enabled."); return; } EntityCommandBuffer val = EntityCommandBufferSystem.CreateCommandBuffer(); PrefabGUID val2 = default(PrefabGUID); ((PrefabGUID)(ref val2))..ctor(560247139); Entity senderUserEntity = ctx.Event.SenderUserEntity; Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; Entity entity = senderUserEntity.Read().Entity._Entity; ClaimAchievementSystem.CompleteAchievement(val, val2, senderUserEntity, senderCharacterEntity, entity, false, true); LocalizationService.HandleReply(ctx, "You are now prepared for the hunt!"); } [Command("userstats", null, ".misc userstats", "Shows neat information about the player.", null, false)] public static void GetUserStats(ChatCommandContext ctx) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) UserStats val = ctx.Event.SenderUserEntity.Read(); int vBloodKills = val.VBloodKills; int unitKills = val.UnitKills; int deaths = val.Deaths; float onlineTime = val.OnlineTime; onlineTime = (int)onlineTime / 3600; float distanceTravelled = val.DistanceTravelled; distanceTravelled = (int)distanceTravelled / 1000; float litresBloodConsumed = val.LitresBloodConsumed; litresBloodConsumed = (int)litresBloodConsumed; LocalizationService.HandleReply(ctx, $"VBloods Slain: {vBloodKills} | Units Killed: {unitKills} | Deaths: {deaths} | Time Online: {onlineTime}hr | Distance Traveled: {distanceTravelled}kf | Blood Consumed: {litresBloodConsumed}L"); } [Command("silence", null, ".misc silence", "Resets stuck combat music if needed.", null, false)] public static void ResetMusicCommand(ChatCommandContext ctx) { //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0014: 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_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ServerGameManager serverGameManager = ServerGameManager; PrefabGUID combatBuff = _combatBuff; if (((ServerGameManager)(ref serverGameManager)).HasBuff(senderCharacterEntity, ((PrefabGUID)(ref combatBuff)).ToIdentifier())) { LocalizationService.HandleReply(ctx, "This command should only be used as required and certainly not while in combat."); return; } CombatMusicListener_Shared componentData = senderCharacterEntity.Read(); componentData.UnitPrefabGuid = new PrefabGUID(0); senderCharacterEntity.Write(componentData); ((SystemBase)CombatMusicSystemServer).OnUpdate(); ctx.Reply("Combat music cleared!"); } [Command("health", null, ".misc health", "Shows startup readiness state summary.", null, true)] public static void HealthCommand(ChatCommandContext ctx) { LocalizationService.HandleReply(ctx, StartupStateService.BuildSummary()); } } [CommandGroup("prestige", null)] internal static class PrestigeCommands { private const int EXO_PRESTIGES = 100; private const int PRESTIGE_BATCH = 6; private const int LEADERBOARD_BATCH = 4; private static readonly PrefabGUID _shroudBuff = new PrefabGUID(1504279833); private static readonly PrefabGUID _shroudCloak = new PrefabGUID(1063517722); private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; [Command("self", "me", ".prestige me [PrestigeType]", "Handles player prestiging.", null, false)] public static void PrestigeCommand(ChatCommandContext ctx, string prestigeType) { //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0387: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_028a: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_023e: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } if (!Bloodcraft.Systems.Leveling.PrestigeManager.TryParsePrestigeType(prestigeType, out var parsedPrestigeType)) { LocalizationService.HandleReply(ctx, "Invalid prestige type, use '.prestige l' to see options."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; if (ConfigService.ExoPrestiging && parsedPrestigeType.Equals(PrestigeType.Exo)) { if (platformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value) && value == ConfigService.MaxLevelingPrestiges) { if (platformId.TryGetPlayerExperience(out var experience) && experience.Key < ConfigService.MaxLevel) { LocalizationService.HandleReply(ctx, "You must reach max level before Exo prestiging again."); return; } if (prestiges[PrestigeType.Exo] >= 100) { LocalizationService.HandleReply(ctx, $"You have reached the maximum amount of Exo prestiges. ({100})"); return; } if (ConfigService.RestedXPSystem) { LevelingSystem.UpdateMaxRestedXP(platformId, experience); } experience = new KeyValuePair(0, 0f); platformId.SetPlayerExperience(experience); LevelingSystem.SetLevel(senderCharacterEntity); int num = ++prestiges[PrestigeType.Exo]; KeyValuePair data = new KeyValuePair(DateTime.UtcNow, Shapeshifts.CalculateFormDuration(num)); platformId.SetPlayerExoFormData(data); prestiges[PrestigeType.Exo] = num; platformId.SetPlayerPrestiges(prestiges); PrefabGUID empty = PrefabGUID.Empty; if (ConfigService.ExoPrestigeReward != 0) { ((PrefabGUID)(ref empty))..ctor(ConfigService.ExoPrestigeReward); } else if (ConfigService.ExoPrestigeReward == 0) { LocalizationService.HandleReply(ctx, $"{parsedPrestigeType}[{num}] prestige complete!"); return; } ServerGameManager serverGameManager = ServerGameManager; if (AddItemResponse.op_Implicit(((ServerGameManager)(ref serverGameManager)).TryAddInventoryItem(senderCharacterEntity, empty, ConfigService.ExoPrestigeRewardQuantity))) { LocalizationService.HandleReply(ctx, $"{parsedPrestigeType}[{num}] prestige complete! You have also been awarded with {empty.GetLocalizedName()}x{ConfigService.ExoPrestigeRewardQuantity}!"); } else { InventoryUtilitiesServer.CreateDropItem(EntityManager, senderCharacterEntity, empty, ConfigService.ExoPrestigeRewardQuantity, default(Entity)); LocalizationService.HandleReply(ctx, $"{parsedPrestigeType}[{num}] prestige complete! You have been awarded with {empty.GetLocalizedName()}x{ConfigService.ExoPrestigeRewardQuantity}! It dropped on the ground becuase your inventory was full though."); } } else { LocalizationService.HandleReply(ctx, "You must reach the maximum level in Experience prestige before Exo prestiging."); } return; } if (!ConfigService.ExoPrestiging && parsedPrestigeType.Equals(PrestigeType.Exo)) { LocalizationService.HandleReply(ctx, "Exo prestiging is not enabled."); return; } IPrestige prestige = PrestigeFactory.GetPrestige(parsedPrestigeType); if (prestige == null) { LocalizationService.HandleReply(ctx, "Invalid prestige, use '.prestige l' to see valid options."); return; } KeyValuePair prestigeData = prestige.GetPrestigeData(platformId); if (Bloodcraft.Systems.Leveling.PrestigeManager.CanPrestige(platformId, parsedPrestigeType, prestigeData.Key)) { Bloodcraft.Systems.Leveling.PrestigeManager.PerformPrestige(ctx, platformId, parsedPrestigeType, prestige, prestigeData); Buffs.RefreshStats(senderCharacterEntity); return; } LocalizationService.HandleReply(ctx, $"You have not reached the required level to prestige in {parsedPrestigeType} or are at maximum prestige level."); } [Command("get", null, ".prestige get [PrestigeType]", "Shows information about player's prestige status.", null, false)] public static void GetPrestigeCommand(ChatCommandContext ctx, string prestigeType) { //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } if (!Bloodcraft.Systems.Leveling.PrestigeManager.TryParsePrestigeType(prestigeType, out var parsedPrestigeType)) { LocalizationService.HandleReply(ctx, "Invalid prestige, use '.prestige l' to see valid options."); return; } User user = ctx.Event.User; ulong platformId = user.PlatformId; if (parsedPrestigeType == PrestigeType.Exo && platformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(parsedPrestigeType, out var value) && value > 0) { LocalizationService.HandleReply(ctx, $"Current Exo Prestige Level: {value}/{Bloodcraft.Systems.Leveling.PrestigeManager.PrestigeTypeToMaxPrestiges[parsedPrestigeType]} | Max Form Duration: {(int)Shapeshifts.CalculateFormDuration(value)}s"); Shapeshifts.UpdateExoFormChargeStored(platformId); if (platformId.TryGetPlayerExoFormData(out var exoFormData)) { if (exoFormData.Value < 15f) { Shapeshifts.ReplyNotEnoughCharge(user, platformId, exoFormData.Value); } else if (exoFormData.Value >= 15f) { LocalizationService.HandleReply(ctx, $"Enough charge to maintain form for {(int)exoFormData.Value}s"); } } } else if (parsedPrestigeType == PrestigeType.Exo) { LocalizationService.HandleReply(ctx, "You have not prestiged in Exo yet."); } else if (PrestigeFactory.GetPrestige(parsedPrestigeType) == null) { LocalizationService.HandleReply(ctx, "Invalid prestige, use '.prestige l' to see valid options."); } else { int maxPrestigeLevel = Bloodcraft.Systems.Leveling.PrestigeManager.PrestigeTypeToMaxPrestiges[parsedPrestigeType]; if (platformId.TryGetPlayerPrestiges(out var prestiges2) && prestiges2.TryGetValue(parsedPrestigeType, out var value2) && value2 > 0) { Bloodcraft.Systems.Leveling.PrestigeManager.DisplayPrestigeInfo(ctx, platformId, parsedPrestigeType, value2, maxPrestigeLevel); return; } LocalizationService.HandleReply(ctx, $"You have not prestiged in {parsedPrestigeType}."); } } [Command("set", null, ".prestige set [Player] [PrestigeType] [Level]", "Sets the specified player to a certain level of prestige in a certain type of prestige.", null, true)] public static void SetPlayerPrestigeCommand(ChatCommandContext ctx, string name, string prestigeType, int level) { //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_0285: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) //IL_02cc: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } if (!Bloodcraft.Systems.Leveling.PrestigeManager.TryParsePrestigeType(prestigeType, out var parsedPrestigeType)) { LocalizationService.HandleReply(ctx, "Invalid prestige, use '.prestige l' to see valid options."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } Entity charEntity = playerInfo.CharEntity; ulong platformId = playerInfo.User.PlatformId; User user; DefaultInterpolatedStringHandler defaultInterpolatedStringHandler; if (parsedPrestigeType == PrestigeType.Exo) { if (!ConfigService.ExoPrestiging) { LocalizationService.HandleReply(ctx, $"{parsedPrestigeType} prestiging is not enabled."); return; } if (level > Bloodcraft.Systems.Leveling.PrestigeManager.PrestigeTypeToMaxPrestiges[parsedPrestigeType] || level < 1) { LocalizationService.HandleReply(ctx, $"The maximum level for {parsedPrestigeType} prestige is {Bloodcraft.Systems.Leveling.PrestigeManager.PrestigeTypeToMaxPrestiges[parsedPrestigeType]}."); return; } if (platformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Exo, out var value)) { value = (prestiges[PrestigeType.Exo] = level); platformId.SetPlayerPrestiges(prestiges); KeyValuePair data = new KeyValuePair(DateTime.UtcNow, Shapeshifts.CalculateFormDuration(value)); platformId.SetPlayerExoFormData(data); defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(109, 3); defaultInterpolatedStringHandler.AppendLiteral("Player "); user = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral(" has been set to level "); defaultInterpolatedStringHandler.AppendFormatted(level); defaultInterpolatedStringHandler.AppendLiteral(" in "); defaultInterpolatedStringHandler.AppendFormatted(parsedPrestigeType); defaultInterpolatedStringHandler.AppendLiteral(" prestige."); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); return; } } if (PrestigeFactory.GetPrestige(parsedPrestigeType) == null) { LocalizationService.HandleReply(ctx, "Invalid prestige, use '.prestige l' to see valid options."); return; } if (!platformId.TryGetPlayerPrestiges(out var prestiges2)) { prestiges2 = new Dictionary(); platformId.SetPlayerPrestiges(prestiges2); } if (!prestiges2.ContainsKey(parsedPrestigeType)) { prestiges2[parsedPrestigeType] = 0; } if (level > Bloodcraft.Systems.Leveling.PrestigeManager.PrestigeTypeToMaxPrestiges[parsedPrestigeType]) { LocalizationService.HandleReply(ctx, $"The maximum level for {parsedPrestigeType} prestige is {Bloodcraft.Systems.Leveling.PrestigeManager.PrestigeTypeToMaxPrestiges[parsedPrestigeType]}."); return; } prestiges2[parsedPrestigeType] = level; platformId.SetPlayerPrestiges(prestiges2); if (parsedPrestigeType == PrestigeType.Experience) { Bloodcraft.Systems.Leveling.PrestigeManager.ApplyPrestigeBuffs(charEntity, level); Bloodcraft.Systems.Leveling.PrestigeManager.ReplyExperiencePrestigeEffects(playerInfo.User, level); Progression.PlayerProgressionCacheManager.UpdatePlayerProgressionPrestige(platformId, hasPrestiged: true); } else { Bloodcraft.Systems.Leveling.PrestigeManager.ReplyOtherPrestigeEffects(playerInfo.User, platformId, parsedPrestigeType, level); } defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(109, 3); defaultInterpolatedStringHandler.AppendLiteral("Player "); user = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral(" has been set to level "); defaultInterpolatedStringHandler.AppendFormatted(level); defaultInterpolatedStringHandler.AppendLiteral(" in "); defaultInterpolatedStringHandler.AppendFormatted(parsedPrestigeType); defaultInterpolatedStringHandler.AppendLiteral(" prestige."); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); } [Command("reset", "r", ".prestige r [Player] [PrestigeType]", "Handles resetting prestiging.", null, true)] public static void ResetPrestige(ChatCommandContext ctx, string name, string prestigeType) { //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } if (!Bloodcraft.Systems.Leveling.PrestigeManager.TryParsePrestigeType(prestigeType, out var parsedPrestigeType)) { LocalizationService.HandleReply(ctx, "Invalid prestige, use '.prestige l' to see valid options."); return; } if (!ConfigService.ExoPrestiging && parsedPrestigeType == PrestigeType.Exo) { LocalizationService.HandleReply(ctx, "Exo prestiging is not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player..."); return; } Entity charEntity = playerInfo.CharEntity; ulong platformId = playerInfo.User.PlatformId; if (!platformId.TryGetPlayerPrestiges(out var prestiges) || !prestiges.TryGetValue(parsedPrestigeType, out var _)) { return; } if (parsedPrestigeType == PrestigeType.Experience) { Bloodcraft.Systems.Leveling.PrestigeManager.RemovePrestigeBuffs(charEntity); } prestiges[parsedPrestigeType] = 0; platformId.SetPlayerPrestiges(prestiges); if (parsedPrestigeType == PrestigeType.Exo) { if (platformId.TryGetPlayerExoFormData(out var _)) { KeyValuePair data = new KeyValuePair(DateTime.MinValue, 0f); platformId.SetPlayerExoFormData(data); } if (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "Shapeshift")) { Misc.PlayerBoolsManager.SetPlayerBool(platformId, "Shapeshift", value: false); } } DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(65, 2); defaultInterpolatedStringHandler.AppendLiteral(""); defaultInterpolatedStringHandler.AppendFormatted(parsedPrestigeType); defaultInterpolatedStringHandler.AppendLiteral(" prestige reset for "); User user = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral("."); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); } [Command("syncbuffs", "sb", ".prestige sb", "Applies prestige buffs appropriately if not present.", null, false)] public static void SyncPrestigeBuffsCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } if (ctx.Event.User.PlatformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value) && value > 0) { Bloodcraft.Systems.Leveling.PrestigeManager.ApplyPrestigeBuffs(ctx.Event.SenderCharacterEntity, value); LocalizationService.HandleReply(ctx, "Prestige buffs applied! (if they were missing)"); return; } LocalizationService.HandleReply(ctx, $"You have not prestiged in {0}."); } [Command("list", "l", ".prestige l", "Lists prestiges available.", null, false)] public static void ListPlayerPrestigeTypes(ChatCommandContext ctx) { if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } List list = new List(); list.AddRange(from prestigeType in Enum.GetNames(typeof(PrestigeType)) select "" + prestigeType + ""); LocalizationService.HandleReply(ctx, "Prestiges:"); foreach (IReadOnlyList item in list.Batch(6)) { string message = string.Join(", ", item); LocalizationService.HandleReply(ctx, message); } } [Command("leaderboard", "lb", ".prestige lb [PrestigeType]", "Lists prestige leaderboard for type.", null, false)] public static void ListPrestigeTypeLeaderboard(ChatCommandContext ctx, string prestigeType) { if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } if (!ConfigService.PrestigeLeaderboard) { LocalizationService.HandleReply(ctx, "Leaderboards are not enabled."); return; } if (!Bloodcraft.Systems.Leveling.PrestigeManager.TryParsePrestigeType(prestigeType, out var parsedPrestigeType)) { LocalizationService.HandleReply(ctx, "Invalid prestige, use '.prestige l' to see valid options."); return; } if (!ConfigService.ExoPrestiging && parsedPrestigeType == PrestigeType.Exo) { LocalizationService.HandleReply(ctx, "Exo prestiging is not enabled."); return; } List> source = (from p in Bloodcraft.Systems.Leveling.PrestigeManager.GetPrestigeForType(parsedPrestigeType) where p.Value > 0 orderby p.Value descending select p).ToList(); if (!source.Any()) { LocalizationService.HandleReply(ctx, $"No players have prestiged in {parsedPrestigeType} yet!"); return; } List list = source.Take(10).Select(delegate(KeyValuePair p, int index) { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) User user = PlayerService.SteamIdPlayerInfoCache.Values.FirstOrDefault(delegate(PlayerService.PlayerInfo x) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) User user2 = x.User; return ((FixedString64Bytes)(ref user2.CharacterName)).Value == p.Key; }).User; string value = ((FixedString64Bytes)(ref user.CharacterName)).Value ?? "Unknown"; return $"{index + 1}| {value}, {parsedPrestigeType}: {p.Value}"; }).ToList(); if (list.Count == 0) { LocalizationService.HandleReply(ctx, $"No players have prestiged in {parsedPrestigeType} yet!"); return; } foreach (IReadOnlyList item in list.Batch(4)) { string message = string.Join(", ", item); LocalizationService.HandleReply(ctx, message); } } [Command("exoform", null, ".prestige exoform", "Toggles taunting to enter exoform.", null, false)] public static void ToggleExoFormEmote(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ExoPrestiging) { ctx.Reply("Exo prestiging is not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; if (platformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Exo, out var value) && value > 0) { if (!Progression.ConsumedMegara(ctx.Event.SenderUserEntity) && !Progression.ConsumedDracula(ctx.Event.SenderUserEntity)) { ctx.Reply("You must consume at least one primordial essence..."); return; } Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "Shapeshift"); ctx.Reply("Exo form emote action (taunt) " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "Shapeshift") ? "enabled" : "disabled")); } else { ctx.Reply("You are not yet worthy..."); } } [Command("selectform", "sf", ".prestige sf [EvolvedVampire|CorruptedSerpent]", "Select active exoform shapeshift.", null, false)] public static void SelectFormCommand(ChatCommandContext ctx, string shapeshift) { //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ExoPrestiging) { ctx.Reply("Exo prestiging is not enabled."); return; } if (!Enum.TryParse(shapeshift, ignoreCase: true, out var result)) { string text = string.Join(", ", from name in Enum.GetNames(typeof(ShapeshiftType)) select "" + name + ""); ctx.Reply("Invalid shapeshift! Valid options: " + text); return; } ulong platformId = ctx.Event.User.PlatformId; if (platformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Exo, out var value) && value > 0) { if (result.Equals(ShapeshiftType.EvolvedVampire) && !Progression.ConsumedDracula(ctx.Event.SenderUserEntity)) { ctx.Reply("You must consume Dracula's essence before manifesting his form..."); return; } if (result.Equals(ShapeshiftType.CorruptedSerpent) && !Progression.ConsumedMegara(ctx.Event.SenderUserEntity)) { ctx.Reply("You must consume Megara's essence before manifesting her form..."); return; } platformId.SetPlayerShapeshift(result); ctx.Reply($"Current Exoform: {result}"); } else { ctx.Reply("You are not yet worthy..."); } } [Command("ignoreleaderboard", "ignore", ".prestige ignore [Player]", "Adds (or removes) player to list of those who will not appear on prestige leaderboards. Intended for admin-duties only accounts.", null, true)] public static void IgnorePrestigeLeaderboardPlayerCommand(ChatCommandContext ctx, string name) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); User user; if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player..."); } else if (!DataService.PlayerDictionaries._ignorePrestigeLeaderboard.Contains(playerInfo.User.PlatformId)) { DataService.PlayerDictionaries._ignorePrestigeLeaderboard.Add(playerInfo.User.PlatformId); DataService.PlayerPersistence.SaveIgnoredPrestigeLeaderboard(); user = playerInfo.User; ctx.Reply("" + ((FixedString64Bytes)(ref user.CharacterName)).Value + " added to the ignore prestige leaderboard list!"); } else if (DataService.PlayerDictionaries._ignorePrestigeLeaderboard.Contains(playerInfo.User.PlatformId)) { DataService.PlayerDictionaries._ignorePrestigeLeaderboard.Remove(playerInfo.User.PlatformId); DataService.PlayerPersistence.SaveIgnoredPrestigeLeaderboard(); user = playerInfo.User; ctx.Reply("" + ((FixedString64Bytes)(ref user.CharacterName)).Value + " removed from the ignore prestige leaderboard list!"); } } [Command("permashroud", "shroud", ".prestige shroud", "Toggles permashroud if applicable.", null, false)] public static void PermaShroudToggle(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: 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_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "Shroud"); if (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "Shroud")) { LocalizationService.HandleReply(ctx, "Permashroud enabled!"); if (UpdateBuffsBufferDestroyPatch.PrestigeBuffs.Contains(_shroudBuff) && !senderCharacterEntity.HasBuff(_shroudBuff) && platformId.TryGetPlayerPrestiges(out var prestiges) && prestiges.TryGetValue(PrestigeType.Experience, out var value) && value > UpdateBuffsBufferDestroyPatch.PrestigeBuffs.IndexOf(_shroudBuff)) { Buffs.TryApplyPermanentBuff(senderCharacterEntity, _shroudBuff); } return; } LocalizationService.HandleReply(ctx, "Permashroud disabled!"); Equipment val = senderCharacterEntity.Read(); EquipmentType val2 = default(EquipmentType); if (!((Equipment)(ref val)).IsEquipped(_shroudCloak, ref val2) && senderCharacterEntity.HasBuff(_shroudBuff)) { senderCharacterEntity.TryRemoveBuff(_shroudBuff); } } [Command("iacknowledgethiswillremoveallprestigebuffsfromplayersandwantthattohappen", null, ".prestige iacknowledgethiswillremoveallprestigebuffsfromplayersandwantthattohappen", "Globally removes prestige buffs from players to facilitate changing prestige buffs in config.", null, true)] public static void GlobalClassPurgeCommand(ChatCommandContext ctx) { if (!ConfigService.PrestigeSystem) { LocalizationService.HandleReply(ctx, "Prestiging is not enabled."); } else { Bloodcraft.Systems.Leveling.PrestigeManager.GlobalPurgePrestigeBuffs(ctx); } } } [CommandGroup("profession", "prof")] internal static class ProfessionCommands { private const int MAX_PROFESSION_LEVEL = 100; [Command("log", null, ".prof log", "Toggles profession progress logging.", null, false)] public static void LogProgessionCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ProfessionSystem) { LocalizationService.HandleReply(ctx, "Professions are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "ProfessionLogging"); LocalizationService.HandleReply(ctx, "Profession logging is now " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "ProfessionLogging") ? "enabled" : "disabled") + "."); } [Command("get", null, ".prof get [Profession]", "Display your current profession progress.", null, false)] public static void GetProfessionCommand(ChatCommandContext ctx, string profession) { //IL_0062: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ProfessionSystem) { LocalizationService.HandleReply(ctx, "Professions are not enabled."); return; } if (!Enum.TryParse(profession, ignoreCase: true, out var result)) { LocalizationService.HandleReply(ctx, "Valid professions: " + ProfessionFactory.GetProfessionNames()); return; } if (result.IsDisabled()) { IProfession profession2 = ProfessionFactory.GetProfession(result); LocalizationService.HandleReply(ctx, profession2.GetProfessionName() + " is disabled via config."); return; } ulong platformId = ctx.Event.User.PlatformId; IProfession profession3 = ProfessionFactory.GetProfession(result); if (profession3 == null) { LocalizationService.HandleReply(ctx, "Invalid profession."); return; } KeyValuePair professionData = profession3.GetProfessionData(platformId); if (professionData.Key > 0) { int value = (int)(professionData.Value - (float)Progression.ConvertLevelToXp(professionData.Key)); LocalizationService.HandleReply(ctx, $"You're level [{professionData.Key}] and have {value} proficiency ({ProfessionSystem.GetLevelProgress(platformId, profession3)}%) in {profession3.GetProfessionName()}"); } else { LocalizationService.HandleReply(ctx, "No progress in " + profession3.GetProfessionName() + " yet!"); } } [Command("set", null, ".prof set [Name] [Profession] [Level]", "Sets player profession level.", null, true)] public static void SetProfessionCommand(ChatCommandContext ctx, string name, string profession, int level) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ProfessionSystem) { LocalizationService.HandleReply(ctx, "Professions are not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } if (level < 0 || level > 100) { LocalizationService.HandleReply(ctx, $"Level must be between 0 and {100}."); return; } if (!Enum.TryParse(profession, ignoreCase: true, out var result)) { LocalizationService.HandleReply(ctx, "Valid professions: " + ProfessionFactory.GetProfessionNames()); return; } IProfession profession2 = ProfessionFactory.GetProfession(result); if (profession2 == null) { LocalizationService.HandleReply(ctx, "Invalid profession."); return; } ulong platformId = playerInfo.User.PlatformId; float value = Progression.ConvertLevelToXp(level); profession2.SetProfessionData(platformId, new KeyValuePair(level, value)); DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(57, 3); defaultInterpolatedStringHandler.AppendFormatted(profession2.GetProfessionName()); defaultInterpolatedStringHandler.AppendLiteral(" set to ["); defaultInterpolatedStringHandler.AppendFormatted(level); defaultInterpolatedStringHandler.AppendLiteral("] for "); User user = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral(""); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); } [Command("list", "l", ".prof l", "Lists professions available.", null, false)] public static void ListProfessionsCommand(ChatCommandContext ctx) { if (!ConfigService.ProfessionSystem) { LocalizationService.HandleReply(ctx, "Professions are not enabled."); } else { LocalizationService.HandleReply(ctx, "Available professions: " + ProfessionFactory.GetProfessionNames()); } } } [CommandGroup("quest", null)] internal static class QuestCommands { private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; [Command("log", null, ".quest log", "Toggles quest progress logging.", null, false)] public static void LogQuestCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.QuestSystem) { LocalizationService.HandleReply(ctx, "Quests are not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "QuestLogging"); LocalizationService.HandleReply(ctx, "Quest logging is now " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "QuestLogging") ? "enabled" : "disabled") + "."); } [Command("progress", "p", ".quest p [QuestType]", "Display your current quest progress.", null, false)] public static void DailyQuestProgressCommand(ChatCommandContext ctx, string questType) { //IL_005a: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.QuestSystem) { LocalizationService.HandleReply(ctx, "Quests are not enabled."); return; } questType = questType.ToLower(); if (!Enum.TryParse(questType, ignoreCase: true, out var result)) { if (questType == "d") { result = QuestSystem.QuestType.Daily; } else { if (!(questType == "w")) { LocalizationService.HandleReply(ctx, "Invalid quest type. (daily/weekly or d/w)"); return; } result = QuestSystem.QuestType.Weekly; } } if (ctx.Event.User.PlatformId.TryGetPlayerQuests(out Dictionary quests)) { Quests.QuestObjectiveReply(ctx, quests, result); } else { LocalizationService.HandleReply(ctx, "You don't have any quests yet, check back soon."); } } [Command("track", "t", ".quest t [QuestType]", "Locate and track quest target.", null, false)] public static void LocateTargetCommand(ChatCommandContext ctx, string questType) { //IL_007b: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.QuestSystem) { LocalizationService.HandleReply(ctx, "Quests are not enabled."); return; } questType = questType.ToLower(); if (!Enum.TryParse(questType, ignoreCase: true, out var result)) { if (questType == "d") { result = QuestSystem.QuestType.Daily; } else { if (!(questType == "w")) { LocalizationService.HandleReply(ctx, "Invalid quest type. (daily/weekly or d/w)"); return; } result = QuestSystem.QuestType.Weekly; } } Dictionary quests; if (QuestService._lastUpdate == default(DateTime)) { LocalizationService.HandleReply(ctx, "Target cache isn't ready yet, check back shortly!"); } else if (ctx.Event.User.PlatformId.TryGetPlayerQuests(out quests)) { Quests.QuestTrackReply(ctx, quests, result); } else { LocalizationService.HandleReply(ctx, "You don't have any quests yet, check back soon!"); } } [Command("refresh", "rf", ".quest rf [Name]", "Refreshes daily and weekly quests for player.", null, true)] public static void ForceRefreshQuests(ChatCommandContext ctx, string name) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.QuestSystem) { LocalizationService.HandleReply(ctx, "Quests are not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } ulong platformId = playerInfo.User.PlatformId; KeyValuePair experience; int level = ((ConfigService.LevelingSystem && platformId.TryGetPlayerExperience(out experience)) ? experience.Key : Progression.GetSimulatedLevel(playerInfo.UserEntity)); QuestSystem.ForceRefresh(platformId, level); User user = playerInfo.User; LocalizationService.HandleReply(ctx, "Quests for " + ((FixedString64Bytes)(ref user.CharacterName)).Value + " have been refreshed."); } [Command("reroll", "r", ".quest r [QuestType]", "Reroll quest for cost (daily only currently).", null, false)] public static void RerollQuestCommand(ChatCommandContext ctx, string questType) { //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_0294: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02c1: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_02cf: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_02da: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.QuestSystem) { LocalizationService.HandleReply(ctx, "Quests are not enabled."); return; } questType = questType.ToLower(); if (questType == "d") { questType = "Daily"; } else if (questType == "w") { questType = "Weekly"; } if (!Enum.TryParse(questType, ignoreCase: true, out var result)) { LocalizationService.HandleReply(ctx, "Invalid quest type. (Daily/Weekly)"); return; } ulong platformId = ctx.Event.User.PlatformId; ServerGameManager serverGameManager; if (result.Equals(QuestSystem.QuestType.Daily)) { if (platformId.TryGetPlayerQuests(out Dictionary quests) && quests[QuestSystem.QuestType.Daily].Item1.Complete && !ConfigService.InfiniteDailies) { LocalizationService.HandleReply(ctx, "You've already completed your Daily Quest today. Check back tomorrow."); } else if (!ConfigService.RerollDailyPrefab.Equals(0)) { PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(ConfigService.RerollDailyPrefab); int rerollDailyAmount = ConfigService.RerollDailyAmount; Entity val2 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, ctx.User.LocalCharacter._Entity, ref val2, 0)) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val2, val) >= rerollDailyAmount) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val2, val, rerollDailyAmount)) { KeyValuePair experience; int level = ((ConfigService.LevelingSystem && platformId.TryGetPlayerExperience(out experience)) ? experience.Key : Progression.GetSimulatedLevel(ctx.Event.SenderUserEntity)); QuestSystem.ForceDaily(ctx.Event.User.PlatformId, level); LocalizationService.HandleReply(ctx, $"Your Daily Quest has been rerolled for {val.GetLocalizedName()} x{rerollDailyAmount}!"); Quests.QuestObjectiveReply(ctx, quests, result); } return; } } LocalizationService.HandleReply(ctx, $"You couldn't afford to reroll your daily... ({val.GetLocalizedName()} x{rerollDailyAmount})"); } else { LocalizationService.HandleReply(ctx, "No daily reroll item configured or couldn't find daily quest entry for player."); } } else { if (!result.Equals(QuestSystem.QuestType.Weekly)) { return; } if (platformId.TryGetPlayerQuests(out Dictionary quests2) && quests2[QuestSystem.QuestType.Weekly].Item1.Complete) { LocalizationService.HandleReply(ctx, "You've already completed your Weekly Quest. Check back next week."); } else if (!ConfigService.RerollWeeklyPrefab.Equals(0)) { PrefabGUID val3 = default(PrefabGUID); ((PrefabGUID)(ref val3))..ctor(ConfigService.RerollWeeklyPrefab); int rerollWeeklyAmount = ConfigService.RerollWeeklyAmount; Entity val4 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, ctx.User.LocalCharacter._Entity, ref val4, 0)) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val4, val3) >= rerollWeeklyAmount) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val4, val3, rerollWeeklyAmount)) { int num; if (!ConfigService.LevelingSystem || !platformId.TryGetPlayerExperience(out var experience2)) { Equipment val5 = ctx.Event.SenderCharacterEntity.Read(); num = (int)((Equipment)(ref val5)).GetFullLevel(); } else { num = experience2.Key; } int level2 = num; QuestSystem.ForceWeekly(ctx.Event.User.PlatformId, level2); LocalizationService.HandleReply(ctx, $"Your Weekly Quest has been rerolled for {val3.GetLocalizedName()} x{rerollWeeklyAmount}!"); Quests.QuestObjectiveReply(ctx, quests2, result); } return; } } LocalizationService.HandleReply(ctx, $"You couldn't afford to reroll your wekly... ({val3.GetLocalizedName()} x{rerollWeeklyAmount})"); } else { LocalizationService.HandleReply(ctx, "No weekly reroll item configured or couldn't find weekly quest entry for player."); } } } [Command("complete", "c", ".quest c [Name] [QuestType]", "Forcibly completes a specified quest for a player.", null, true)] public static void ForceCompleteQuest(ChatCommandContext ctx, string name, string questTypeName) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.QuestSystem) { LocalizationService.HandleReply(ctx, "Quests are not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player..."); return; } User user = playerInfo.User; if (!user.PlatformId.TryGetPlayerQuests(out Dictionary quests)) { ctx.Reply("Player has no active quests!"); return; } questTypeName = questTypeName.ToLower(); if (questTypeName == "d") { questTypeName = "Daily"; } else if (questTypeName == "w") { questTypeName = "Weekly"; } if (!Enum.TryParse(questTypeName, ignoreCase: true, out var result)) { ctx.Reply("Invalid quest type '" + questTypeName + "'. Valid values are: " + string.Join(", ", Enum.GetNames(typeof(QuestSystem.QuestType)))); return; } if (!quests.ContainsKey(result)) { ctx.Reply($"Player does not have an active {result} quest to complete."); return; } (QuestSystem.QuestObjective, int, DateTime) tuple = quests[result]; User user2; DefaultInterpolatedStringHandler defaultInterpolatedStringHandler; if (tuple.Item1.Complete) { defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(36, 2); defaultInterpolatedStringHandler.AppendLiteral("The "); defaultInterpolatedStringHandler.AppendFormatted(result); defaultInterpolatedStringHandler.AppendLiteral(" quest is already complete for "); user2 = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user2.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral("."); ctx.Reply(defaultInterpolatedStringHandler.ToStringAndClear()); return; } PrefabGUID target = tuple.Item1.Target; int item = tuple.Item2; int requiredAmount = tuple.Item1.RequiredAmount; int num = requiredAmount - item; if (num <= 0) { num = requiredAmount; } QuestSystem.ProcessQuestProgress(quests, target, num, user); defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(37, 2); defaultInterpolatedStringHandler.AppendLiteral("Completed "); defaultInterpolatedStringHandler.AppendFormatted(Quests.QuestTypeColor[result]); defaultInterpolatedStringHandler.AppendLiteral(" for "); user2 = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user2.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral("!"); ctx.Reply(defaultInterpolatedStringHandler.ToStringAndClear()); } } [RconCommandCategory("Bloodcraft")] public static class RconCommands { [RconCommand("familiar.add", "Admin add familiar RCON command.", " ")] public static string AddFamiliar(string playerName, string prefabGuid) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Expected O, but got Unknown //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Expected O, but got Unknown //IL_01ae: Unknown result type (might be due to invalid IL or missing references) PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(playerName); ulong platformId = playerInfo.User.PlatformId; bool flag = default(bool); if (!playerInfo.CharEntity.Exists()) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(57, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Attempted to add "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabGuid); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" but they couldn't be found!"); } log.LogWarning(val); return false.ToString(); } if (!ConfigService.FamiliarSystem) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(57, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Attempted to add "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabGuid); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" but familiars are disabled!"); } log2.LogWarning(val); return false.ToString(); } bool flag2; if (platformId.TryGetFamiliarBox(out var familiarSet) && !string.IsNullOrEmpty(familiarSet)) { Familiars.ParseAddedFamiliar(playerInfo, platformId, prefabGuid, familiarSet); flag2 = true; } else { DataService.FamiliarPersistence.FamiliarUnlocksManager.FamiliarUnlocksData familiarUnlocksData = DataService.FamiliarPersistence.FamiliarUnlocksManager.LoadFamiliarUnlocksData(platformId); string text = familiarUnlocksData.FamiliarUnlocks.Keys.LastOrDefault(); if (string.IsNullOrEmpty(text)) { text = $"box{familiarUnlocksData.FamiliarUnlocks.Count + 1}"; familiarUnlocksData.FamiliarUnlocks[text] = new List(); DataService.FamiliarPersistence.FamiliarUnlocksManager.SaveFamiliarUnlocksData(platformId, familiarUnlocksData); Familiars.ParseAddedFamiliar(playerInfo, platformId, prefabGuid, text); flag2 = true; } else { Familiars.ParseAddedFamiliar(playerInfo, platformId, prefabGuid, text); flag2 = true; } } if (flag2) { return $"Added familiar {VExtensions.GetPrefabName(new PrefabGUID(int.Parse(prefabGuid)))} for {playerName}!"; } return false.ToString(); } [RconCommand("familiar.shiny", "Admin shiny buff RCON command.", " ")] public static string MakeSparkle(string playerName, string prefabGuid) { //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_000f: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Expected O, but got Unknown //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Expected O, but got Unknown //IL_009f: Unknown result type (might be due to invalid IL or missing references) Entity charEntity = PlayerService.GetPlayerInfo(playerName).CharEntity; bool flag = default(bool); if (!charEntity.Exists()) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(64, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Attempted to apply shiny for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" but they couldn't be found!"); } log.LogWarning(val); return false.ToString(); } PrefabGUID val2 = PrefabGUID.Parse(prefabGuid); if (!val2.GetPrefabEntity().Exists()) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(75, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Attempted to apply shiny "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(prefabGuid); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("->"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(val2); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" but couldn't resolve prefab entity!"); } log2.LogWarning(val); return false.ToString(); } Buffs.HandleSparkleBuff(charEntity, val2); return $"Applied shiny {val2.GetPrefabName()} for {playerName}!"; } [RconCommand("servant.upgrade", "Admin upgrade servant RCON command; returns string true if receipt w/ params found & has valid refund (resend RCON command with same params to ping upgrade status), otherwise returns string false for player not found or on dispatch.", " ")] public static string UpgradeServant(string playerName, string servantName) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Expected O, but got Unknown if (!PlayerService.GetPlayerInfo(playerName).CharEntity.Exists()) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(68, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[RCON] Attempted to upgrade servant for "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(playerName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" but they couldn't be found!"); } log.LogWarning(val); return false.ToString(); } if (VEvents.HasRefund((playerName, servantName))) { return true.ToString(); } VEvents.ServantUpgradeEvent servantUpgradeEvent = new VEvents.ServantUpgradeEvent(playerName, servantName); VEvents.Dispatch(ref servantUpgradeEvent); return false.ToString(); } [RconCommand("status.health", "Returns startup readiness state summary.", "Remote-viewable readiness summary.")] public static string HealthStatus() { return StartupStateService.BuildJsonSummary(); } } [CommandGroup("weapon", "wep")] internal static class WeaponCommands { private static readonly PrefabGUID _exoFormBuff = new PrefabGUID(-31099041); private const int WEAPON_STAT_BATCH = 6; private const int STAT_LIST_BATCH = 4; private static EntityManager EntityManager => Core.EntityManager; private static ServerGameManager ServerGameManager => Core.ServerGameManager; [Command("get", null, ".wep get", "Displays current weapon expertise details.", null, false)] public static void GetExpertiseCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ExpertiseSystem) { LocalizationService.HandleReply(ctx, "Expertise is not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; WeaponType currentWeaponType = WeaponManager.GetCurrentWeaponType(senderCharacterEntity); IWeaponExpertise expertise = WeaponExpertiseFactory.GetExpertise(currentWeaponType); if (expertise == null) { LocalizationService.HandleReply(ctx, "Expertise handler for weapon is null; this shouldn't happen and you may want to inform the developer."); return; } ulong platformId = ctx.Event.User.PlatformId; KeyValuePair expertiseData = expertise.GetExpertiseData(platformId); int value = (int)(expertiseData.Value - (float)Progression.ConvertLevelToXp(expertiseData.Key)); Dictionary prestiges; int value2 = (platformId.TryGetPlayerPrestiges(out prestiges) ? prestiges[WeaponSystem.WeaponPrestigeTypes[currentWeaponType]] : 0); if (expertiseData.Key > 0 || expertiseData.Value > 0f) { LocalizationService.HandleReply(ctx, $"Your weapon expertise is [{expertiseData.Key}][{value2}] and you have {value} expertise ({WeaponSystem.GetLevelProgress(platformId, expertise)}%) with {currentWeaponType}!"); if (platformId.TryGetPlayerWeaponStats(out var weaponStats) && weaponStats.TryGetValue(currentWeaponType, out var value3)) { List> list = new List>(); foreach (WeaponManager.WeaponStats.WeaponStatType item in value3) { if (WeaponManager.TryGetScaledModifyUnitExpertiseStat(expertise, senderCharacterEntity, platformId, currentWeaponType, item, out var statValue, out var _)) { string value4 = Misc.FormatWeaponStatValue(item, statValue); list.Add(new KeyValuePair(item, value4)); } } { foreach (IReadOnlyList> item2 in list.Batch(6)) { string value5 = string.Join(", ", item2.Select((KeyValuePair stat) => $"{stat.Key}: {stat.Value}")); LocalizationService.HandleReply(ctx, $"{currentWeaponType} Stats: {value5}"); } return; } } LocalizationService.HandleReply(ctx, "No bonuses from currently equipped weapon."); } else { LocalizationService.HandleReply(ctx, $"You haven't gained any expertise for {currentWeaponType} yet!"); } } [Command("log", null, ".wep log", "Toggles expertise logging.", null, false)] public static void LogExpertiseCommand(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ExpertiseSystem) { LocalizationService.HandleReply(ctx, "Expertise is not enabled."); return; } ulong platformId = ctx.Event.User.PlatformId; Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "WeaponLogging"); LocalizationService.HandleReply(ctx, "Expertise logging is now " + (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "WeaponLogging") ? "enabled" : "disabled") + "."); } [Command("choosestat", "cst", ".wep cst [WeaponOrStat] [WeaponStat]", "Choose a weapon stat to enhance based on your expertise.", null, false)] public static void ChooseWeaponStat(ChatCommandContext ctx, string weaponOrStat, int statType = 0) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ExpertiseSystem) { LocalizationService.HandleReply(ctx, "Expertise is not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; WeaponType currentWeaponType; WeaponManager.WeaponStats.WeaponStatType weaponStatType; if (int.TryParse(weaponOrStat, out var result)) { result--; if (!Enum.IsDefined(typeof(WeaponManager.WeaponStats.WeaponStatType), result)) { LocalizationService.HandleReply(ctx, "Invalid stat, use '.wep lst' to see valid options."); return; } weaponStatType = (WeaponManager.WeaponStats.WeaponStatType)result; currentWeaponType = WeaponManager.GetCurrentWeaponType(senderCharacterEntity); if (WeaponManager.ChooseStat(platformId, currentWeaponType, weaponStatType)) { Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"{weaponStatType} has been chosen for {currentWeaponType}!"); } return; } if (!Enum.TryParse(weaponOrStat, ignoreCase: true, out currentWeaponType)) { LocalizationService.HandleReply(ctx, "Invalid weapon choice, use '.wep lst' to see valid options."); return; } if (statType <= 0) { LocalizationService.HandleReply(ctx, "Invalid stat, use '.wep lst' to see valid options."); return; } int num = --statType; if (!Enum.IsDefined(typeof(WeaponManager.WeaponStats.WeaponStatType), num)) { LocalizationService.HandleReply(ctx, "Invalid stat, use '.wep lst' to see valid options."); return; } weaponStatType = (WeaponManager.WeaponStats.WeaponStatType)num; if (WeaponManager.ChooseStat(platformId, currentWeaponType, weaponStatType)) { Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"{weaponStatType} has been chosen for {currentWeaponType}!"); } } [Command("resetstats", "rst", ".wep rst", "Reset the stats for current weapon.", null, false)] public static void ResetWeaponStats(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ExpertiseSystem) { LocalizationService.HandleReply(ctx, "Expertise is not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; WeaponType currentWeaponType = WeaponManager.GetCurrentWeaponType(senderCharacterEntity); if (!ConfigService.ResetExpertiseItem.Equals(0)) { PrefabGUID val = default(PrefabGUID); ((PrefabGUID)(ref val))..ctor(ConfigService.ResetExpertiseItem); int resetExpertiseItemQuantity = ConfigService.ResetExpertiseItemQuantity; Entity val2 = default(Entity); if (InventoryUtilities.TryGetInventoryEntity(EntityManager, ctx.User.LocalCharacter._Entity, ref val2, 0)) { ServerGameManager serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).GetInventoryItemCount(val2, val) >= resetExpertiseItemQuantity) { serverGameManager = ServerGameManager; if (((ServerGameManager)(ref serverGameManager)).TryRemoveInventoryItem(val2, val, resetExpertiseItemQuantity)) { WeaponManager.ResetStats(platformId, currentWeaponType); Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"Your weapon stats have been reset for {currentWeaponType}!"); return; } goto IL_0143; } } LocalizationService.HandleReply(ctx, $"You don't have the required item to reset your weapon stats! ({val.GetLocalizedName()}x{resetExpertiseItemQuantity})"); return; } goto IL_0143; IL_0143: WeaponManager.ResetStats(platformId, currentWeaponType); Buffs.RefreshStats(senderCharacterEntity); LocalizationService.HandleReply(ctx, $"Your weapon stats have been reset for {currentWeaponType}!"); } [Command("set", null, ".wep set [Name] [Weapon] [Level]", "Sets player weapon expertise level.", null, true)] public static void SetExpertiseCommand(ChatCommandContext ctx, string name, string weapon, int level) { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.ExpertiseSystem) { LocalizationService.HandleReply(ctx, "Expertise is not enabled."); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } if (level < 0 || level > ConfigService.MaxExpertiseLevel) { string message = $"Level must be between 0 and {ConfigService.MaxExpertiseLevel}."; LocalizationService.HandleReply(ctx, message); return; } if (!Enum.TryParse(weapon, ignoreCase: true, out var result)) { LocalizationService.HandleReply(ctx, $"Level must be between 0 and {ConfigService.MaxExpertiseLevel}."); return; } IWeaponExpertise expertise = WeaponExpertiseFactory.GetExpertise(result); if (expertise == null) { LocalizationService.HandleReply(ctx, "Invalid weapon type."); return; } ulong platformId = playerInfo.User.PlatformId; KeyValuePair arg = new KeyValuePair(level, Progression.ConvertLevelToXp(level)); if (WeaponSystem.SetExtensionMap.TryGetValue(result, out var value)) { value(platformId, arg); Buffs.RefreshStats(playerInfo.CharEntity); DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(90, 3); defaultInterpolatedStringHandler.AppendLiteral(""); defaultInterpolatedStringHandler.AppendFormatted(expertise.GetWeaponType()); defaultInterpolatedStringHandler.AppendLiteral(" expertise set to ["); defaultInterpolatedStringHandler.AppendFormatted(level); defaultInterpolatedStringHandler.AppendLiteral("] for "); User user = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral(""); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); } else { LocalizationService.HandleReply(ctx, "Couldn't find matching save method for weapon type..."); } } [Command("liststats", "lst", ".wep lst", "Lists weapon stats available.", null, false)] public static void ListWeaponStatsCommand(ChatCommandContext ctx) { if (!ConfigService.ExpertiseSystem) { LocalizationService.HandleReply(ctx, "Expertise is not enabled."); return; } List list = Enum.GetValues(typeof(WeaponManager.WeaponStats.WeaponStatType)).Cast().Select((WeaponManager.WeaponStats.WeaponStatType stat, int index) => $"{index + 1}| {stat}: {Misc.FormatWeaponStatValue(stat, WeaponManager.WeaponStats.WeaponStatBaseCaps[stat])}") .ToList(); if (list.Count == 0) { LocalizationService.HandleReply(ctx, "No weapon stats available at this time."); return; } foreach (IReadOnlyList item in list.Batch(4)) { string message = string.Join(", ", item); LocalizationService.HandleReply(ctx, message); } } [Command("list", "l", ".wep l", "Lists weapon expertises available.", null, false)] public static void ListWeaponsCommand(ChatCommandContext ctx) { if (!ConfigService.ExpertiseSystem) { LocalizationService.HandleReply(ctx, "Expertise is not enabled."); return; } string text = string.Join(", ", Enum.GetNames(typeof(WeaponType))); LocalizationService.HandleReply(ctx, "Available Weapon Expertises: " + text + ""); } [Command("setspells", "spell", ".wep spell [Name] [Slot] [PrefabGuid] [Radius]", "Manually sets spells for testing (if you enter a radius it will apply to players around the entered name).", null, true)] public static void SetSpellCommand(ChatCommandContext ctx, string name, int slot, int ability, float radius = 0f) { //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_02c4: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.UnarmedSlots) { LocalizationService.HandleReply(ctx, "Extra spell slots are not enabled."); return; } if (slot < 1 || slot > 7) { LocalizationService.HandleReply(ctx, "Invalid slot (1 for Q or 2 for E)"); return; } User user; if (radius > 0f) { float3 value = ctx.Event.SenderCharacterEntity.Read().Value; HashSet hashSet = new HashSet(); { foreach (PlayerService.PlayerInfo value2 in PlayerService.SteamIdOnlinePlayerInfoCache.Values) { if (hashSet.Contains(value2) || !value2.CharEntity.TryGetComponent(out Translation componentData) || !(math.distance(value, componentData.Value) <= radius)) { continue; } ulong platformId = value2.User.PlatformId; if (platformId.TryGetPlayerSpells(out (int, int, int) spells)) { switch (slot) { case 1: { spells.Item1 = ability; DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(74, 2); defaultInterpolatedStringHandler.AppendLiteral("First unarmed slot set to "); defaultInterpolatedStringHandler.AppendFormatted(VExtensions.GetPrefabName(new PrefabGUID(ability))); defaultInterpolatedStringHandler.AppendLiteral(" for "); user = value2.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral("."); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); break; } case 2: { spells.Item2 = ability; DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(75, 2); defaultInterpolatedStringHandler.AppendLiteral("Second unarmed slot set to "); defaultInterpolatedStringHandler.AppendFormatted(VExtensions.GetPrefabName(new PrefabGUID(ability))); defaultInterpolatedStringHandler.AppendLiteral(" for "); user = value2.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral("."); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); break; } } platformId.SetPlayerSpells(spells); } hashSet.Add(value2); } return; } } if (radius < 0f) { LocalizationService.HandleReply(ctx, "Radius must be positive!"); return; } PlayerService.PlayerInfo playerInfo = PlayerService.GetPlayerInfo(name); if (!playerInfo.UserEntity.Exists()) { ctx.Reply("Couldn't find player."); return; } ulong platformId2 = playerInfo.User.PlatformId; if (platformId2.TryGetPlayerSpells(out (int, int, int) spells2)) { switch (slot) { case 1: { spells2.Item1 = ability; DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(74, 2); defaultInterpolatedStringHandler.AppendLiteral("First unarmed slot set to "); defaultInterpolatedStringHandler.AppendFormatted(VExtensions.GetPrefabName(new PrefabGUID(ability))); defaultInterpolatedStringHandler.AppendLiteral(" for "); user = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral("."); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); break; } case 2: { spells2.Item2 = ability; DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(75, 2); defaultInterpolatedStringHandler.AppendLiteral("Second unarmed slot set to "); defaultInterpolatedStringHandler.AppendFormatted(VExtensions.GetPrefabName(new PrefabGUID(ability))); defaultInterpolatedStringHandler.AppendLiteral(" for "); user = playerInfo.User; defaultInterpolatedStringHandler.AppendFormatted(((FixedString64Bytes)(ref user.CharacterName)).Value); defaultInterpolatedStringHandler.AppendLiteral("."); LocalizationService.HandleReply(ctx, defaultInterpolatedStringHandler.ToStringAndClear()); break; } } platformId2.SetPlayerSpells(spells2); } } [Command("lockspells", "locksp", ".wep locksp", "Locks in the next spells equipped to use in your unarmed slots.", null, false)] public static void LockPlayerSpells(ChatCommandContext ctx) { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) if (!ConfigService.UnarmedSlots) { LocalizationService.HandleReply(ctx, "Extra spell slots for unarmed are not enabled."); return; } Entity senderCharacterEntity = ctx.Event.SenderCharacterEntity; ulong platformId = ctx.Event.User.PlatformId; if (senderCharacterEntity.HasBuff(_exoFormBuff)) { LocalizationService.HandleReply(ctx, "Spells cannot be locked when using exoform."); return; } Misc.PlayerBoolsManager.TogglePlayerBool(platformId, "SpellLock"); if (Misc.PlayerBoolsManager.GetPlayerBool(platformId, "SpellLock")) { LocalizationService.HandleReply(ctx, "Change spells to the ones you want in your unarmed slots. When done, toggle this again."); } else { LocalizationService.HandleReply(ctx, "Spells locked."); } } } } namespace BloodcraftEclipseBridge.Messages { internal sealed class EclipseRegistrationPacket { public string Message { get; set; } = string.Empty; public EclipseRegistrationPacket() { } public EclipseRegistrationPacket(string message) { Message = message; } } internal sealed class EclipseServerMessagePacket { public string Message { get; set; } = string.Empty; public EclipseServerMessagePacket() { } public EclipseServerMessagePacket(string message) { Message = message; } } } namespace ScarletRCON.Shared { [AttributeUsage(AttributeTargets.Class)] public class RconCommandCategoryAttribute : Attribute { public string Name { get; } public RconCommandCategoryAttribute(string categoryName) { Name = categoryName; base..ctor(); } } [AttributeUsage(AttributeTargets.Method)] public class RconCommandAttribute : Attribute { public string Name { get; set; } public string? Description { get; set; } public string? Usage { get; set; } public RconCommandAttribute(string name, string? description = null, string? usage = null) { Name = name; Description = description; Usage = usage; base..ctor(); } } public static class RconCommandRegistrar { private static bool? _isScarletRconAvailable; public static bool IsScarletRconAvailable() { bool valueOrDefault = _isScarletRconAvailable.GetValueOrDefault(); if (!_isScarletRconAvailable.HasValue) { valueOrDefault = Type.GetType("ScarletRCON.CommandSystem.CommandHandler, ScarletRCON") != null; _isScarletRconAvailable = valueOrDefault; } return _isScarletRconAvailable.Value; } public static void RegisterAll() { if (!IsScarletRconAvailable()) { return; } Assembly callingAssembly = Assembly.GetCallingAssembly(); string item = callingAssembly.GetName().Name?.ToLowerInvariant() + "."; List<(string, string, MethodInfo, string, string, string)> list = new List<(string, string, MethodInfo, string, string, string)>(); Type[] types = callingAssembly.GetTypes(); foreach (Type obj in types) { string item2 = obj.GetCustomAttribute()?.Name ?? "Uncategorized"; MethodInfo[] methods = obj.GetMethods(BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic); foreach (MethodInfo methodInfo in methods) { RconCommandAttribute customAttribute = methodInfo.GetCustomAttribute(); if (customAttribute == null) { continue; } string text = customAttribute.Usage; if (string.IsNullOrWhiteSpace(text)) { ParameterInfo[] parameters = methodInfo.GetParameters(); text = ((parameters.Length == 0) ? "" : string.Join(" ", parameters.Select((ParameterInfo p) => (!(p.ParameterType == typeof(List))) ? ("<" + p.Name + ">") : "<...text>"))); } list.Add((item2, item, methodInfo, customAttribute.Name, customAttribute.Description, text ?? "")); } } Type? type = Type.GetType("ScarletRCON.CommandSystem.CommandHandler, ScarletRCON"); MethodInfo methodInfo2 = type?.GetMethod("RegisterExternalCommandsBatch", BindingFlags.Static | BindingFlags.Public); if (type == null) { throw new InvalidOperationException("ScarletRCON.CommandSystem.CommandHandler not found."); } if (methodInfo2 == null) { throw new InvalidOperationException("ScarletRCON.CommandSystem.CommandHandler.RegisterExternalCommandsBatch not found."); } methodInfo2.Invoke(null, new object[1] { list }); } public static void UnregisterAssembly(Assembly? assembly = null) { if (IsScarletRconAvailable()) { if ((object)assembly == null) { assembly = Assembly.GetCallingAssembly(); } Type? type = Type.GetType("ScarletRCON.CommandSystem.CommandHandler, ScarletRCON"); MethodInfo methodInfo = type?.GetMethod("UnregisterAssembly", BindingFlags.Static | BindingFlags.Public); if (type == null) { throw new InvalidOperationException("ScarletRCON.CommandSystem.CommandHandler not found."); } if (methodInfo == null) { throw new InvalidOperationException("ScarletRCON.CommandSystem.CommandHandler.UnregisterExternalAssembly not found."); } methodInfo.Invoke(null, new object[1] { assembly }); } } } } internal sealed class <>z__ReadOnlyArray : IEnumerable, ICollection, IList, IEnumerable, IReadOnlyCollection, IReadOnlyList, ICollection, IList { int ICollection.Count => _items.Length; bool ICollection.IsSynchronized => false; object ICollection.SyncRoot => this; object IList.this[int index] { get { return _items[index]; } set { throw new NotSupportedException(); } } bool IList.IsFixedSize => true; bool IList.IsReadOnly => true; int IReadOnlyCollection.Count => _items.Length; T IReadOnlyList.this[int index] => _items[index]; int ICollection.Count => _items.Length; bool ICollection.IsReadOnly => true; T IList.this[int index] { get { return _items[index]; } set { throw new NotSupportedException(); } } public <>z__ReadOnlyArray(T[] items) { _items = items; } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable)_items).GetEnumerator(); } void ICollection.CopyTo(Array array, int index) { ((ICollection)_items).CopyTo(array, index); } int IList.Add(object? value) { throw new NotSupportedException(); } void IList.Clear() { throw new NotSupportedException(); } bool IList.Contains(object? value) { return ((IList)_items).Contains(value); } int IList.IndexOf(object? value) { return ((IList)_items).IndexOf(value); } void IList.Insert(int index, object? value) { throw new NotSupportedException(); } void IList.Remove(object? value) { throw new NotSupportedException(); } void IList.RemoveAt(int index) { throw new NotSupportedException(); } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable)_items).GetEnumerator(); } void ICollection.Add(T item) { throw new NotSupportedException(); } void ICollection.Clear() { throw new NotSupportedException(); } bool ICollection.Contains(T item) { return ((ICollection)_items).Contains(item); } void ICollection.CopyTo(T[] array, int arrayIndex) { ((ICollection)_items).CopyTo(array, arrayIndex); } bool ICollection.Remove(T item) { throw new NotSupportedException(); } int IList.IndexOf(T item) { return ((IList)_items).IndexOf(item); } void IList.Insert(int index, T item) { throw new NotSupportedException(); } void IList.RemoveAt(int index) { throw new NotSupportedException(); } } internal sealed class <>z__ReadOnlySingleElementList : IEnumerable, ICollection, IList, IEnumerable, IReadOnlyCollection, IReadOnlyList, ICollection, IList { private sealed class Enumerator : IDisposable, IEnumerator, IEnumerator { object IEnumerator.Current => _item; T IEnumerator.Current => _item; public Enumerator(T item) { _item = item; } bool IEnumerator.MoveNext() { if (!_moveNextCalled) { return _moveNextCalled = true; } return false; } void IEnumerator.Reset() { _moveNextCalled = false; } void IDisposable.Dispose() { } } int ICollection.Count => 1; bool ICollection.IsSynchronized => false; object ICollection.SyncRoot => this; object IList.this[int index] { get { if (index != 0) { throw new IndexOutOfRangeException(); } return _item; } set { throw new NotSupportedException(); } } bool IList.IsFixedSize => true; bool IList.IsReadOnly => true; int IReadOnlyCollection.Count => 1; T IReadOnlyList.this[int index] { get { if (index != 0) { throw new IndexOutOfRangeException(); } return _item; } } int ICollection.Count => 1; bool ICollection.IsReadOnly => true; T IList.this[int index] { get { if (index != 0) { throw new IndexOutOfRangeException(); } return _item; } set { throw new NotSupportedException(); } } public <>z__ReadOnlySingleElementList(T item) { _item = item; } IEnumerator IEnumerable.GetEnumerator() { return new Enumerator(_item); } void ICollection.CopyTo(Array array, int index) { array.SetValue(_item, index); } int IList.Add(object? value) { throw new NotSupportedException(); } void IList.Clear() { throw new NotSupportedException(); } bool IList.Contains(object? value) { return EqualityComparer.Default.Equals(_item, (T)value); } int IList.IndexOf(object? value) { if (!EqualityComparer.Default.Equals(_item, (T)value)) { return -1; } return 0; } void IList.Insert(int index, object? value) { throw new NotSupportedException(); } void IList.Remove(object? value) { throw new NotSupportedException(); } void IList.RemoveAt(int index) { throw new NotSupportedException(); } IEnumerator IEnumerable.GetEnumerator() { return new Enumerator(_item); } void ICollection.Add(T item) { throw new NotSupportedException(); } void ICollection.Clear() { throw new NotSupportedException(); } bool ICollection.Contains(T item) { return EqualityComparer.Default.Equals(_item, item); } void ICollection.CopyTo(T[] array, int arrayIndex) { array[arrayIndex] = _item; } bool ICollection.Remove(T item) { throw new NotSupportedException(); } int IList.IndexOf(T item) { if (!EqualityComparer.Default.Equals(_item, item)) { return -1; } return 0; } void IList.Insert(int index, T item) { throw new NotSupportedException(); } void IList.RemoveAt(int index) { throw new NotSupportedException(); } }